| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876 |
- // Netbox-specific Styles and Overrides.
- @use 'sass:map';
- :root {
- --nbx-sidebar-bg: #{$gray-100};
- --nbx-sidebar-link-color: #{$gray-800};
- --nbx-sidebar-link-hover-bg: #{$blue-100};
- --nbx-sidebar-title-color: #{$text-muted};
- --nbx-sidebar-shadow: inset 0px -25px 20px -25px rgba(0, 0, 0, 0.25);
- --nbx-breadcrumb-bg: #{$light};
- --nbx-body-bg: #{$white};
- --nbx-body-color: #{$gray-800};
- --nbx-pre-bg: #{$gray-100};
- --nbx-pre-border-color: #{$gray-600};
- --nbx-change-added: #{rgba($green, 0.4)};
- --nbx-change-removed: #{rgba($red, 0.4)};
- --nbx-cable-node-bg: #{$gray-100};
- --nbx-cable-node-border-color: #{$gray-200};
- --nbx-cable-termination-bg: #{$gray-200};
- --nbx-cable-termination-border-color: #{$gray-300};
- --nbx-search-filter-border-left-color: #{$gray-300};
- --nbx-color-mode-toggle-color: #{$primary};
- body[data-netbox-color-mode='dark'] {
- --nbx-sidebar-bg: #{$gray-900};
- --nbx-sidebar-link-color: #{$gray-200};
- --nbx-sidebar-link-hover-bg: #{rgba($blue-300, 0.15)};
- --nbx-sidebar-title-color: #{$gray-600};
- --nbx-sidebar-shadow: inset 0px -25px 20px -25px rgba(255, 255, 255, 0.05);
- --nbx-breadcrumb-bg: #{$gray-800};
- --nbx-body-bg: #1b1f22;
- --nbx-body-color: #{$gray-100};
- --nbx-pre-bg: #{$gray-700};
- --nbx-pre-border-color: #{$gray-600};
- --nbx-change-added: #{rgba($green-300, 0.4)};
- --nbx-change-removed: #{rgba($red-300, 0.4)};
- --nbx-cable-node-bg: #{$gray-700};
- --nbx-cable-node-border-color: #{$gray-600};
- --nbx-cable-termination-bg: #{$gray-800};
- --nbx-cable-termination-border-color: #{$gray-700};
- --nbx-search-filter-border-left-color: #{$gray-600};
- --nbx-color-mode-toggle-color: #{$yellow-300};
- }
- }
- * {
- transition: background-color, color 0.15s ease-in-out;
- }
- .mw-25 {
- max-width: 25% !important;
- }
- .mw-33 {
- max-width: 33.33% !important;
- }
- .mw-50 {
- max-width: 50% !important;
- }
- .mw-66 {
- max-width: 66.66% !important;
- }
- .mw-75 {
- max-width: 75% !important;
- }
- .text-xs {
- font-size: $font-size-xs;
- line-height: $line-height-sm;
- }
- .opacity-0 {
- opacity: 0 !important;
- }
- .opacity-25 {
- opacity: 0.25 !important;
- }
- .opacity-50 {
- opacity: 0.5 !important;
- }
- .opacity-75 {
- opacity: 0.75 !important;
- }
- .opacity-100 {
- opacity: 1 !important;
- }
- // Automatically space out adjacent columns.
- .col:not(:last-child):not(:only-child) {
- margin-bottom: $spacer;
- }
- *[data-href] {
- cursor: pointer;
- }
- // Use proper contrasting color foreground color for special components.
- @each $color, $value in $theme-colors {
- .badge,
- .toast,
- .progress-bar {
- &.bg-#{$color} {
- color: color-contrast($value);
- }
- }
- // Use proper foreground color in the alert body. Note: this is applied to a, p, & small because
- // we *don't* want to override the h1-h6 colors for alerts, since those are set to a color
- // similar to the alert color.
- .alert.alert-#{$color} {
- a,
- p,
- small {
- color: color-contrast($value);
- }
- }
- }
- // Ensure progress bars (utilization graph) in tables aren't too narrow to display the percentage.
- table td > .progress {
- min-width: 6rem;
- }
- .card > .table.table-flush {
- margin-bottom: 0;
- overflow: hidden;
- border-bottom-right-radius: $card-border-radius;
- border-bottom-left-radius: $card-border-radius;
- thead th[scope='col'] {
- background-color: $table-flush-header-bg;
- vertical-align: middle;
- text-transform: uppercase;
- padding-top: map.get($spacers, 3);
- padding-bottom: map.get($spacers, 3);
- border-bottom-color: $card-border-color;
- border-top: 1px solid $card-border-color;
- }
- th,
- td {
- border-left: 0;
- border-right: 0;
- padding-left: map.get($spacers, 4) !important;
- padding-right: map.get($spacers, 4) !important;
- }
- tr[class] {
- border-color: $card-border-color !important;
- &:last-of-type {
- border-bottom-color: transparent !important;
- border-bottom-right-radius: $card-border-radius;
- border-bottom-left-radius: $card-border-radius;
- }
- }
- }
- // Primarily used for the new release notification, but could be used for other alerts as needed.
- // Wrap any alerts in .header-alert-container to ensure the layout is consistent.
- .header-alert-container {
- // Center-align the alert(s).
- display: flex;
- justify-content: center;
- align-items: center;
- // Apply the same spacing that's applied to the #content div's first child (.px-3).
- padding: 0 $spacer;
- // By default, alerts inside .header-alert-container should take up the full width.
- .alert {
- width: 100%;
- // Adjust the max-width for larger screens so there's not a big ugly blue blob taking up the
- // entire screen.
- @include media-breakpoint-up(md) {
- max-width: 75%;
- }
- @include media-breakpoint-up(lg) {
- max-width: 50%;
- }
- }
- }
- span.profile-button .dropdown-menu {
- transition: opacity 0.2s ease-in-out;
- display: block !important;
- right: 0;
- left: auto;
- margin-top: 0.5rem;
- box-shadow: $box-shadow;
- &:not(.show) {
- opacity: 0;
- pointer-events: none;
- }
- &.show {
- opacity: 1;
- pointer-events: auto;
- }
- }
- div#advanced-search-content div.card div.card-body div.col:not(:last-child) {
- margin-right: 1rem;
- }
- body {
- background-color: var(--nbx-body-bg);
- color: var(--nbx-body-color);
- g#netbox-logo-1 {
- fill: #9cc8f8;
- stroke: #9cc8f8;
- }
- g#netbox-logo-2 {
- fill: #1685fc;
- stroke: #1685fc;
- }
- &[data-netbox-color-mode='light'] {
- .btn.btn-primary,
- .progress-bar.bg-primary,
- .badge.bg-primary,
- .nav.nav-pills .nav-item.nav-link.active,
- .nav.nav-pills .nav-item .nav-link.active,
- .nav.nav-pills .nav-item .show > .nav-link {
- color: $gray-100;
- }
- }
- &[data-netbox-color-mode='dark'] {
- & {
- .btn.btn-primary,
- .progress-bar.bg-primary,
- .badge.bg-primary,
- .nav.nav-pills .nav-item.nav-link.active,
- .nav.nav-pills .nav-item .nav-link.active,
- .nav.nav-pills .nav-item .show > .nav-link {
- color: $black;
- }
- }
- .card table caption {
- color: $gray-300;
- }
- .breadcrumb .breadcrumb-item > a {
- color: $blue-200;
- &:hover {
- color: $blue-100;
- }
- }
- .card,
- .sidebar {
- .text-muted {
- color: $gray-400 !important;
- }
- }
- .text-body[class] {
- color: var(--nbx-body-color) !important;
- }
- g#netbox-logo-1 {
- fill: $white;
- stroke: $white;
- }
- g#netbox-logo-2 {
- fill: $gray-200;
- stroke: $gray-200;
- }
- }
- & table,
- &[data-netbox-color-mode] table {
- a {
- text-decoration: none;
- &:hover {
- text-decoration: underline;
- }
- }
- &.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;
- & input.form-check-input {
- // Ensure checkboxes aren't too small inside object tables.
- font-size: $font-size-base;
- }
- & .btn-sm {
- line-height: $line-height-xs;
- }
- }
- &.attr-table {
- td,
- th {
- font-size: $font-size-sm;
- line-height: $line-height-sm;
- }
- }
- }
- }
- div.title-container {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- align-items: center;
- div#content-title {
- display: flex;
- flex-direction: column;
- flex: 1 0 auto;
- padding-bottom: map.get($spacers, 2);
- }
- }
- nav.search {
- background-color: var(--nbx-body-bg);
- form button.dropdown-toggle {
- border-color: $input-border-color;
- font-weight: $input-group-addon-font-weight;
- line-height: $input-line-height;
- color: $input-group-addon-color;
- background-color: $input-group-addon-bg;
- border: $input-border-width solid $input-group-addon-border-color;
- @include border-radius($input-border-radius);
- border-left: 1px solid var(--nbx-search-filter-border-left-color);
- &:focus {
- box-shadow: unset !important;
- }
- }
- }
- main.login-container {
- display: flex;
- height: calc(100vh - 4rem);
- width: 100%;
- max-width: 100vw;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- padding-top: 40px;
- padding-bottom: 40px;
- & + footer.footer button.color-mode-toggle {
- color: var(--nbx-color-mode-toggle-color);
- }
- }
- footer.login-footer {
- height: 4rem;
- margin-top: auto;
- .container-fluid {
- display: flex;
- justify-content: flex-end;
- padding: $container-padding-x $grid-gutter-width;
- }
- }
- h1 {
- font-weight: $font-weight-bolder;
- }
- h2 {
- font-weight: $font-weight-bold;
- }
- h3,
- h4 {
- font-weight: $font-weight-medium;
- }
- h5,
- h6 {
- font-weight: $font-weight-medium;
- }
- h1.accordion-item-title,
- h2.accordion-item-title,
- h3.accordion-item-title,
- h4.accordion-item-title,
- h5.accordion-item-title,
- h6.accordion-item-title {
- // padding: 0 0.5rem;
- padding: 0.25rem 0.5rem;
- font-weight: $font-weight-bold;
- text-transform: uppercase;
- color: var(--nbx-sidebar-title-color);
- font-size: $font-size-sm;
- }
- .form-login {
- width: 100%;
- max-width: 330px;
- padding: 15px;
- & input:focus {
- z-index: 1;
- }
- }
- .form-login input[type='text'] {
- margin-bottom: -1px;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- }
- .form-login input[type='password'] {
- margin-bottom: 10px;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- .form-login .form-control {
- position: relative;
- box-sizing: border-box;
- height: auto;
- padding: 10px;
- font-size: 16px;
- }
- li.dropdown-item.dropdown-item-btns {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .sidebar-sticky {
- position: relative;
- top: 0;
- height: calc(100vh - 48px);
- padding-top: 0.5rem;
- overflow-x: hidden;
- overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
- }
- .navbar-brand {
- padding-top: 0.75rem;
- padding-bottom: 0.75rem;
- font-size: 1rem;
- }
- nav.nav.nav-pills {
- .nav-item.nav-link {
- padding: 0.25rem 0.5rem;
- font-size: $font-size-sm;
- border-radius: $border-radius;
- &:hover {
- background-color: $accordion-button-active-bg;
- color: $accordion-button-active-color;
- }
- }
- }
- // Ensure the content container is full-height, and that the content block is also full height so
- // that the footer is always at the bottom.
- div.content-container {
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- @include media-breakpoint-up(md) {
- margin-left: $sidebar-width;
- }
- div.content {
- flex: 1;
- }
- }
- // Prevent scrolling of body content when nav menu is open on mobile.
- .sidebar.collapse.show ~ .content-container > .content {
- @media (max-width: map.get($grid-breakpoints, 'md')) {
- position: fixed;
- top: 0;
- left: 0;
- overflow-y: hidden;
- }
- }
- .sidebar {
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- z-index: 100; /* Behind the navbar */
- border-right: 1px solid $border-color;
- background-color: var(--nbx-sidebar-bg);
- max-height: 100%;
- width: 100%;
- @include media-breakpoint-up(md) {
- width: 100%;
- max-width: $sidebar-width;
- }
- @include media-breakpoint-down(md) {
- top: 8.125rem;
- background-color: var(--nbx-body-bg);
- }
- div.accordion-item {
- border: unset;
- padding: 0 $spacer / 2;
- // When an sidenav section is open, apply a shadow to provide a visual border.
- &.is-open {
- box-shadow: var(--nbx-sidebar-shadow);
- }
- & > a.accordion-button {
- &:not(.collapsed) {
- box-shadow: unset;
- }
- &.nav-link {
- border-radius: $border-radius;
- &:hover {
- color: $accordion-button-active-color;
- background-color: $accordion-button-active-bg;
- }
- &:focus {
- border-color: unset;
- box-shadow: unset;
- }
- }
- }
- }
- .accordion-body {
- max-height: calc(100vh - 24rem);
- overflow-y: auto;
- .nav-item {
- .nav-link {
- padding: 0.25rem 0.6rem;
- font-size: $font-size-sm;
- border-radius: $border-radius;
- &:hover {
- color: $accordion-button-active-color;
- background-color: $accordion-button-active-bg;
- }
- }
- }
- }
- // Ensure navigation accounts for the height of the header on mobile when nav is expanded.
- &.collapse.show div.position-sticky {
- @media (max-width: map.get($grid-breakpoints, 'md')) {
- height: calc(100vh - 16.125rem);
- overflow-y: auto;
- }
- }
- div.position-sticky {
- height: calc(100vh - #{$sidebar-bottom-height});
- }
- div.sidebar-bottom {
- padding-left: 0.5rem;
- padding-right: 0.5rem;
- position: sticky;
- height: $sidebar-bottom-height;
- background-color: var(--nbx-sidebar-bg);
- @include media-breakpoint-down(md) {
- background-color: var(--nbx-body-bg);
- }
- .nav {
- padding: 0 1.25rem;
- justify-content: space-between;
- margin: $spacer/2 0;
- .nav-link {
- padding: 0.5rem 0.25rem;
- }
- }
- }
- a.sidebar-logo {
- display: flex;
- flex-shrink: 1;
- width: 100%;
- height: 4rem;
- }
- }
- .tooltip {
- pointer-events: none;
- }
- .ws-nowrap {
- white-space: nowrap !important;
- }
- .search-obj-selector {
- .dropdown-item,
- .dropdown-header {
- font-size: $font-size-sm;
- }
- .dropdown-header {
- text-transform: uppercase;
- }
- }
- span.color-label {
- width: 5rem;
- height: 1rem;
- display: block;
- box-shadow: $box-shadow-sm;
- border-radius: $border-radius;
- padding: $badge-padding-y $badge-padding-x;
- }
- pre {
- border-radius: $border-radius;
- border: 1px solid var(--nbx-pre-border-color);
- background-color: var(--nbx-pre-bg);
- padding: $spacer;
- white-space: pre;
- }
- .btn {
- white-space: nowrap;
- }
- .card {
- box-shadow: $box-shadow-sm;
- .card-header {
- color: $body-color;
- border-bottom: none;
- padding: $card-cap-padding-x;
- }
- .card-header + .card-body {
- padding-top: 0;
- }
- .card-body {
- overflow-x: auto;
- }
- }
- .form-floating {
- position: relative;
- > .input-group > .form-control,
- > .input-group > .form-select {
- height: $form-floating-height;
- padding: $form-floating-padding-y $form-floating-padding-x;
- }
- > .input-group > label {
- position: absolute;
- top: 0;
- left: 0;
- height: 100%; // allow textareas
- padding: $form-floating-padding-y $form-floating-padding-x;
- pointer-events: none;
- border: $input-border-width solid transparent; // Required for aligning label's text with the input as it affects inner box model
- transform-origin: 0 0;
- @include transition($form-floating-transition);
- }
- > .input-group > .form-control {
- &::placeholder {
- color: transparent;
- }
- &:focus,
- &:not(:placeholder-shown) {
- padding-top: $form-floating-input-padding-t;
- padding-bottom: $form-floating-input-padding-b;
- }
- // Duplicated because `:-webkit-autofill` invalidates other selectors when grouped
- &:-webkit-autofill {
- padding-top: $form-floating-input-padding-t;
- padding-bottom: $form-floating-input-padding-b;
- }
- }
- > .input-group > .form-select,
- > .choices > .choices__inner,
- > .ss-main span.placeholder, // SlimSelect Single
- > .ss-main div.ss-values // SlimSelect Multiple
- {
- padding-top: $form-floating-input-padding-t;
- padding-bottom: $form-floating-input-padding-b;
- }
- > .input-group > .form-control:focus,
- > .input-group > .form-control:not(:placeholder-shown),
- > .input-group > .form-select,
- > .choices,
- > .ss-main {
- ~ label {
- opacity: $form-floating-label-opacity;
- transform: $form-floating-label-transform;
- z-index: 4;
- }
- }
- // Duplicated because `:-webkit-autofill` invalidates other selectors when grouped
- > .input-group > .form-control:-webkit-autofill {
- ~ label {
- opacity: $form-floating-label-opacity;
- transform: $form-floating-label-transform;
- z-index: 4;
- }
- }
- }
- textarea.form-control[rows='10'] {
- height: 18rem;
- }
- textarea#id_local_context_data,
- textarea.markdown,
- textarea#id_public_key,
- textarea.form-control[name='csv'],
- textarea.form-control[name='data'] {
- font-family: $font-family-monospace;
- }
- table tr.vertical-align {
- vertical-align: middle;
- }
- .card:not(:only-of-type) {
- margin-bottom: $spacer;
- }
- .stat-btn {
- min-width: $spacer * 3;
- }
- nav.breadcrumb-container {
- padding: $badge-padding-y $badge-padding-x;
- font-size: $font-size-sm;
- width: fit-content;
- ol.breadcrumb {
- margin-bottom: 0;
- li.breadcrumb-item > a {
- text-decoration: none;
- }
- li.breadcrumb-item > a:hover {
- text-decoration: underline;
- }
- }
- }
- div.paginator > form > div.input-group {
- width: fit-content;
- }
- div.field-group:not(:first-of-type) {
- margin-top: $spacer * 3;
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- margin-bottom: $spacer;
- }
- }
- label.required {
- font-weight: $font-weight-bold;
- &::after {
- font-family: 'Material Design Icons';
- content: '\f06C4';
- font-weight: normal;
- font-size: 8px;
- font-style: normal;
- margin: 0 0 0 2px;
- text-decoration: none;
- display: inline-block;
- position: absolute;
- }
- }
- // Applied to containing element around table bulk-action buttons (bulk-edit, bulk-disconnect
- // bulk-delete, etc). Each usage of .bulk-buttons needs to have groups of buttons wrapped with
- // .bulk-button-group so that proper spacing is applied (even if there is only one group).
- div.bulk-buttons {
- display: flex;
- justify-content: space-between;
- margin: $spacer / 2 0;
- // Each group of buttons needs to be contained separately for alignment purposes. This way, you
- // can put some buttons in a group that aligns left, and other buttons in a group that aligns
- // right.
- & > div.bulk-button-group {
- display: flex;
- &:first-of-type:not(:last-of-type) {
- // If there are multiple bulk button groups and this is the first, the first button in the
- // group should *not* have left spacing applied, so the button group aligns with the rest
- // of the page elements.
- & > *:first-child {
- margin-left: 0;
- }
- }
- &:last-of-type:not(:first-of-type) {
- // If there are multiple bulk button groups and this is the last, the last button in the
- // group should *not* have right spacing applied, so the button group aligns with the rest
- // of the page elements.
- & > *:last-child {
- margin-right: 0;
- }
- }
- // However, the rest of the buttons should have spacing applied in all directions.
- & > * {
- margin: $spacer / 4;
- }
- }
- }
- i.bi-plus:before,
- span.bi-plus:before {
- font-weight: $font-weight-bold !important;
- }
- table tbody {
- @each $color, $value in $theme-colors {
- tr.#{$color} {
- background-color: rgba($value, 0.15);
- border-color: $gray-500;
- }
- }
- }
- pre.change-data {
- padding-left: 0;
- padding-right: 0;
- & > span {
- display: block;
- padding-left: $spacer;
- padding-right: $spacer;
- &.added {
- background-color: var(--nbx-change-added);
- }
- &.removed {
- background-color: var(--nbx-change-removed);
- }
- }
- }
- pre.change-diff {
- border-color: transparent;
- &.change-removed {
- background-color: var(--nbx-change-removed);
- }
- &.change-added {
- background-color: var(--nbx-change-added);
- }
- }
- div.card-overlay {
- position: absolute;
- width: 100%;
- height: 100%;
- background-color: rgba($white, 0.75);
- border-radius: $border-radius;
- display: flex;
- justify-content: center;
- align-items: center;
- & > div.spinner-border {
- width: 6rem;
- height: 6rem;
- color: $secondary;
- }
- }
- div.card > div.card-header > div.table-controls {
- max-width: 25%;
- width: 100%;
- display: flex;
- align-items: center;
- & .form-switch.form-check-inline {
- flex: 1 0 auto;
- font-size: $font-size-sm;
- }
- }
|