View | Details | Raw Unified | Return to bug 25276
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/_mixins.scss (+1 lines)
Lines 1-5 Link Here
1
$color: #999999;
1
$color: #999999;
2
$links: #0076B2;
2
$links: #0076B2;
3
$links-hover: #005580;
3
$footer-height: 45px;
4
$footer-height: 45px;
4
5
5
$sci-link-color: #0076B6;
6
$sci-link-color: #0076B6;
(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-10 / +16 lines)
Lines 58-71 $footer-height: 45px; Link Here
58
}
58
}
59
59
60
a {
60
a {
61
    color: $links;
61
    &:link,
62
    &:visited {
63
        color: $links;
64
    }
62
65
63
    &.cancel {
66
    &:hover,
64
        padding-left: 1em;
67
    &:active {
68
        color: $links-hover;
65
    }
69
    }
66
70
67
    &:visited {
71
    &.cancel {
68
        color: $links;
72
        padding-left: 1em;
69
    }
73
    }
70
74
71
    &.title {
75
    &.title {
Lines 834-841 ul { Link Here
834
838
835
    .ui-state-default {
839
    .ui-state-default {
836
        a {
840
        a {
837
            color: #006699;
838
839
            &:link {
841
            &:link {
840
                color: #006699;
842
                color: #006699;
841
            }
843
            }
Lines 847-854 ul { Link Here
847
    }
849
    }
848
850
849
    .ui-state-hover a {
851
    .ui-state-hover a {
850
        color: #990033;
851
852
        &:link {
852
        &:link {
853
            color: #990033;
853
            color: #990033;
854
        }
854
        }
Lines 997-1006 ul { Link Here
997
    border: 1px solid #AAA;
997
    border: 1px solid #AAA;
998
    color: #222222;
998
    color: #222222;
999
999
1000
    a,
1000
    a:link,
1001
    a:visited {
1001
    a:visited {
1002
        color: $links;
1002
        color: $links;
1003
    }
1003
    }
1004
    a:hover,
1005
    a:active {
1006
        color: $links-hover;
1007
    }
1004
}
1008
}
1005
1009
1006
.ui-widget-header {
1010
.ui-widget-header {
Lines 2320-2327 input { Link Here
2320
2324
2321
button {
2325
button {
2322
    &.btn-link {
2326
    &.btn-link {
2327
        color: $links;
2323
        &:focus,
2328
        &:focus,
2324
        &:hover {
2329
        &:hover {
2330
            color: $links-hover;
2325
            text-decoration: none;
2331
            text-decoration: none;
2326
        }
2332
        }
2327
    }
2333
    }
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt (-2 / +1 lines)
Lines 696-702 Link Here
696
                                                        </form>
696
                                                        </form>
697
                                                    [% END %]
697
                                                    [% END %]
698
                                                    [% IF s.is_private AND s.can_be_managed( loggedinusernumber ) AND Koha.Preference('OpacAllowSharingPrivateLists') %]
698
                                                    [% IF s.is_private AND s.can_be_managed( loggedinusernumber ) AND Koha.Preference('OpacAllowSharingPrivateLists') %]
699
                                                        <a href="/cgi-bin/koha/opac-shareshelf.pl?op=invite&shelfnumber=[% s.shelfnumber | uri %]" class="sharelist"><i class="fa fa-share"></i> Share</a>
699
                                                        <a href="/cgi-bin/koha/opac-shareshelf.pl?op=invite&shelfnumber=[% s.shelfnumber | uri %]" class="sharelist btn btn-link"><i class="fa fa-share"></i> Share</a>
700
                                                    [% END %]
700
                                                    [% END %]
701
                                                    [% IF s.is_shared_with( loggedinusernumber ) %]
701
                                                    [% IF s.is_shared_with( loggedinusernumber ) %]
702
                                                        <form action="opac-shelves.pl" method="post" class="form-inline">
702
                                                        <form action="opac-shelves.pl" method="post" class="form-inline">
703
- 

Return to bug 25276