summaryrefslogtreecommitdiffstats
path: root/core/css
diff options
context:
space:
mode:
authorMarco Ambrosini <marcoambrosini@pm.me>2021-02-19 14:19:26 +0000
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-10-12 08:37:05 +0000
commit5e610b3125f25a83f03eb3c307ca6faf04c5bb0a (patch)
treeef0dedb4b88c25785b6df42af4ef55827d67d2d2 /core/css
parent2bf6270ef5563eb4492222db615705c3f8c175ee (diff)
downloadnextcloud-server-5e610b3125f25a83f03eb3c307ca6faf04c5bb0a.tar.gz
nextcloud-server-5e610b3125f25a83f03eb3c307ca6faf04c5bb0a.zip
Do not target vue buttons with server rules
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
Diffstat (limited to 'core/css')
-rw-r--r--core/css/inputs.scss16
1 files changed, 8 insertions, 8 deletions
diff --git a/core/css/inputs.scss b/core/css/inputs.scss
index 4f73696d264..f4a2a2bfe03 100644
--- a/core/css/inputs.scss
+++ b/core/css/inputs.scss
@@ -24,7 +24,7 @@ $default-height: 34px;
/* Simple selector to allow easy overriding */
select,
-button,
+button:not(.button-vue),
input,
textarea,
div[contenteditable=true],
@@ -43,7 +43,7 @@ div[contenteditable=false] {
/* Default global values */
div.select2-drop .select2-search input, // TODO: REMOVE WHEN DROPPING SELECT2
select,
-button, .button,
+button:not(.button-vue), .button:not(.button-vue),
input:not([type='range']),
textarea,
div[contenteditable=true],
@@ -168,8 +168,8 @@ input {
/* 'Click' inputs */
select,
-button, .button,
-input[type='button'],
+button:not(.button-vue), .button:not(.button-vue),
+input[type='button']:not(.button-vue),
input[type='submit'],
input[type='reset'] {
padding: 6px 16px;
@@ -184,7 +184,7 @@ input[type='reset'] {
}
}
select,
-button, .button {
+button:not(.button-vue), .button:not(.button-vue) {
* {
cursor: pointer;
}
@@ -197,8 +197,8 @@ button, .button {
}
/* Buttons */
-button, .button,
-input[type='button'],
+button:not(.button-vue), .button:not(.button-vue),
+input[type='button']:not(.button-vue),
input[type='submit'],
input[type='reset'] {
font-weight: bold;
@@ -215,7 +215,7 @@ input[type='reset'] {
color: #fff !important;
}
}
-button, .button {
+button:not(.button-vue), .button:not(.button-vue) {
> span {
/* icon position inside buttons */
&[class^='icon-'],