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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_variables.scss (+21 lines)
Lines 1-2 Link Here
1
$green-text-color: #006100;
1
$green-text-color: #006100;
2
$background-color-primary: #418940;
2
$background-color-primary: #418940;
3
4
// Copied from Bootstrap 5 without system-ui because of
5
// https://infinnie.github.io/blog/2017/systemui.html
6
$font-family-sans-serif:
7
  // Safari for macOS and iOS (San Francisco)
8
  -apple-system,
9
  // Windows
10
  "Segoe UI",
11
  // Android
12
  Roboto,
13
  // older macOS and iOS
14
  "Helvetica Neue",
15
  // Linux
16
  "Noto Sans",
17
  "Liberation Sans",
18
  // Basic web fallback
19
  Arial,
20
  // Sans serif fallback
21
  sans-serif,
22
  // Emoji fonts
23
  "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-2 / +1 lines)
Lines 485-491 main { Link Here
485
}
485
}
486
486
487
body {
487
body {
488
    font-family: "poppins", "Arial", "sans-serif";
488
    font-family: $font-family-sans-serif;
489
    font-size: 13px;
489
    font-size: 13px;
490
    line-height: 1.22;
490
    line-height: 1.22;
491
    padding: 0 0 4em;
491
    padding: 0 0 4em;
492
- 

Return to bug 30952