Browse Source

Merge 19be23a8c7 into 6f2a912708

pull/6485/merge
Daniel Lenggenhager 2 years ago
committed by GitHub
parent
commit
a1688cbd67
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 7 deletions
  1. 21
      dist/components/table.css

21
dist/components/table.css

@ -481,12 +481,14 @@
---------------*/
.ui.selectable.table tbody tr:hover,
.ui.table tbody tr td.selectable:hover {
.ui.table tbody tr td.selectable:hover,
.ui.table tbody tr.selectable:hover {
background: rgba(0, 0, 0, 0.05) !important;
color: rgba(0, 0, 0, 0.95) !important;
}
.ui.selectable.inverted.table tbody tr:hover,
.ui.inverted.table tbody tr td.selectable:hover {
.ui.inverted.table tbody tr td.selectable:hover,
.ui.inverted.table tbody tr.selectable:hover {
background: rgba(255, 255, 255, 0.08) !important;
color: #ffffff !important;
}
@ -504,31 +506,36 @@
/* Other States */
.ui.selectable.table tr.error:hover,
.ui.table tr td.selectable.error:hover,
.ui.selectable.table tr:hover td.error {
.ui.selectable.table tr:hover td.error,
.ui.table tbody tr.selectable.error:hover {
background: #ffe7e7 !important;
color: #943634 !important;
}
.ui.selectable.table tr.warning:hover,
.ui.table tr td.selectable.warning:hover,
.ui.selectable.table tr:hover td.warning {
.ui.selectable.table tr:hover td.warning,
.ui.table tbody tr.selectable.warning:hover {
background: #fff4e4 !important;
color: #493107 !important;
}
.ui.selectable.table tr.active:hover,
.ui.table tr td.selectable.active:hover,
.ui.selectable.table tr:hover td.active {
.ui.selectable.table tr:hover td.active,
.ui.table tbody tr.selectable.active:hover {
background: #E0E0E0 !important;
color: rgba(0, 0, 0, 0.87) !important;
}
.ui.selectable.table tr.positive:hover,
.ui.table tr td.selectable.positive:hover,
.ui.selectable.table tr:hover td.positive {
.ui.selectable.table tr:hover td.positive,
.ui.table tbody tr.selectable.positive:hover {
background: #f7ffe6 !important;
color: #275b28 !important;
}
.ui.selectable.table tr.negative:hover,
.ui.table tr td.selectable.negative:hover,
.ui.selectable.table tr:hover td.negative {
.ui.selectable.table tr:hover td.negative,
.ui.table tbody tr.selectable.negative:hover {
background: #ffe7e7 !important;
color: #943634 !important;
}

Loading…
Cancel
Save