Add terrible dark mode for inventory

pull/1/head
Dariusz Niemczyk 2023-07-11 18:34:18 +02:00
parent d473901f8c
commit 5ed4128151
No known key found for this signature in database
GPG Key ID: 28DFE7164F497CB6
3 changed files with 41 additions and 15 deletions

View File

@ -1,32 +1,39 @@
.table td.placeholder {
text-align: center;
color: #999;
text-align: center;
color: #999;
}
.table td.placeholder a {
display: block;
text-decoration: none;
color: inherit;
font-weight: bold;
display: block;
text-decoration: none;
color: inherit;
font-weight: bold;
}
.containericon {
white-space: nowrap;
display: inline-block;
vertical-align: middle;
white-space: nowrap;
display: inline-block;
vertical-align: middle;
}
.containericon span {
padding-left: 0.5rem;
font-weight: bold;
padding-left: 0.5rem;
font-weight: bold;
}
.label-item {
background: #f5f5f5;
border-radius: 3px;
display: inline-block;
background: #f5f5f5;
border-radius: 3px;
display: inline-block;
}
.label-item code {
margin: 0em 1em;
margin: 0em 1em;
}
a {
color: #81d4fa !important;
}
a.navbar-brand {
color: #fff !important;
}

14
static/css/theme.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -11,6 +11,11 @@
href="{% static 'css/bootstrap.css' %}"
media="screen"
/>
<link
rel="stylesheet"
href="{% static 'css/theme.min.css' %}"
media="(prefers-color-scheme: dark)"
/>
<link
rel="stylesheet"
href="{% static 'css/custom.css' %}"