summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Tsyganova <ATSyganova@IBS.RU>2022-07-13 16:19:56 +0300
committerAnna Tsyganova <ATSyganova@IBS.RU>2022-07-13 16:19:56 +0300
commitb6c09f37d0da22dab29db173f5856600416ef7a0 (patch)
tree5fec0ceaa1428659f0cc1d4eaa66e5f0d6435fb2
parentfb0f2ac9c520ede7753530ee213d8b98c9675041 (diff)
parent56e59c84b9b2290d21467f6827ba07e4af5a9e61 (diff)
downloadwebui-vue-b6c09f37d0da22dab29db173f5856600416ef7a0.tar.xz
Merge branch 'sila-ui' of git.sila.ru:pub/openbmc/webui-vue into sila-ui
-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;