@@ -, +, @@ - Buttons on add circulation message modal - Dropdowns has top and bottom margin 4px instead of 3px - btn-link class (for example in toolbar on advanced search pages) - Delete circ message is btn-link - Add new circ message is btn-link - Confirm that all changes are as described above and that they make sense --- koha-tmpl/intranet-tmpl/prog/css/staff-global.css | 9 +++++++++ koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc | 4 ++-- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 4 ++-- 3 files changed, 13 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/css/staff-global.css +++ a/koha-tmpl/intranet-tmpl/prog/css/staff-global.css @@ -2404,6 +2404,11 @@ a.btn:visited{ color: #333333; } +a.btn-link:link, +a.btn-link:visited { + color: #004d99; +} + a.btn-link:hover { color : #538200; } @@ -2420,6 +2425,10 @@ a.dropdown-toggle { white-space: nowrap; } +.dropdown-menu > li > a { + padding: 4px 20px; +} + .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { text-decoration: none; --- a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc @@ -248,8 +248,8 @@ function searchToHold(){ --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -865,12 +865,12 @@ No patron matched [% message | html %] "[% message.message %]" [% IF message.branchcode == branch OR Koha.Preference('AllowAllMessageDeletion') %] - Delete + Delete [% END %] [% END %] - Add a new message + Add a new message --