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

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss (-4 / +38 lines)
Lines 203-208 caption { Link Here
203
    &:focus {
203
    &:focus {
204
        box-shadow: 0 0 0 2px lighten($base-theme-color, 10%);
204
        box-shadow: 0 0 0 2px lighten($base-theme-color, 10%);
205
    }
205
    }
206
207
    &.disabled,
208
    &:disabled {
209
        background-color: lighten($base-theme-color, 5%);
210
        border-color: lighten($base-theme-color, 5%);
211
        box-shadow: none;
212
        color: #fff;
213
        cursor: not-allowed;
214
        &:hover,
215
        &.hover {
216
            background-color: lighten($base-theme-color, 5%);
217
            border-color: lighten($base-theme-color, 5%);
218
            box-shadow: none;
219
            color: #fff;
220
            cursor: not-allowed;
221
        }
222
    }
223
224
    &:not(:disabled):not(.disabled):active:focus,&
225
    &:not(:disabled):not(.disabled).active:focus {
226
        box-shadow: 0 0 0 0.2rem lighten($base-theme-color, 10%);
227
    }
228
229
    &:not(:disabled):not(.disabled).active,
230
    &:not(:disabled):not(.disabled):active,
231
    &:not(:disabled):not(.disabled):focus,
232
    &:not(:disabled):not(.disabled).focus {
233
        background-color: lighten($base-theme-color, 5%);
234
        border-color: lighten($base-theme-color, 10%);
235
    }
236
}
237
238
.show > .btn-primary.dropdown-toggle {
239
    background-color: lighten($base-theme-color, 5%);
240
    border-color: lighten($base-theme-color, 10%);
241
    &:focus {
242
        box-shadow: 0 0 0 0.2rem lighten($base-theme-color, 10%);
243
    }
206
}
244
}
207
245
208
.btn-danger {
246
.btn-danger {
Lines 948-962 button { Link Here
948
.btn.disabled,
986
.btn.disabled,
949
.btn[disabled] {
987
.btn[disabled] {
950
    &:hover {
988
    &:hover {
951
        color: #333;
952
        filter: alpha(opacity=65);
953
        opacity: 0.65;
989
        opacity: 0.65;
954
    }
990
    }
955
    i {
991
    i {
956
        &.fa,
992
        &.fa,
957
        &.fa:hover {
993
        &.fa:hover {
958
            color: #333;
959
            filter: alpha(opacity=65);
960
            opacity: 0.65;
994
            opacity: 0.65;
961
        }
995
        }
962
    }
996
    }
(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-3 lines)
Lines 500-513 th { Link Here
500
        &.disabled,
500
        &.disabled,
501
        &[disabled] {
501
        &[disabled] {
502
            color: #333;
502
            color: #333;
503
            filter: alpha(opacity=65);
504
            opacity: 0.65;
503
            opacity: 0.65;
505
504
506
            &:hover {
505
            &:hover {
507
                i {
506
                i {
508
                    &.fa {
507
                    &.fa {
509
                        color: #333;
508
                        color: #333;
510
                        filter: alpha(opacity=65);
511
                        opacity: 0.65;
509
                        opacity: 0.65;
512
                    }
510
                    }
513
                }
511
                }
514
- 

Return to bug 30190