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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_fonts.scss (+35 lines)
Line 0 Link Here
1
@font-face {
2
    font-family: "poppins";
3
    font-weight: 400;
4
    font-style: italic;
5
    src: local("Poppins-Italic"),
6
         url("fonts/poppins-italic-webfont.woff2") format("woff2"),
7
         url("fonts/poppins-italic-webfont.woff") format("woff");
8
}
9
10
@font-face {
11
    font-family: "poppins";
12
    font-style: 700;
13
    font-weight: italic;
14
    src: local("Poppins-BoldItalic"),
15
         url("fonts/poppins-bolditalic-webfont.woff2") format("woff2"),
16
         url("fonts/poppins-bolditalic-webfont.woff") format("woff");
17
}
18
19
@font-face {
20
    font-family: "poppins";
21
    font-style: normal;
22
    font-weight: 400;
23
    src: local("Poppins-Regular"),
24
         url("fonts/poppins-regular-webfont.woff2") format("woff2"),
25
         url("fonts/poppins-regular-webfont.woff") format("woff");
26
}
27
28
@font-face {
29
    font-family: "poppins";
30
    font-style: normal;
31
    font-weight: 700;
32
    src: local("Poppins-Bold"),
33
         url("fonts/poppins-bold-webfont.woff2") format("woff2"),
34
         url("fonts/poppins-bold-webfont.woff") format("woff");
35
}
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_mixins.scss (-1 / +1 lines)
Lines 1-5 Link Here
1
$font-main: Arial, Verdana, Helvetica, sans-serif;
2
$font-monospace: "Courier New", Courier, monospace;
1
$font-monospace: "Courier New", Courier, monospace;
2
3
$language-footer-min-height: 20px;
3
$language-footer-min-height: 20px;
4
$table-border-color: #BCBCBC;
4
$table-border-color: #BCBCBC;
5
$table-header-background: #E8E8E8;
5
$table-header-background: #E8E8E8;
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-4 / +2 lines)
Lines 1-6 Link Here
1
@import "mixins";
1
@import "mixins";
2
@import "tables";
2
@import "tables";
3
@import "flatpickr";
3
@import "flatpickr";
4
@import "fonts";
4
5
5
::selection {
6
::selection {
6
    background: #538200;
7
    background: #538200;
Lines 274-280 main { Link Here
274
}
275
}
275
276
276
body {
277
body {
277
    font-family: $font-main;
278
    font-family: "poppins", "Arial", "sans-serif";
278
    font-size: 13px;
279
    font-size: 13px;
279
    line-height: 1.22;
280
    line-height: 1.22;
280
    padding: 0 0 4em;
281
    padding: 0 0 4em;
Lines 546-552 ul { Link Here
546
        padding-left: 0;
547
        padding-left: 0;
547
548
548
        button {
549
        button {
549
            font-family: $font-main;
550
            padding-bottom: 2px;
550
            padding-bottom: 2px;
551
        }
551
        }
552
552
Lines 3211-3217 nav { Link Here
3211
button,
3211
button,
3212
.btn {
3212
.btn {
3213
    border-color: #ADADAD #ADADAD #949494;
3213
    border-color: #ADADAD #ADADAD #949494;
3214
    font-family: $font-main;
3215
3214
3216
    &.btn-link {
3215
    &.btn-link {
3217
        border: 0;
3216
        border: 0;
3218
- 

Return to bug 30952