File tree Expand file tree Collapse file tree 6 files changed +9
-20
lines changed Expand file tree Collapse file tree 6 files changed +9
-20
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ export default {
141
141
'custom-property-pattern' : null ,
142
142
'declaration-block-no-duplicate-custom-properties' : true ,
143
143
'declaration-block-no-duplicate-properties' : [ true , { ignore : [ 'consecutive-duplicates-with-different-values' ] } ] ,
144
- 'declaration-block-no-redundant-longhand-properties' : null ,
144
+ 'declaration-block-no-redundant-longhand-properties' : true ,
145
145
'declaration-block-no-shorthand-property-overrides' : null ,
146
146
'declaration-block-single-line-max-declarations' : null ,
147
147
'declaration-empty-line-before' : null ,
Original file line number Diff line number Diff line change 1
1
.board {
2
2
display : flex;
3
- flex-direction : row;
4
- flex-wrap : nowrap;
3
+ flex-flow : row nowrap;
5
4
overflow-x : auto;
6
5
margin : 0 0.5em ;
7
6
}
49
48
align-content : baseline;
50
49
margin : 0 !important ;
51
50
padding : 0 !important ;
52
- flex-wrap : nowrap !important ;
53
- flex-direction : column;
51
+ flex-flow : column nowrap !important ;
54
52
overflow-x : auto;
55
53
gap : .25rem ;
56
54
}
Original file line number Diff line number Diff line change 3
3
4
4
.ui .grid {
5
5
display : flex;
6
- flex-direction : row;
7
- flex-wrap : wrap;
6
+ flex-flow : row wrap;
8
7
align-items : stretch;
9
8
padding : 0 ;
10
- margin-top : -1rem ;
11
- margin-bottom : -1rem ;
12
- margin-left : -1rem ;
13
- margin-right : -1rem ;
9
+ margin : -1rem ;
14
10
}
15
11
16
12
.ui .relaxed .grid {
43
39
.ui .grid > .row {
44
40
position : relative;
45
41
display : flex;
46
- flex-direction : row;
47
- flex-wrap : wrap;
42
+ flex-flow : row wrap;
48
43
justify-content : inherit;
49
44
align-items : stretch;
50
45
width : 100% !important ;
Original file line number Diff line number Diff line change 553
553
border-bottom : 2px solid var (--color-secondary );
554
554
}
555
555
.ui .secondary .pointing .menu .item {
556
- border-bottom-color : transparent;
557
- border-bottom-style : solid;
556
+ border-bottom : 2px solid transparent;
558
557
border-radius : 0 ;
559
558
align-self : flex-end;
560
559
margin : 0 0 -2px ;
561
560
padding : 0.85714286em 1.14285714em ;
562
- border-bottom-width : 2px ;
563
561
}
564
562
.ui .secondary .pointing .menu .ui .dropdown .menu .item {
565
563
border-bottom-width : 0 ;
Original file line number Diff line number Diff line change @@ -693,8 +693,7 @@ td .commit-summary {
693
693
694
694
.repository .view .issue .pull .tabular .menu {
695
695
margin-bottom : 0 ;
696
- overflow-x : auto;
697
- overflow-y : hidden;
696
+ overflow : auto hidden;
698
697
}
699
698
700
699
.repository .view .issue .pull .tabular .menu .svg {
Original file line number Diff line number Diff line change 13
13
}
14
14
15
15
.issue-list-toolbar-right .filter .menu {
16
- flex-direction : row;
17
- flex-wrap : wrap;
16
+ flex-flow : row wrap;
18
17
}
19
18
20
19
@media (max-width : 767.98px ) {
You can’t perform that action at this time.
0 commit comments