Authored by xuqi

修正子筛选项溢出问题&移除editor的css

@@ -75,7 +75,7 @@ exports.init = function() { @@ -75,7 +75,7 @@ exports.init = function() {
75 //提示登录信息 75 //提示登录信息
76 $('#login-tip').fadeIn(500, function() { 76 $('#login-tip').fadeIn(500, function() {
77 setTimeout(function() { 77 setTimeout(function() {
78 - $('#login-tip').fadeout(500); 78 + $('#login-tip').fadeOut(500);
79 }, 1000); 79 }, 1000);
80 }); 80 });
81 } 81 }
@@ -418,7 +418,7 @@ exports.init = function() { @@ -418,7 +418,7 @@ exports.init = function() {
418 //提示登录信息 418 //提示登录信息
419 $('#login-tip').fadeIn(500, function() { 419 $('#login-tip').fadeIn(500, function() {
420 setTimeout(function() { 420 setTimeout(function() {
421 - $('#login-tip').fadeout(500); 421 + $('#login-tip').fadeOut(500);
422 }, 1000); 422 }, 1000);
423 }); 423 });
424 } 424 }
1 -@import "common/common", "module/saunter", "module/tag", "module/ps", "module/template", "module/editor"; 1 +@import "common/common", "module/saunter", "module/tag", "module/ps", "module/template";
2 2
3 //登录提示 3 //登录提示
4 .login-tip { 4 .login-tip {
1 -@import "../common/tag-content";  
2 -  
3 -.editor-header {  
4 - padding: (36rem / $pxConvertRem) 0 (40rem / $pxConvertRem) 0;  
5 - background: #fff;  
6 - border-bottom: 1px solid #e0e0e0;  
7 - .avatar {  
8 - float: left;  
9 - margin: (10rem / $pxConvertRem) 0 0 (30rem / $pxConvertRem);  
10 - img {  
11 - width: 100rem / $pxConvertRem;  
12 - height: 100rem / $pxConvertRem;  
13 - border-radius: 50%;  
14 - }  
15 - }  
16 - .text {  
17 - float: left;  
18 - margin: 0 0 0 (32rem / $pxConvertRem);  
19 - width: 475rem / $pxConvertRem;  
20 - .name {  
21 - font-size: 32rem / $pxConvertRem;  
22 - line-height: 40rem / $pxConvertRem;  
23 - }  
24 - .intro {  
25 - font-size: 28rem / $pxConvertRem;  
26 - line-height: 40rem / $pxConvertRem;  
27 - }  
28 - .info {  
29 - margin: (6rem / $pxConvertRem) 0 0 0;  
30 - color: #bdbdbf;  
31 - font-size: 24rem / $pxConvertRem;  
32 - line-height: 32rem / $pxConvertRem;  
33 - }  
34 - }  
35 -}  
@@ -197,6 +197,7 @@ @@ -197,6 +197,7 @@
197 height: 60rem / $pxConvertRem; 197 height: 60rem / $pxConvertRem;
198 line-height: 60rem / $pxConvertRem; 198 line-height: 60rem / $pxConvertRem;
199 border-bottom: 1px solid #e6e6e6; 199 border-bottom: 1px solid #e6e6e6;
  200 + overflow: hidden;
200 } 201 }
201 } 202 }
202 } 203 }