1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

general style improvements

This commit is contained in:
checktheroads
2021-04-30 11:27:51 -07:00
parent abd9ffd31d
commit aee09d9119
8 changed files with 45 additions and 11 deletions

View File

@@ -46,6 +46,11 @@
transition: background-color, color 0.15s ease-in-out;
}
.text-xs {
font-size: $font-size-xs;
line-height: $line-height-sm;
}
body {
background-color: var(--nbx-body-bg);
color: var(--nbx-body-color);
@@ -92,6 +97,25 @@ body {
stroke: $gray-200;
}
}
table {
&.table > :not(caption) > * > * {
padding-left: $table-cell-padding-x-sm !important;
padding-right: $table-cell-padding-x-sm !important;
}
td,
th {
font-size: $font-size-xs;
line-height: $line-height-sm;
vertical-align: middle;
}
&.attr-table {
td,
th {
font-size: $font-size-sm;
line-height: $line-height-sm;
}
}
}
}
div.title-container {
@@ -499,10 +523,6 @@ table tbody {
}
}
}
table td,
table th {
font-size: $font-size-sm;
}
// Cable Tracing
.cable-trace {