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.scss62
1 files changed, 54 insertions, 8 deletions
diff --git a/src/assets/styles/bmc/custom/_tables.scss b/src/assets/styles/bmc/custom/_tables.scss
index 84dc5f99..dc5d5e83 100644
--- a/src/assets/styles/bmc/custom/_tables.scss
+++ b/src/assets/styles/bmc/custom/_tables.scss
@@ -29,15 +29,7 @@
// thead-light added for specificity
.thead-light th {
vertical-align: middle;
- // border-top: 1px solid gray("300");
border-bottom: 1px solid gray("300");
- // &:first-of-type {
- // border-left: 1px solid gray("300");
- // }
- // &:last-of-type {
- // border-right: 1px solid gray("300");
- // }
- // color: theme-color("dark");
&:focus {
outline: none;
}
@@ -319,3 +311,57 @@
-o-border-radius: 0;
-khtml-border-radius: 0;
}
+
+#table-session-logs,
+#user-management-table,
+#certificates-table {
+ -moz-border-radius: 10px;
+ -webkit-border-radius: 10px;
+ border-radius: 10px;
+ border: 1px solid rgba(26, 62, 91, 0.3);
+ background-color: none;
+ tr {
+ border-radius: 10px 10px 0 0;
+ -webkit-border-radius: 10px 10px 0 0;
+ -moz-border-radius: 10px 10px 0 0;
+ //fonst-styles
+ font-family: 'Inter', sans-serif;
+ font-size: 12px;
+ font-style: normal;
+ font-weight: 600;
+ line-height: 16px;
+ letter-spacing: 0em;
+ text-align: left;
+ text-transform: uppercase;
+ color: $text-primary;
+ }
+ th {
+ border-top: none;
+ border-bottom: none;
+ border-left: 1px solid rgba(26, 62, 91, 0.3);
+ background-color: $faint-secondary-primary-10 !important;
+ color: $text-primary !important;
+ }
+ th:first-child {
+ border-left: none;
+ border-radius: 10px 0 0 0;
+ }
+ th:last-child {
+ border-left: none;
+ border-radius: 0 10px 0 0;
+ }
+ td {
+ &:hover {
+ background-color: $faint-secondary-primary-2-hover;
+ }
+ //fonst-styles
+ font-family: 'Inter', sans-serif;
+ font-size: 12px;
+ font-style: normal;
+ font-weight: 500;
+ line-height: 20px;
+ letter-spacing: 0em;
+ text-align: left;
+ color: $text-secondary;
+ }
+} \ No newline at end of file