summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/custom/_tables.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets/styles/bmc/custom/_tables.scss')
-rw-r--r--src/assets/styles/bmc/custom/_tables.scss56
1 files changed, 53 insertions, 3 deletions
diff --git a/src/assets/styles/bmc/custom/_tables.scss b/src/assets/styles/bmc/custom/_tables.scss
index 48d49b2b..bc3be1b2 100644
--- a/src/assets/styles/bmc/custom/_tables.scss
+++ b/src/assets/styles/bmc/custom/_tables.scss
@@ -60,8 +60,7 @@
.b-table-details {
background-color: theme-color("light");
td {
- padding-left: calc(50px + (#{$table-cell-padding} * 2));
- padding-right: calc(50px + (#{$table-cell-padding} * 2));
+ padding: 0px 16px 16px 16px;
}
dl {
margin: 0;
@@ -208,8 +207,16 @@
-moz-border-radius: 0 0 0 0;
}
+.bootstrap-rounded-table__without-border {
+ border-top: none !important;
+ border-radius: 0 0 0 0;
+ -webkit-border-radius: 0 0 0 0;
+ -moz-border-radius: 0 0 0 0;
+}
+
.bootstrap-rounded-table__head_bg {
background-color: $faint-secondary-primary-10 !important;
+ color: $text-primary !important;
}
.bootstrap-rounded-table__td {
@@ -225,10 +232,53 @@
}
}
-
.bootstrap-table {
border-top: none !important;
border: 1px solid rgba(26, 62, 91, 0.1);
background-color: $faint-secondary-primary-5;
}
+.bootstrap-analytical-table {
+ border: 1px solid rgba(26, 62, 91, 0.3);
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+}
+
+.bootstrap-analytical-table__head_bg {
+ background-color: transparent !important;
+ color: $text-primary !important;
+}
+
+.bootstrap-analytical-table__column-first {
+ border-top: none !important;
+ border-radius: 10px 0 0 0;
+ -webkit-border-radius: 10px 0 0 0;
+ -moz-border-radius: 10px 0 0 0;
+}
+
+.bootstrap-analytical-table__column-last {
+ border-top: none !important;
+ border-radius: 0 10px 0 0;
+ -webkit-border-radius: 0 10px 0 0;
+ -moz-border-radius: 0 10px 0 0;
+}
+
+.bootstrap-analytical-table__column-center {
+ border-top: none !important;
+ border-radius: 0 0 0 0;
+ -webkit-border-radius: 0 0 0 0;
+ -moz-border-radius: 0 0 0 0;
+}
+
+.bootstrap-analytical-table__td {
+ border-radius: 0;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ -khtml-border-radius: 0;
+ &:hover {
+ background-color: $faint-secondary-primary-5;
+ }
+} \ No newline at end of file