mirror of
https://github.com/nextcloud/server.git
synced 2026-02-19 02:38:40 -05:00
Merge pull request #45247 from nextcloud/add-border-width
Add variable for inputs border width
This commit is contained in:
commit
e5d25dcd52
2 changed files with 6 additions and 0 deletions
|
|
@ -49,6 +49,9 @@
|
|||
--default-font-size: 15px;
|
||||
--animation-quick: 100ms;
|
||||
--animation-slow: 300ms;
|
||||
/** Border width for input elements such as text fields and selects */
|
||||
--border-width-input: 1px;
|
||||
--border-width-input-focused: 2px;
|
||||
--border-radius: 3px;
|
||||
--border-radius-large: 10px;
|
||||
--border-radius-rounded: 28px;
|
||||
|
|
|
|||
|
|
@ -180,6 +180,9 @@ class DefaultTheme implements ITheme {
|
|||
'--animation-slow' => '300ms',
|
||||
|
||||
// Default variables --------------------------------------------
|
||||
// Border width for input elements such as text fields and selects
|
||||
'--border-width-input' => '1px',
|
||||
'--border-width-input-focused' => '2px',
|
||||
'--border-radius' => '3px',
|
||||
'--border-radius-large' => '10px',
|
||||
'--border-radius-rounded' => '28px',
|
||||
|
|
|
|||
Loading…
Reference in a new issue