From 8a0cb727bcc071e77498e39ed94a2bcb071f8d85 Mon Sep 17 00:00:00 2001 From: Chloe Date: Tue, 19 Jan 2016 23:20:29 +0000 Subject: [PATCH] [SIGNED-OFF]Bug 15600: System preferences broken toolbar looks broken To test: 1-see without patch the toolbar looks transparent and "broken" 2-apply patch, with this the toolbar is solid and has new colours (including the hover) -see screenshots for examples 3-try scrolling on different tabs to the left eg "OPAC" and that the style continues with them Signed-off-by: Hector Castro --- koha-tmpl/intranet-tmpl/prog/en/css/preferences.css | 5 ++++- koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css | 16 ++++++++++++++-- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/preferences.css b/koha-tmpl/intranet-tmpl/prog/en/css/preferences.css index 7640a29..9e6f203 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/css/preferences.css +++ b/koha-tmpl/intranet-tmpl/prog/en/css/preferences.css @@ -70,9 +70,12 @@ h3.collapsed { #yui-main { margin-bottom:2em; } + #toolbar.floating { box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.5); - border-radius: 0; + /* border-radius: 0; */ + background-color: #f3f3f3; + color: #000; } .loading { diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css index 67d795b..66efa01 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css +++ b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css @@ -1673,11 +1673,23 @@ input[type=button]:disabled, input.submit:disabled, button.submit:disabled, a.submit:disabled { - color : #999; - border : 1px solid #C0C0C0; + color : #003399; + border : 1px solid #003399; background : #EEE none; } +input[type=submit]:hover, +input[type=reset]:hover, +input[type=button]:hover, +input.submit:hover, +button.submit:hover, +a.submit:hover { + color : #538200; + border : 1px solid #538200; + background : #EEE none; + cursor: pointer; +} + input[type=reset]:active, input[type=button]:active, input.submit:active, button.submit:active, a.submit:active { border : 1px inset #999999; } -- 1.7.10.4