mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2025-05-02 14:26:36 -04:00
Fix dark theme's input forms colors (#1237)
* Fix readonly and disabled input forms colors * Fix the fix
This commit is contained in:
parent
f09d6c3165
commit
07d2005428
2 changed files with 6 additions and 1 deletions
|
@ -44,5 +44,5 @@
|
||||||
|
|
||||||
<!-- CSS stylesheets -->
|
<!-- CSS stylesheets -->
|
||||||
<link href="/assets/css/style.css?v=5" rel="stylesheet">
|
<link href="/assets/css/style.css?v=5" rel="stylesheet">
|
||||||
<link id="dark-css" href="/assets/css/dark.css?v=1" rel="stylesheet" media="(prefers-color-scheme: dark)">
|
<link id="dark-css" href="/assets/css/dark.css?v=2" rel="stylesheet" media="(prefers-color-scheme: dark)">
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -111,6 +111,11 @@ img {
|
||||||
border-color: $dark-300;
|
border-color: $dark-300;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-control[readonly],
|
||||||
|
.form-control:disabled {
|
||||||
|
background: $dark-300;
|
||||||
|
}
|
||||||
|
|
||||||
.card,
|
.card,
|
||||||
.jumbotron,
|
.jumbotron,
|
||||||
.list-group-item {
|
.list-group-item {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue