File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,6 @@ module.exports = React.createClass({
75
75
return React . DOM . div ( {
76
76
className : css . getClass ( 'root' )
77
77
} ,
78
-
79
78
React . DOM . div ( {
80
79
className : css . getClass ( 'app' )
81
80
} ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ var positiveC = function(){
9
9
10
10
11
11
12
- var css = new SmartCSS ( ) ;
12
+ var css = new SmartCSS ( { name : 'Task' } ) ;
13
13
14
14
15
15
@@ -51,7 +51,7 @@ css.setClass('.warning', {
51
51
marginTop : '5px' ,
52
52
fontSize : '12px' ,
53
53
} )
54
- css . setClass ( '.warning :hover' , {
54
+ css . setClass ( '.root :hover .warning ' , {
55
55
color : positiveC ( ) . darken ( 5 ) ,
56
56
borderTopColor : positiveC ( ) . darken ( 5 ) ,
57
57
} )
@@ -63,7 +63,7 @@ css.setClass('.warningCompleted', {
63
63
color : positiveC ( ) . lighten ( 20 ) ,
64
64
borderTopColor : positiveC ( ) . lighten ( 20 ) ,
65
65
} )
66
- css . setClass ( '.warningCompleted :hover' , {
66
+ css . setClass ( '.root :hover .warningCompleted ' , {
67
67
color : positiveC ( ) . lighten ( 35 ) ,
68
68
borderTopColor : positiveC ( ) . lighten ( 35 ) ,
69
69
} )
You can’t perform that action at this time.
0 commit comments