1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-07 07:06:45 +02:00

CSS: Invert icons in dark mode

This commit is contained in:
Jakub Vrana
2025-03-25 21:47:25 +01:00
parent 26adca1003
commit a2077070af
2 changed files with 2 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
## Adminer dev
CSS: Invert icons in dark mode
## Adminer 5.1.0 (released 2025-03-24)
- Display collation at table structure if different from table

View File

@@ -30,7 +30,7 @@ input.required, input.maxlength { box-shadow: 1px 1px 1px red; }
.js .checkable .checked td, .js .checkable .checked th { background: #10395c; color: #67a4a5; }
.js .checkable .checked:hover td, .js .checkable .checked:hover th { background: #133553; }
.js .checkable .checked a { color: #67a4a5; }
.icon { background-color: #062642; }
.icon { filter: invert(1); background-color: #062642; }
.icon:hover { background-color: #d1394e; }
.footer { border-top-color: rgba(0, 34, 64, .7); border-image-source: linear-gradient(rgba(0, 34, 64, 0.2), #002240); }
.footer > div { background: #002240; }