Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/css
diff options
context:
space:
mode:
authormarco <marcoambrosini@pm.me>2021-11-25 18:16:02 +0300
committermarco <marcoambrosini@pm.me>2021-11-25 18:16:02 +0300
commit67915dbc4360ce605dd1242cfd66326fd7862e66 (patch)
tree4b11e4f270d57e7b428d8bda17cd3759f92476c7 /core/css
parentd9d54ce782d34656d2e53cb7588fcad80182a1fe (diff)
Only add the vue exeption to actual button elements
Signed-off-by: marco <marcoambrosini@pm.me>
Diffstat (limited to 'core/css')
-rw-r--r--core/css/inputs.scss14
1 files changed, 7 insertions, 7 deletions
diff --git a/core/css/inputs.scss b/core/css/inputs.scss
index e13fa45e087..a0ac6fe68a4 100644
--- a/core/css/inputs.scss
+++ b/core/css/inputs.scss
@@ -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):not(.action-button), .button:not(.button-vue) {
+button:not(.button-vue):not(.action-button), .button {
> span {
/* icon position inside buttons */
&[class^='icon-'],