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(TemperaturePanel.vue): remove hover effect #785

Merged
merged 2 commits into from
May 9, 2022
Merged
Changes from 1 commit
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
Next Next commit
fix(TemperaturePanel.vue): remove hover effect
Signed-off-by: Dominik Willner <th33xitus@gmail.com>
  • Loading branch information
dw-0 committed May 9, 2022
commit 973ff736371a4d0b6062d09b3d97077eeebe1ee2
6 changes: 5 additions & 1 deletion src/components/panels/TemperaturePanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<template #default="{ el }">
<v-simple-table class="temperature-panel-table">
<thead>
<tr>
<tr class="_no-hover">
<th class="icon">&nbsp;</th>
<th class="name">{{ $t('Panels.TemperaturePanel.Name') }}</th>
<th v-if="!el.is.mobile" class="state">
Expand Down Expand Up @@ -403,6 +403,10 @@ export default class TemperaturePanel extends Mixins(BaseMixin, ControlMixin) {
height: auto !important;
}

.temperature-panel-table tr:hover {
background: none !important;
}

.temperature-panel-table .icon {
width: 24px;
padding-right: 0 !important;
Expand Down