@@ -, +, @@ bullet points - Go to Tools -> Patron lists - The sidebar menu should be styled with little arrows instead of the default HTML bullets. - Check the same on an Administration page, e.g. Administration -> Libraries. - Check that there hasn't been a regression on the checkout and patron detail views: - Check out to a patron who has one or more messages on their account, e.g. overdues, return claims, holds waiting, notes, messages, etc. - The display of these list items should be the same: An arrow bullet point instead of the default. --- koha-tmpl/intranet-tmpl/prog/css/src/_mixins.scss | 4 +++- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/css/src/_mixins.scss +++ a/koha-tmpl/intranet-tmpl/prog/css/src/_mixins.scss @@ -5,6 +5,8 @@ $table-border-color: #BCBCBC; $table-header-background: #E8E8E8; $table-odd-row: #F9F9F9; +$nav-menu-bullet: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='5' viewBox='0 0 25 25'%3E%3Cpath fill='%23999' d='M9.66.95h4.56l9.21 11.85-9.21 10.53H9.66l5.08-10.53z'/%3E%3C/svg%3E"); + @mixin default-button { background-image: linear-gradient(to bottom, #FFF 0, #E0E0E0 100%); border-color: #ADADAD #ADADAD #949494; @@ -29,4 +31,4 @@ $table-odd-row: #F9F9F9; background: #EEE none; border: 1px solid #C0C0C0; color: #999; -} +} --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -494,7 +494,7 @@ label, #navmenulist { li { border-bottom: 1px solid #EEE; - list-style-image: url("../img/arrow-bullet.gif"); + list-style: $nav-menu-bullet; padding: .2em 0; a { @@ -1758,7 +1758,7 @@ i { .circmessage { li { - list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='5' viewBox='0 0 25 25'%3E%3Cpath fill='%23999' d='M9.66.95h4.56l9.21 11.85-9.21 10.53H9.66l5.08-10.53z'/%3E%3C/svg%3E"); + list-style: $nav-menu-bullet; margin-bottom: .4em; } } --