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:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2021-12-01 13:38:57 +0300
committerGitHub <noreply@github.com>2021-12-01 13:38:57 +0300
commit17c901bde06c5126da0c0151dafbe926e60e3261 (patch)
tree11a5168d1b2898c0fa9cb380ed2723b364320b84 /core/css
parentdcec9fef736a2424dd08b5bf6feb416203eb4264 (diff)
parent67915dbc4360ce605dd1242cfd66326fd7862e66 (diff)
Merge pull request #29905 from nextcloud/bugfix/fix-some-buttons
Only add the vue exeption to actual button elements
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-'],