Skip to content

Commit 9b176e0

Browse files
committed
lint errors
1 parent 9b62e15 commit 9b176e0

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

CHANGELOG-nightly.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 3.1.16.1000
2+
3+
- Added EloWard League of Legends rank badges module
4+
15
### 3.1.15.1000
26

37
- Added required Firefox built-in consent metadata to the manifest

src/app/chat/UserTag.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -263,8 +263,8 @@ watch(() => gameDetection.isLeagueStream.value, initializeEloWardBadge);
263263
display: inline-flex !important;
264264
align-items: center !important;
265265
vertical-align: baseline !important;
266-
gap: 0px !important;
267-
margin-right: 0px !important;
266+
gap: 0 !important;
267+
margin-right: 0 !important;
268268
269269
:deep(img) {
270270
vertical-align: middle;
@@ -275,14 +275,14 @@ watch(() => gameDetection.isLeagueStream.value, initializeEloWardBadge);
275275
}
276276
}
277277
278+
.seventv-chat-user-username {
279+
font-weight: 700;
280+
}
281+
278282
// Username spacing after badge list
279283
.seventv-chat-user-badge-list + .seventv-chat-user-username {
280284
margin-left: 2px !important;
281285
}
282-
283-
.seventv-chat-user-username {
284-
font-weight: 700;
285-
}
286286
}
287287
288288
.seventv-user-card-float {

src/site/twitch.tv/modules/eloward/components/EloWardBadge.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,12 @@ const handleClick = () => {
124124
}
125125
126126
// Theme adjustments
127+
/* stylelint-disable-next-line selector-class-pattern */
127128
:global(.tw-root--theme-dark) .seventv-chat-badge.eloward-rank-badge {
128129
filter: brightness(0.95);
129130
}
130131
132+
/* stylelint-disable-next-line selector-class-pattern */
131133
:global(.tw-root--theme-light) .seventv-chat-badge.eloward-rank-badge {
132134
filter: brightness(1.05) contrast(1.1);
133135
}

src/site/twitch.tv/modules/eloward/components/EloWardTooltip.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ const regionDisplay = computed(() => {
112112
}
113113
114114
// Dark theme
115+
/* stylelint-disable-next-line selector-class-pattern */
115116
:global(.tw-root--theme-dark) .eloward-tooltip-content {
116117
.eloward-rank-line {
117118
color: #efeff1;
@@ -128,6 +129,7 @@ const regionDisplay = computed(() => {
128129
}
129130
130131
// Light theme
132+
/* stylelint-disable-next-line selector-class-pattern */
131133
:global(.tw-root--theme-light) .eloward-tooltip-content {
132134
.eloward-rank-line {
133135
color: #0e0e10;

0 commit comments

Comments
 (0)