summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets/styles/bmc')
-rw-r--r--src/assets/styles/bmc/custom/_base.scss2
-rw-r--r--src/assets/styles/bmc/custom/_buttons.scss2
-rw-r--r--src/assets/styles/bmc/custom/_logs.scss4
-rw-r--r--src/assets/styles/bmc/custom/_tables.scss62
4 files changed, 60 insertions, 10 deletions
diff --git a/src/assets/styles/bmc/custom/_base.scss b/src/assets/styles/bmc/custom/_base.scss
index 0c3fbd2a..94cbecb5 100644
--- a/src/assets/styles/bmc/custom/_base.scss
+++ b/src/assets/styles/bmc/custom/_base.scss
@@ -127,7 +127,7 @@ h6,
}
.semi-bold-12px__caps {
- font-family: 'Inter', sans-serif;
+ font-family: 'Inter', sans-serif;
font-size: 12px;
font-style: normal;
font-weight: 600;
diff --git a/src/assets/styles/bmc/custom/_buttons.scss b/src/assets/styles/bmc/custom/_buttons.scss
index 51e2d073..04a97c21 100644
--- a/src/assets/styles/bmc/custom/_buttons.scss
+++ b/src/assets/styles/bmc/custom/_buttons.scss
@@ -103,7 +103,7 @@
}
}
-.btn-unstiled {
+.btn-unstyled {
border: none;
&:focus {
box-shadow: none;
diff --git a/src/assets/styles/bmc/custom/_logs.scss b/src/assets/styles/bmc/custom/_logs.scss
index 2a8dcff7..1f6b314b 100644
--- a/src/assets/styles/bmc/custom/_logs.scss
+++ b/src/assets/styles/bmc/custom/_logs.scss
@@ -71,4 +71,8 @@
box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.06);
z-index: $zindex-dropdown;
background-color: $white;
+}
+
+.table-pagination-select {
+ line-height: 1.8rem;
} \ No newline at end of file
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