summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/_sila/_tables.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets/styles/bmc/_sila/_tables.scss')
-rw-r--r--src/assets/styles/bmc/_sila/_tables.scss30
1 files changed, 16 insertions, 14 deletions
diff --git a/src/assets/styles/bmc/_sila/_tables.scss b/src/assets/styles/bmc/_sila/_tables.scss
index c77ce6a5..5344249a 100644
--- a/src/assets/styles/bmc/_sila/_tables.scss
+++ b/src/assets/styles/bmc/_sila/_tables.scss
@@ -2,7 +2,7 @@
position: relative;
z-index: $zindex-dropdown;
border: 1px solid $gray-30;
- border-radius: 10px;
+ border-radius: $border-radius;
border-collapse: separate;
border-spacing: 0px;
@@ -10,24 +10,26 @@
th {
border: none;
&:first-child {
- border-radius: 10px 0 0 0;
+ border-radius: $border-radius 0 0 0;
}
&:last-child {
- border-radius: 0 10px 0 0;
+ border-radius: 0 $border-radius 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;
+ tbody {
+ tr {
+ border: none;
+ &:first-child {
+ border-radius: 0 0 0 $border-radius;
+ }
+ &:last-child {
+ border-radius: 0 0 $border-radius 0;
+ }
+ &.b-table-details:hover {
+ background-color: transparent;
+ }
}
}
@@ -47,7 +49,7 @@
// thead-light added for specificity
.thead-light th {
- background-color: $surface-secondary;
+ background-color: $gray-10;
vertical-align: middle;
text-transform: uppercase;
color: $text-primary;