Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: divider in temperature presets is transparent #1004

Merged
merged 1 commit into from
Aug 6, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/components/panels/TemperaturePanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</div>
</v-list-item>
</v-list>
<v-divider></v-divider>
<v-divider class="_fix_transparency"></v-divider>
<v-list dense class="py-0">
<v-list-item link @click="cooldown()">
<div class="d-flex align-center _preset-title">
Expand Down Expand Up @@ -420,4 +420,12 @@ export default class TemperaturePanel extends Mixins(BaseMixin, ControlMixin) {
.temperature-panel-table .target {
width: 140px;
}

/*
workaround for fixing a transparency issue
which is assumingly a vuetify bug
*/
._fix_transparency {
background-color: #1e1e1e;
}
</style>