Skip to content

Commit 10c7aae

Browse files
Bump the stylelint group with 2 updates (#5411)
* Bump the stylelint group with 2 updates Bumps the stylelint group with 2 updates: [stylelint](https://github.com/stylelint/stylelint) and [stylelint-config-sass-guidelines](https://github.com/bjankord/stylelint-config-sass-guidelines). Updates `stylelint` from 16.6.1 to 16.7.0 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](stylelint/stylelint@16.6.1...16.7.0) Updates `stylelint-config-sass-guidelines` from 11.1.0 to 12.0.0 - [Release notes](https://github.com/bjankord/stylelint-config-sass-guidelines/releases) - [Changelog](https://github.com/bjankord/stylelint-config-sass-guidelines/blob/main/CHANGELOG.md) - [Commits](bjankord/stylelint-config-sass-guidelines@v11.1.0...v12.0.0) --- updated-dependencies: - dependency-name: stylelint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: stylelint - dependency-name: stylelint-config-sass-guidelines dependency-type: direct:development update-type: version-update:semver-major dependency-group: stylelint ... Signed-off-by: dependabot[bot] <[email protected]> * * Run yarn run lint-style-fix twice --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: PikachuEXE <[email protected]>
1 parent c1a7149 commit 10c7aae

File tree

40 files changed

+621
-540
lines changed

40 files changed

+621
-540
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@
118118
"rimraf": "^6.0.1",
119119
"sass": "^1.77.8",
120120
"sass-loader": "^14.2.1",
121-
"stylelint": "^16.6.1",
122-
"stylelint-config-sass-guidelines": "^11.1.0",
121+
"stylelint": "^16.7.0",
122+
"stylelint-config-sass-guidelines": "^12.0.0",
123123
"stylelint-config-standard": "^36.0.1",
124124
"stylelint-high-performance-animation": "^1.10.0",
125125
"stylelint-use-logical-spec": "^5.0.1",

src/renderer/App.css

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@font-face {
22
font-family: Roboto;
3-
src: url("assets/font/Roboto-Regular.ttf");
3+
src: url('assets/font/Roboto-Regular.ttf');
44
}
55

66
.app {
@@ -45,11 +45,13 @@
4545
overflow-wrap: break-word;
4646
}
4747

48-
.fade-enter-active, .fade-leave-active {
49-
transition: opacity .15s;
48+
.fade-enter-active,
49+
.fade-leave-active {
50+
transition: opacity 0.15s;
5051
}
5152

52-
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
53+
.fade-enter,
54+
.fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
5355
opacity: 0;
5456
}
5557

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.experimental-warning {
22
text-align: center;
33
font-weight: bold;
4-
padding-inline: 4% 4%
4+
padding-inline: 4%;
55
}

src/renderer/components/ft-age-restricted/ft-age-restricted.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
padding-block: 20px;
99
}
1010

11-
.message, .frown {
11+
.message,
12+
.frown {
1213
color: var(--primary-text-color);
1314
background-color: var(--card-bg-color);
1415
padding-inline: 0;

src/renderer/components/ft-button/ft-button.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
}
3535

3636
.ripple::after {
37-
content: "";
37+
content: '';
3838
display: block;
3939
position: absolute;
4040
inline-size: 100%;
@@ -47,11 +47,11 @@
4747
background-position: 50%;
4848
transform: scale(10, 10);
4949
opacity: 0;
50-
transition: transform .5s, opacity 1s;
50+
transition: transform 0.5s, opacity 1s;
5151
}
5252

5353
.ripple:active::after {
5454
transform: scale(0, 0);
55-
opacity: .3;
55+
opacity: 0.3;
5656
transition: 0s;
5757
}

src/renderer/components/ft-channel-bubble/ft-channel-bubble.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
}
3535

3636
.icon {
37-
color: #EEE;
37+
color: #eee;
3838
font-size: 25px;
3939
position: absolute;
4040
inset-block-start: 12px;

src/renderer/components/ft-checkbox-list/ft-checkbox-list.css

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* stylelint-disable no-descending-specificity */
2-
.pure-checkbox input[type="checkbox"] {
2+
.pure-checkbox input[type='checkbox'] {
33
border: 0;
44
clip: rect(0 0 0 0);
55
block-size: 1px;
@@ -10,13 +10,14 @@
1010
inline-size: 1px;
1111
}
1212

13-
.pure-checkbox input[type="checkbox"]:focus + label::before, .pure-checkbox input[type="checkbox"]:hover + label::before {
13+
.pure-checkbox input[type='checkbox']:focus + label::before,
14+
.pure-checkbox input[type='checkbox']:hover + label::before {
1415
border: 2px solid var(--primary-color);
1516
}
1617

17-
.pure-checkbox input[type="checkbox"]:active + label::before { transition-duration: 0s; }
18+
.pure-checkbox input[type='checkbox']:active + label::before { transition-duration: 0s; }
1819

19-
.pure-checkbox input[type="checkbox"] + label {
20+
.pure-checkbox input[type='checkbox'] + label {
2021
position: relative;
2122
padding-inline-start: 2em;
2223
user-select: none;
@@ -25,7 +26,7 @@
2526
margin-block-start: 10px;
2627
}
2728

28-
.pure-checkbox input[type="checkbox"] + label::before {
29+
.pure-checkbox input[type='checkbox'] + label::before {
2930
box-sizing: content-box;
3031
content: '';
3132
color: var(--primary-text-color);
@@ -40,7 +41,7 @@
4041
transition: all 0.4s ease;
4142
}
4243

43-
.pure-checkbox input[type="checkbox"] + label::after {
44+
.pure-checkbox input[type='checkbox'] + label::after {
4445
box-sizing: content-box;
4546
border-style: solid;
4647
border-image: none;
@@ -58,34 +59,35 @@
5859
transition: transform 200ms ease-out;
5960
}
6061

61-
.pure-checkbox input[type="checkbox"]:disabled + label::before { border-color: #ccc; }
62+
.pure-checkbox input[type='checkbox']:disabled + label::before { border-color: #ccc; }
6263

63-
.pure-checkbox input[type="checkbox"]:disabled:focus + label::before, .pure-checkbox input[type="checkbox"]:disabled:hover + label::before { background-color: inherit; }
64+
.pure-checkbox input[type='checkbox']:disabled:focus + label::before,
65+
.pure-checkbox input[type='checkbox']:disabled:hover + label::before { background-color: inherit; }
6466

65-
.pure-checkbox input[type="checkbox"]:disabled:checked + label::before { background-color: #ccc; }
67+
.pure-checkbox input[type='checkbox']:disabled:checked + label::before { background-color: #ccc; }
6668

67-
.pure-checkbox input[type="checkbox"]:checked + label::after {
69+
.pure-checkbox input[type='checkbox']:checked + label::after {
6870
content: '';
6971
transform: rotate(-45deg) scale(1);
7072
transition: transform 200ms ease-out;
7173
}
7274

73-
.pure-checkbox input[type="checkbox"]:checked + label::before {
75+
.pure-checkbox input[type='checkbox']:checked + label::before {
7476
animation: borderscale 200ms ease-in;
7577
}
7678

7779
@keyframes
78-
borderscale { 50% {
79-
box-shadow: 0 0 0 2px var(--primary-text-color);
80-
}
80+
borderscale { 50% {
81+
box-shadow: 0 0 0 2px var(--primary-text-color);
82+
}
8183
}
8284

8385
.checkboxTitle {
8486
margin-block: 0;
8587
}
8688

8789
@media only screen and (width <= 680px) {
88-
.pure-checkbox input[type="checkbox"] + label {
90+
.pure-checkbox input[type='checkbox'] + label {
8991
margin-block-start: 3px;
9092
}
9193
}

src/renderer/components/ft-community-poll/ft-community-poll.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
cursor: pointer;
6666
}
6767

68-
.reveal-answer:hover, .reveal-answer:focus {
69-
background-color: var(--side-nav-hover-color)
68+
.reveal-answer:hover,
69+
.reveal-answer:focus {
70+
background-color: var(--side-nav-hover-color);
7071
}

src/renderer/components/ft-icon-button/ft-icon-button.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@
9898
}
9999
}
100100

101-
&.favorite, &.favorite:hover, &.favorite:focus-visible {
101+
&.favorite,
102+
&.favorite:hover,
103+
&.favorite:focus-visible {
102104
&:not(.disabled) {
103105
color: var(--favorite-icon-color);
104106
}

src/renderer/components/ft-input/ft-input.css

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
position: relative;
44
}
55

6-
body[dir='rtl'] .ft-input-component.search.showClearTextButton .inputAction {
6+
body[dir='rtl'] .ft-input-component.search.showClearTextButton .inputAction {
77
inset-inline-end: -30px;
8-
}
8+
}
99

10-
body[dir='rtl'] .ft-input-component.search.clearTextButtonVisible .inputAction,
11-
body[dir='rtl'] .ft-input-component.search.showClearTextButton:focus-within .inputAction {
10+
body[dir='rtl'] .ft-input-component.search.clearTextButtonVisible .inputAction,
11+
body[dir='rtl'] .ft-input-component.search.showClearTextButton:focus-within .inputAction {
1212
inset-inline-end: 0;
13-
}
13+
}
1414

1515
.ft-input-component.search.showClearTextButton {
1616
padding-inline-start: 30px;
@@ -41,7 +41,8 @@
4141
opacity: 1;
4242
}
4343

44-
.disabled label, .disabled .ft-input{
44+
.disabled label,
45+
.disabled .ft-input {
4546
opacity: 0.4;
4647
cursor: not-allowed;
4748
}
@@ -82,7 +83,7 @@
8283
}
8384

8485
.forceTextColor .clearInputTextButton {
85-
color: #EEE;
86+
color: #eee;
8687
}
8788

8889
.forceTextColor .clearInputTextButton:active {
@@ -109,7 +110,7 @@
109110
}
110111

111112
.forceTextColor .ft-input {
112-
color: #EEE;
113+
color: #eee;
113114
background-color: var(--primary-input-color);
114115
}
115116

@@ -119,7 +120,7 @@
119120
}
120121

121122
.forceTextColor ::placeholder {
122-
color: #EEE;
123+
color: #eee;
123124
}
124125

125126
.inputWrapper {
@@ -153,7 +154,7 @@
153154
}
154155

155156
.forceTextColor .inputAction {
156-
color: #EEE;
157+
color: #eee;
157158
}
158159

159160
.ft-input-component.showActionButton .ft-input {

0 commit comments

Comments
 (0)