Skip to content

Commit 7f32750

Browse files
committed
Port Sass to Less
1 parent 71eee19 commit 7f32750

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/less/react-checkbox-tree.less

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
@rct-icon-color: #33c;
22
@rct-label-hover: rgba(red(@rct-icon-color), green(@rct-icon-color), blue(@rct-icon-color), .1);
33
@rct-label-active: rgba(red(@rct-icon-color), green(@rct-icon-color), blue(@rct-icon-color), .15);
4+
@rct-label-hover: rgba(red(@rct-icon-color), green(@rct-icon-color), blue(@rct-icon-color), .1);
5+
@rct-label-active: rgba(red(@rct-icon-color), green(@rct-icon-color), blue(@rct-icon-color), .2);
46

57
.react-checkbox-tree {
68
font-size: 16px;
@@ -117,6 +119,19 @@
117119
}
118120
}
119121

122+
.rct-node-clickable {
123+
cursor: pointer;
124+
125+
&:hover {
126+
background: @rct-clickable-hover;
127+
}
128+
129+
&:focus {
130+
outline: 0;
131+
background: @rct-clickable-focus;
132+
}
133+
}
134+
120135
.rct-node-icon {
121136
color: @rct-icon-color;
122137
}

0 commit comments

Comments
 (0)