diff options
| author | 2022-04-18 22:05:12 +0200 | |
|---|---|---|
| committer | 2022-04-18 22:05:12 +0200 | |
| commit | c9d0d20ef66d546d1a1e24380b1363d2471986e9 (patch) | |
| tree | a680ba511de00bd53ee25b0f4ad21617252d2ef8 /p/themes/Mapco/mapco.css | |
| parent | 34f7558cfb7bbfa3b6e82a6f5275fb1a0da19bb7 (diff) | |
Fix: article footer + improve: labeling (#4306)
* icon = open dropdown
* label icon
* added: link to edit labels
* dropdown-menu label: padding and hover
* improve input row
* CSS
* Update main.js
* Update main.js
* Update main.js
* fix
* make addItem button selectable via tabbing
* Fixed theme: Ansum
* tags menu: use the new icon
* Fixed theme: Flat design
make the manage button visible
* fixed Theme: Mapco
* Fixed theme: Pafat
Diffstat (limited to 'p/themes/Mapco/mapco.css')
| -rw-r--r-- | p/themes/Mapco/mapco.css | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/p/themes/Mapco/mapco.css b/p/themes/Mapco/mapco.css index b8a2281ba..b1497b777 100644 --- a/p/themes/Mapco/mapco.css +++ b/p/themes/Mapco/mapco.css @@ -238,7 +238,7 @@ form th { right: 18px; } .dropdown-menu .dropdown-header { - margin: 1.75rem 0 0.5rem 2rem; + margin: 1rem 0.5rem 1rem 1rem; font-weight: bold; text-align: left; color: #5b6871; @@ -254,11 +254,11 @@ form th { font-size: 1rem; line-height: 2.5em; } -.dropdown-menu .item:hover { +.dropdown-menu .item:not(.addItem):hover { background: #36c; color: #fff; } -.dropdown-menu .item:hover a, .dropdown-menu .item:hover button { +.dropdown-menu .item:not(.addItem):hover a, .dropdown-menu .item:not(.addItem):hover button, .dropdown-menu .item:not(.addItem):hover label { text-decoration: none; color: #fff; } @@ -888,6 +888,21 @@ form th { text-transform: uppercase; } +.btn { + border-left-width: 0; + padding: 0.5rem 1rem; + background-color: #eff0f2; + background-position: center; + background-repeat: no-repeat; + transition: all 0.15s ease-in-out; +} +.btn:hover { + background-color: #d5d8db; +} +.btn.active { + background-color: #36c; +} + /*=== Index menu */ .nav_menu { text-align: center; |
