diff options
author | Simon L <szaimen@e.mail.de> | 2023-07-20 15:26:22 +0200 |
---|---|---|
committer | Simon L <szaimen@e.mail.de> | 2023-07-20 15:30:05 +0200 |
commit | 8ed35de5f4183a2b15ec98a4dc25c696298c8400 (patch) | |
tree | 0536de7cbc72146a2db973a54c605aa61e7d7279 /core/css | |
parent | c4893e9641b57386a9999da4dba5f5d36186d9d5 (diff) | |
download | nextcloud-server-8ed35de5f4183a2b15ec98a4dc25c696298c8400.tar.gz nextcloud-server-8ed35de5f4183a2b15ec98a4dc25c696298c8400.zip |
add missing places and address review.
Signed-off-by: Simon L <szaimen@e.mail.de>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/guest.scss | 4 | ||||
-rw-r--r-- | core/css/variables.scss | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/core/css/guest.scss b/core/css/guest.scss index e845e448a4f..50a3960ead9 100644 --- a/core/css/guest.scss +++ b/core/css/guest.scss @@ -24,7 +24,7 @@ body { /* bring the default font size up to 14px */ font-size: .875em; line-height: 1.6em; - font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-family: system-ui, -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Cantarell, Ubuntu, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; color: var(--color-text); text-align: center; /* As guest, there is no color-background-plain */ @@ -214,7 +214,7 @@ form #datadirField legend { input, textarea, select, button, div[contenteditable=true] { - font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-family: system-ui, -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Cantarell, Ubuntu, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } input, input:not([type='range']), diff --git a/core/css/variables.scss b/core/css/variables.scss index 164a69a6857..625ba011322 100644 --- a/core/css/variables.scss +++ b/core/css/variables.scss @@ -95,7 +95,7 @@ $border-radius-large: 10px !default; // Pill-style button, value is large so big buttons also have correct roundness $border-radius-pill: 100px !default; -$font-face: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Cantarell, Ubuntu, 'Helvetica Neue', Arial, sans-serif, 'Noto Color Emoji', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default; +$font-face: system-ui, -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Cantarell, Ubuntu, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default; $default-font-size: 15px; $default-line-height: 24px; |