summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-07-13 15:05:58 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-07-13 15:05:58 +0300
commitfb0f2ac9c520ede7753530ee213d8b98c9675041 (patch)
treee0bdd2b9148f7e215502b8e1681e6d5abb74fa7d
parentac2e648139a370f1c5b418cfb1694b348f992f8e (diff)
downloadwebui-vue-fb0f2ac9c520ede7753530ee213d8b98c9675041.tar.xz
fix global tables style
-rw-r--r--src/assets/styles/bmc/_sila/_tables.scss26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/assets/styles/bmc/_sila/_tables.scss b/src/assets/styles/bmc/_sila/_tables.scss
index ff168b13..c77ce6a5 100644
--- a/src/assets/styles/bmc/_sila/_tables.scss
+++ b/src/assets/styles/bmc/_sila/_tables.scss
@@ -2,10 +2,32 @@
position: relative;
z-index: $zindex-dropdown;
border: 1px solid $gray-30;
+ border-radius: 10px;
+ border-collapse: separate;
+ border-spacing: 0px;
thead {
th {
border: none;
+ &:first-child {
+ border-radius: 10px 0 0 0;
+ }
+ &:last-child {
+ border-radius: 0 10px 0 0;
+ }
+ }
+ }
+
+ tr {
+ border: none;
+ &:first-child {
+ border-radius: 0 0 0 10px;
+ }
+ &:last-child {
+ border-radius: 0 0 10px 0;
+ }
+ &.b-table-details:hover {
+ background-color: transparent;
}
}
@@ -101,6 +123,10 @@
}
}
+.table-hover tbody tr:hover {
+ background-color: $gray-5;
+}
+
.b-table-sticky-header td {
border-top: none;
}