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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_mixins.scss (-5 / +13 lines)
Lines 8-18 $table-odd-row: #f3f4f4; Link Here
8
$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");
8
$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");
9
9
10
@mixin default-button {
10
@mixin default-button {
11
    background-color: transparent;
11
    background-color: #fff;
12
    border-color: #ADADAD #ADADAD #949494;
12
    border: 1px solid #ccc;
13
    border-radius: 4px;
13
    border-radius: 4px;
14
    border: 1px solid #696969;
14
    color: #333;
15
    color: #000;
16
    display: inline-block;
15
    display: inline-block;
17
    font-size: inherit;
16
    font-size: inherit;
18
    line-height: 1.42857143;
17
    line-height: 1.42857143;
Lines 21-28 $nav-menu-bullet: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/s Link Here
21
    vertical-align: middle;
20
    vertical-align: middle;
22
    white-space: nowrap;
21
    white-space: nowrap;
23
22
23
    &:hover {
24
        background-color: #e0e0e0;
25
    }
26
24
    &:active {
27
    &:active {
25
        box-shadow: inset 0 0 2px #2222227F;
28
        box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
29
    }
30
31
    &:active:hover {
32
        background-color: #d4d4d4;
33
        border-color: #8c8c8c;
26
    }
34
    }
27
}
35
}
28
36
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss (-18 lines)
Lines 174-197 td { Link Here
174
        white-space: nowrap;
174
        white-space: nowrap;
175
    }
175
    }
176
176
177
    button, a, input[type="button"]{
178
        &.btn-default{
179
            color: $green-text-color;
180
            padding: .3em;
181
            border: none;
182
            background-color: transparent;
183
            border: none;
184
            box-shadow: none;
185
            font-size: 100%;
186
187
            &:hover, &:active, &:focus, &:active:hover, &:active:focus{
188
                background-color: transparent;
189
                color: $green-text-color;
190
                text-decoration: underline;
191
            }
192
        }
193
    }
194
195
    &.borderless {
177
    &.borderless {
196
        border: 0 none;
178
        border: 0 none;
197
        border-collapse: separate;
179
        border-collapse: separate;
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-24 lines)
Lines 451-461 div { Link Here
451
button {
451
button {
452
    @include default-button;
452
    @include default-button;
453
453
454
    &:active,
455
    &:hover {
456
        border: 1px inset #999999;
457
    }
458
459
    &:disabled {
454
    &:disabled {
460
        @include disabled-button;
455
        @include disabled-button;
461
    }
456
    }
Lines 1959-1982 li { Link Here
1959
    }
1954
    }
1960
1955
1961
    td {
1956
    td {
1962
        button, a {
1963
            &.btn-default {
1964
                color: $green-text-color;
1965
                padding: .3em;
1966
                border: 0;
1967
                background-color: transparent;
1968
                border: 0;
1969
                box-shadow: none;
1970
                font-size: 100%;
1971
1972
                &:hover, &:active, &:focus, &:active:hover, &:active:focus {
1973
                    background-color: transparent;
1974
                    color: $green-text-color;
1975
                    text-decoration: underline;
1976
                }
1977
            }
1978
        }
1979
1980
        ul {
1957
        ul {
1981
            li {
1958
            li {
1982
                clear: left;
1959
                clear: left;
1983
- 

Return to bug 30952