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
diff options
context:
space:
mode:
authormarco <marcoambrosini@pm.me>2021-11-25 18:16:02 +0300
committerRichard Steinmetz <richard@steinmetz.cloud>2021-12-07 14:11:13 +0300
commit10056ff2048e7e2576bbd66a44dd25f6e103c95b (patch)
treedb237aa2804cf948101ce70398a788aaf2ea66aa /core
parent558b83e12c9c8625df3b39bc6eacb7dc9a56c40f (diff)
Only add the vue exeption to actual button elements
Signed-off-by: marco <marcoambrosini@pm.me> Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Diffstat (limited to 'core')
-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 3b52ee8e635..5c350b03c48 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), .button:not(.button-vue) {
+button:not(.button-vue), .button {
> span {
/* icon position inside buttons */
&[class^='icon-'],