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:
authorRichard Steinmetz <richard@steinmetz.cloud>2021-12-07 16:36:05 +0300
committerGitHub <noreply@github.com>2021-12-07 16:36:05 +0300
commit3d8a61005154506891b1d49aebe6078701623544 (patch)
tree437ca87ebc977c5d0da5765ddea49558627ff46b /core
parent5ed89511e6fb57f0c2e93855824f2d9050261e41 (diff)
parent10056ff2048e7e2576bbd66a44dd25f6e103c95b (diff)
Merge pull request #30010 from nextcloud/backport/29905/stable22
[stable22] Only add the vue exeption to actual button elements
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 65b1d8c9caf..d6c6d20fa26 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-'],