diff options
author | Marco Ambrosini <marcoambrosini@pm.me> | 2021-03-05 08:16:20 +0000 |
---|---|---|
committer | Marco Ambrosini <marcoambrosini@pm.me> | 2021-03-05 08:16:20 +0000 |
commit | 8691084f17c38e1267d46de8d9942b8443c692b5 (patch) | |
tree | ae0b1fb35795d7ff27d6513f50b26603e777eb0a /core/css | |
parent | ff54a0481bb939d663ee962714ac0cd722dde996 (diff) | |
download | nextcloud-server-8691084f17c38e1267d46de8d9942b8443c692b5.tar.gz nextcloud-server-8691084f17c38e1267d46de8d9942b8443c692b5.zip |
Do not target vue buttons with server rules
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/inputs.scss | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/core/css/inputs.scss b/core/css/inputs.scss index 4f73696d264..019c7cffcd4 100644 --- a/core/css/inputs.scss +++ b/core/css/inputs.scss @@ -24,7 +24,7 @@ $default-height: 34px; /* Simple selector to allow easy overriding */ select, -button, +button:not(.vue), input, textarea, div[contenteditable=true], @@ -43,7 +43,7 @@ div[contenteditable=false] { /* Default global values */ div.select2-drop .select2-search input, // TODO: REMOVE WHEN DROPPING SELECT2 select, -button, .button, +button:not(.vue), .button:not(.vue), input:not([type='range']), textarea, div[contenteditable=true], @@ -168,8 +168,8 @@ input { /* 'Click' inputs */ select, -button, .button, -input[type='button'], +button:not(.vue), .button:not(.vue), +input[type='button']:not(.vue), input[type='submit'], input[type='reset'] { padding: 6px 16px; @@ -184,7 +184,7 @@ input[type='reset'] { } } select, -button, .button { +button:not(.vue), .button:not(.vue) { * { cursor: pointer; } @@ -197,8 +197,8 @@ button, .button { } /* Buttons */ -button, .button, -input[type='button'], +button:not(.vue), .button:not(.vue), +input[type='button']:not(.vue), input[type='submit'], input[type='reset'] { font-weight: bold; @@ -215,7 +215,7 @@ input[type='reset'] { color: #fff !important; } } -button, .button { +button:not(.vue), .button:not(.vue) { > span { /* icon position inside buttons */ &[class^='icon-'], |