File tree 3 files changed +9
-6
lines changed 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 16
16
17
17
// Color ----------------------
18
18
19
- .badge-color ( @fg : @text-color-selected ;
20
- @bg : @background-color-selected ; ) {
19
+ .badge-color ( @fg : @text-color-selected ; @bg : @background-color-selected ; ) {
21
20
color : @fg ;
22
21
background-color : @bg ;
23
22
}
Original file line number Diff line number Diff line change 15
15
//
16
16
.border-top-radius (@radius ) {
17
17
border-top-right-radius : @radius ;
18
- border-top-left-radius : @radius ;
18
+ border-top-left-radius : @radius ;
19
19
}
20
20
.border-right-radius (@radius ) {
21
21
border-bottom-right-radius : @radius ;
22
- border-top-right-radius : @radius ;
22
+ border-top-right-radius : @radius ;
23
23
}
24
24
.border-bottom-radius (@radius ) {
25
25
border-bottom-right-radius : @radius ;
26
- border-bottom-left-radius : @radius ;
26
+ border-bottom-left-radius : @radius ;
27
27
}
28
28
.border-left-radius (@radius ) {
29
29
border-bottom-left-radius : @radius ;
30
- border-top-left-radius : @radius ;
30
+ border-top-left-radius : @radius ;
31
31
}
32
32
33
33
Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ module.exports = {
9
9
"selector-type-no-unknown" : null ,
10
10
"function-comma-space-after" : null , // TODO: enable?
11
11
"font-family-no-missing-generic-family-keyword" : null , // needed for octicons (no sensible fallback)
12
+ "block-opening-brace-space-before" : null ,
13
+ "block-closing-brace-empty-line-before" : null ,
14
+ "declaration-colon-space-after" : null ,
15
+ "declaration-block-single-line-max-declarations" : null ,
12
16
"declaration-empty-line-before" : null , // TODO: enable?
13
17
"declaration-block-trailing-semicolon" : null , // TODO: enable
14
18
"no-descending-specificity" : null ,
You can’t perform that action at this time.
0 commit comments