diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-07-13 04:10:10 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-07-13 05:48:59 +0200 |
commit | e062057cf6e6bb93478823cbb476e15cd428f6b1 (patch) | |
tree | 9dbea8e56c1e6fd28b527c19912ccc028793750d /core/css/guest.css | |
parent | 06b2952cee72f549959b321cdfaf922461d07fdc (diff) | |
download | nextcloud-server-e062057cf6e6bb93478823cbb476e15cd428f6b1.tar.gz nextcloud-server-e062057cf6e6bb93478823cbb476e15cd428f6b1.zip |
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/guest.css')
-rw-r--r-- | core/css/guest.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index c15596f3c3c..75ad1a787da 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -176,6 +176,7 @@ input:not([type='range']) { -webkit-appearance: none; } input[type='submit'], +input[type='submit'].icon-confirm, input[type='button'], button, .button, select { @@ -208,6 +209,7 @@ input.login { background-position: right 16px center; } input[type='submit'], +input[type='submit'].icon-confirm, input.updateButton, input.update-continue { padding: 10px 20px; /* larger log in and installation buttons */ |