mirror of
https://github.com/nextcloud/server.git
synced 2026-05-21 17:45:40 -04:00
Only add the vue exeption to actual button elements
Signed-off-by: marco <marcoambrosini@pm.me> Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
This commit is contained in:
parent
558b83e12c
commit
10056ff204
1 changed files with 7 additions and 7 deletions
|
|
@ -43,7 +43,7 @@ div[contenteditable=false] {
|
|||
/* Default global values */
|
||||
div.select2-drop .select2-search input, // TODO: REMOVE WHEN DROPPING SELECT2
|
||||
select,
|
||||
button:not(.button-vue), .button:not(.button-vue),
|
||||
button:not(.button-vue), .button,
|
||||
input:not([type='range']),
|
||||
textarea,
|
||||
div[contenteditable=true],
|
||||
|
|
@ -168,8 +168,8 @@ input {
|
|||
|
||||
/* 'Click' inputs */
|
||||
select,
|
||||
button:not(.button-vue), .button:not(.button-vue),
|
||||
input[type='button']:not(.button-vue),
|
||||
button:not(.button-vue), .button,
|
||||
input[type='button'],
|
||||
input[type='submit'],
|
||||
input[type='reset'] {
|
||||
padding: 6px 16px;
|
||||
|
|
@ -184,7 +184,7 @@ input[type='reset'] {
|
|||
}
|
||||
}
|
||||
select,
|
||||
button:not(.button-vue), .button:not(.button-vue) {
|
||||
button:not(.button-vue), .button {
|
||||
* {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
|
@ -197,8 +197,8 @@ button:not(.button-vue), .button:not(.button-vue) {
|
|||
}
|
||||
|
||||
/* Buttons */
|
||||
button:not(.button-vue), .button:not(.button-vue),
|
||||
input[type='button']:not(.button-vue),
|
||||
button:not(.button-vue), .button,
|
||||
input[type='button'],
|
||||
input[type='submit'],
|
||||
input[type='reset'] {
|
||||
font-weight: bold;
|
||||
|
|
@ -215,7 +215,7 @@ input[type='reset'] {
|
|||
color: #fff !important;
|
||||
}
|
||||
}
|
||||
button:not(.button-vue), .button:not(.button-vue) {
|
||||
button:not(.button-vue), .button {
|
||||
> span {
|
||||
/* icon position inside buttons */
|
||||
&[class^='icon-'],
|
||||
|
|
|
|||
Loading…
Reference in a new issue