mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-26 17:26:10 -06:00
Change border and color of active markdown tab
This commit is contained in:
parent
3f641122d4
commit
ca06acf9da
BIN
netbox/project-static/dist/netbox-dark.css
vendored
BIN
netbox/project-static/dist/netbox-dark.css
vendored
Binary file not shown.
BIN
netbox/project-static/dist/netbox-light.css
vendored
BIN
netbox/project-static/dist/netbox-light.css
vendored
Binary file not shown.
BIN
netbox/project-static/dist/netbox-print.css
vendored
BIN
netbox/project-static/dist/netbox-print.css
vendored
Binary file not shown.
@ -236,12 +236,12 @@ table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
th.asc > a::after {
|
th.asc > a::after {
|
||||||
content: "\f0140";
|
content: '\f0140';
|
||||||
font-family: 'Material Design Icons';
|
font-family: 'Material Design Icons';
|
||||||
}
|
}
|
||||||
|
|
||||||
th.desc > a::after {
|
th.desc > a::after {
|
||||||
content: "\f0143";
|
content: '\f0143';
|
||||||
font-family: 'Material Design Icons';
|
font-family: 'Material Design Icons';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -419,15 +419,15 @@ nav.search {
|
|||||||
// Styles for the quicksearch and its clear button;
|
// Styles for the quicksearch and its clear button;
|
||||||
// Overrides input-group styles and adds transition effects
|
// Overrides input-group styles and adds transition effects
|
||||||
.quicksearch {
|
.quicksearch {
|
||||||
input[type="search"] {
|
input[type='search'] {
|
||||||
border-radius: $border-radius !important;
|
border-radius: $border-radius !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
margin-left: -32px !important;
|
margin-left: -32px !important;
|
||||||
z-index: 100 !important;
|
z-index: 100 !important;
|
||||||
outline: none !important;
|
outline: none !important;
|
||||||
border-radius: $border-radius !important;
|
border-radius: $border-radius !important;
|
||||||
transition: visibility 0s, opacity 0.2s linear;
|
transition: visibility 0s, opacity 0.2s linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -998,9 +998,24 @@ div.card-overlay {
|
|||||||
padding: 8px;
|
padding: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Markdown widget */
|
||||||
|
.markdown-preview {
|
||||||
|
.nav-link {
|
||||||
|
border-bottom: 0;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
background-color: var(--nbx-body-bg) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.nav-link.active {
|
||||||
|
// background-color: var(--nbx-body-bg) !important;
|
||||||
|
background-color: blueviolet;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Preformatted text blocks
|
// Preformatted text blocks
|
||||||
td pre {
|
td pre {
|
||||||
margin-bottom: 0
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
pre.block {
|
pre.block {
|
||||||
padding: $spacer;
|
padding: $spacer;
|
||||||
|
Loading…
Reference in New Issue
Block a user