Update themes/modern-dark.css
This commit is contained in:
parent
03d5d95dd7
commit
46a3a8d8b3
1 changed files with 8 additions and 47 deletions
|
@ -4,12 +4,12 @@
|
|||
:root {
|
||||
--background-color: #121212;
|
||||
--surface-color: #1E1E1E;
|
||||
--primary-color: #BB86FC;
|
||||
--primary-color: #1E90FF; /* Updated to a more appropriate blue */
|
||||
--secondary-color: #03DAC6;
|
||||
--text-color: #E0E0E0;
|
||||
--text-muted-color: #B0B0B0;
|
||||
--border-color: #333333;
|
||||
--hover-color: #65AC2A;
|
||||
--hover-color: #1E90FF; /* Updated hover color */
|
||||
}
|
||||
|
||||
/* General settings */
|
||||
|
@ -36,6 +36,8 @@ a:hover {
|
|||
background-color: var(--surface-color) !important;
|
||||
border-color: var(--border-color) !important;
|
||||
color: var(--text-color) !important;
|
||||
position: relative;
|
||||
z-index: 1000; /* Ensure navbar is on top */
|
||||
}
|
||||
|
||||
.navbar-default .navbar-nav>li>a, .navbar-default .navbar-brand {
|
||||
|
@ -206,6 +208,9 @@ form.search.small h2 {
|
|||
|
||||
.searchresults {
|
||||
margin-top: 15px;
|
||||
padding: 10px;
|
||||
background-color: var(--surface-color);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.searchresults h4 a {
|
||||
|
@ -267,48 +272,4 @@ form.search.small h2 {
|
|||
}
|
||||
|
||||
.example {
|
||||
background-color: #D3D3D3;
|
||||
padding: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.hides:hover .hoverShow {
|
||||
background-color: var(--background-color);
|
||||
}
|
||||
|
||||
/* Log */
|
||||
body#ViewLog pre {
|
||||
background-color: var(--background-color);
|
||||
color: var(--text-color);
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
/* Forms */
|
||||
fieldset {
|
||||
background-color: var(--surface-color);
|
||||
color: var(--text-color);
|
||||
border: 0px solid var(--surface-color);
|
||||
border-radius: 3px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
legend {
|
||||
background-color: var(--primary-color);
|
||||
border-radius: 3px;
|
||||
text-align: left;
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
}
|
||||
|
||||
legend a:link, legend a:hover {
|
||||
color: white;
|
||||
}
|
||||
|
||||
form dt, dl.pairs dt {
|
||||
background-color: var(--surface-color);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
form dd, dl.pairs dd {
|
||||
background-color: var(--surface-color);
|
||||
}
|
||||
background-color: #D3D3D3
|
||||
|
|
Loading…
Reference in a new issue