@@ -, +, @@ the cart (OPAC) - Perform a search in the OPAC which will return multiple results. - Click the "Add to cart" link next to multiple results. - The "remove" link which appears should be the correct red color whether the table row background is white or grey. --- .../opac-tmpl/bootstrap/css/src/opac.scss | 22 +++++++++++++------ 1 file changed, 15 insertions(+), 7 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -60,17 +60,21 @@ } } +@mixin cartRemove { + color: #900; + font-size: 90%; + padding-left: 0; + + &:hover { + color: #C60000; + } +} + a { &:link, &:visited { &.cartRemove { - color: #900; - font-size: 90%; - padding-left: 0; - - &:hover { - color: #C60000; - } + @include cartRemove(); } } @@ -657,6 +661,10 @@ th { &.btn-link { color: $links; + + &.cartRemove { + @include cartRemove(); + } } } } --