Skip to content

Commit d17f8c5

Browse files
committed
some minor CSS improvements for selected pills in darkmode
1 parent 49bd74c commit d17f8c5

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

client/src/App.vue

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,4 +307,13 @@ export default {
307307
background-color: gray !important;
308308
color: whitesmoke!important;
309309
}
310+
311+
.theme--light.v-chip:not(.v-chip--active) {
312+
background: #e6e6e6;
313+
}
314+
315+
.theme--dark.v-chip:not(.v-chip--active) {
316+
background: #2c2c2c;
317+
}
318+
310319
</style>

client/src/components/apps/new.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,7 @@
440440
hint="Select one or more"
441441
persistent-hint
442442
chips
443+
class="capability"
443444
></v-select>
444445
</v-col>
445446
<v-col
@@ -455,6 +456,7 @@
455456
hint="Select one or more"
456457
persistent-hint
457458
chips
459+
class="capability"
458460
></v-select>
459461
</v-col>
460462
</v-row>
@@ -1814,7 +1816,9 @@ export default {
18141816
.v-expansion-panel-header {
18151817
background: cardBackground;
18161818
}
1817-
.theme--light.v-chip:not(.v-chip--active) {
1819+
1820+
.capability .theme--light.v-chip:not(.v-chip--active) {
18181821
background: #BBB;
18191822
}
1823+
18201824
</style>

client/src/components/services/list.vue

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,4 +226,14 @@ pre {
226226
display: block;
227227
word-wrap: break-word;
228228
}
229+
230+
231+
.theme--light.v-chip:not(.v-chip--active) {
232+
background: #e6e6e6;
233+
}
234+
235+
.theme--dark.v-chip:not(.v-chip--active) {
236+
background: #2c2c2c;
237+
}
238+
229239
</style>

0 commit comments

Comments
 (0)