summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}