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
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2018-07-13 05:10:10 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2018-07-13 06:48:59 +0300
commite062057cf6e6bb93478823cbb476e15cd428f6b1 (patch)
tree9dbea8e56c1e6fd28b527c19912ccc028793750d /core/css/publicshareauth.css
parent06b2952cee72f549959b321cdfaf922461d07fdc (diff)
Override server SCSS rules for confirm button in guest pages
As the server defines some SCSS rules using "XXX + .icon-confirm" the selector is more specific than just "input" used in "guest.css", so the server SCSS rules took precedence over the guest CSS rules. Now a more specific selector was added to the guest and public share auth rules; as the guest and public share auth rules are loaded after the server ones now the guest rules for input elements take precedence over the server ones. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'core/css/publicshareauth.css')
-rw-r--r--core/css/publicshareauth.css3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/css/publicshareauth.css b/core/css/publicshareauth.css
index 7f83e0b41e7..2f7622ea221 100644
--- a/core/css/publicshareauth.css
+++ b/core/css/publicshareauth.css
@@ -14,7 +14,8 @@ form fieldset {
min-width: 0; /* FF hack for to override default value */
}
-input[type='submit'] {
+input[type='submit'],
+input[type='submit'].icon-confirm {
width: 45px;
height: 45px;
margin-left: 0 !important;