highlighted classes

This commit is contained in:
Yuri Kuznetsov
2024-07-19 10:21:34 +03:00
parent e0256018de
commit 2bb53c5495
2 changed files with 29 additions and 0 deletions
+5
View File
@@ -737,3 +737,8 @@ body {
}
}
}
.panel.highlighted {
outline: 2px solid var(--brand-info);
outline-offset: -1px;
}
+24
View File
@@ -30,6 +30,30 @@ table.table,
}
}
}
&:has(> tbody > tr.border-top-highlighted:first-child) {
> thead > tr:last-child {
> th {
border-bottom: 3px solid var(--brand-info) !important;
}
}
}
> tbody {
> tr {
&.border-bottom-highlighted {
> td {
border-bottom: 3px solid var(--brand-info) !important;
}
}
&.border-top-highlighted {
> td {
border-top: 3px solid var(--brand-info) !important;
}
}
}
}
}
table.table > thead th > a {