Skip to content

Commit c43bc8d

Browse files
committed
Enable declaration-block-no-redundant-longhand-properties
1 parent 26ae592 commit c43bc8d

File tree

6 files changed

+9
-20
lines changed

6 files changed

+9
-20
lines changed

stylelint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export default {
141141
'custom-property-pattern': null,
142142
'declaration-block-no-duplicate-custom-properties': true,
143143
'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,
145145
'declaration-block-no-shorthand-property-overrides': null,
146146
'declaration-block-single-line-max-declarations': null,
147147
'declaration-empty-line-before': null,

web_src/css/features/projects.css

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.board {
22
display: flex;
3-
flex-direction: row;
4-
flex-wrap: nowrap;
3+
flex-flow: row nowrap;
54
overflow-x: auto;
65
margin: 0 0.5em;
76
}
@@ -49,8 +48,7 @@
4948
align-content: baseline;
5049
margin: 0 !important;
5150
padding: 0 !important;
52-
flex-wrap: nowrap !important;
53-
flex-direction: column;
51+
flex-flow: column nowrap !important;
5452
overflow-x: auto;
5553
gap: .25rem;
5654
}

web_src/css/modules/grid.css

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,10 @@
33

44
.ui.grid {
55
display: flex;
6-
flex-direction: row;
7-
flex-wrap: wrap;
6+
flex-flow: row wrap;
87
align-items: stretch;
98
padding: 0;
10-
margin-top: -1rem;
11-
margin-bottom: -1rem;
12-
margin-left: -1rem;
13-
margin-right: -1rem;
9+
margin: -1rem;
1410
}
1511

1612
.ui.relaxed.grid {
@@ -43,8 +39,7 @@
4339
.ui.grid > .row {
4440
position: relative;
4541
display: flex;
46-
flex-direction: row;
47-
flex-wrap: wrap;
42+
flex-flow: row wrap;
4843
justify-content: inherit;
4944
align-items: stretch;
5045
width: 100% !important;

web_src/css/modules/menu.css

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -553,13 +553,11 @@
553553
border-bottom: 2px solid var(--color-secondary);
554554
}
555555
.ui.secondary.pointing.menu .item {
556-
border-bottom-color: transparent;
557-
border-bottom-style: solid;
556+
border-bottom: 2px solid transparent;
558557
border-radius: 0;
559558
align-self: flex-end;
560559
margin: 0 0 -2px;
561560
padding: 0.85714286em 1.14285714em;
562-
border-bottom-width: 2px;
563561
}
564562
.ui.secondary.pointing.menu .ui.dropdown .menu .item {
565563
border-bottom-width: 0;

web_src/css/repo.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -693,8 +693,7 @@ td .commit-summary {
693693

694694
.repository.view.issue .pull.tabular.menu {
695695
margin-bottom: 0;
696-
overflow-x: auto;
697-
overflow-y: hidden;
696+
overflow: auto hidden;
698697
}
699698

700699
.repository.view.issue .pull.tabular.menu .svg {

web_src/css/repo/issue-list.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
}
1414

1515
.issue-list-toolbar-right .filter.menu {
16-
flex-direction: row;
17-
flex-wrap: wrap;
16+
flex-flow: row wrap;
1817
}
1918

2019
@media (max-width: 767.98px) {

0 commit comments

Comments
 (0)