diff options
author | Marco <marcoambrosini@pm.me> | 2024-06-14 09:20:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-14 09:20:23 +0200 |
commit | 54f3dfe5e0426def6cdc35c664f9a37631d2356b (patch) | |
tree | 49e0e8ae2966f66b6b2483f442b9563c7de56652 /apps/theming | |
parent | 24e4f80c610c32b4e660530f6553874df748af13 (diff) | |
parent | 1337f4a7d59059d8e91c774b1dbdaaf98d0aa46f (diff) | |
download | nextcloud-server-54f3dfe5e0426def6cdc35c664f9a37631d2356b.tar.gz nextcloud-server-54f3dfe5e0426def6cdc35c664f9a37631d2356b.zip |
Merge pull request #45819 from nextcloud/feat/reduce-border-radius-element
Feat: reduce border radius element to 8 px
Diffstat (limited to 'apps/theming')
-rw-r--r-- | apps/theming/css/default.css | 2 | ||||
-rw-r--r-- | apps/theming/lib/Themes/DefaultTheme.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/css/default.css b/apps/theming/css/default.css index aeace97a32d..6457a8d7659 100644 --- a/apps/theming/css/default.css +++ b/apps/theming/css/default.css @@ -58,7 +58,7 @@ --border-radius-large: 10px; --border-radius-rounded: 28px; /* Border radius of interactive elements such as buttons, input, navigation and list items. Available since Nextcloud 30. */ - --border-radius-element: 10px; + --border-radius-element: 8px; --border-radius-pill: 100px; --default-clickable-area: 44px; --default-line-height: 24px; diff --git a/apps/theming/lib/Themes/DefaultTheme.php b/apps/theming/lib/Themes/DefaultTheme.php index fa5dcb98c12..a89ac685876 100644 --- a/apps/theming/lib/Themes/DefaultTheme.php +++ b/apps/theming/lib/Themes/DefaultTheme.php @@ -168,7 +168,7 @@ class DefaultTheme implements ITheme { '--border-radius' => '3px', '--border-radius-large' => '10px', '--border-radius-rounded' => '28px', - '--border-radius-element' => '10px', + '--border-radius-element' => '8px', // pill-style button, value is large so big buttons also have correct roundness '--border-radius-pill' => '100px', |