diff options
Diffstat (limited to 'core/css/styles.scss')
-rw-r--r-- | core/css/styles.scss | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index f2acca38e1e..667ca0dc2be 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -754,6 +754,29 @@ label.infield { /* Log in and install button */ +#body-login #submit-wrapper { + position: relative; /* Make the wrapper the containing block of its + absolutely positioned descendant icons */ + + .icon-confirm-white { + position: absolute; + top: 23px; + right: 23px; + } + .icon-loading-small { + position: absolute; + top: 22px; + right: 24px; + } + + #submit-icon { + pointer-events: none; /* The submit icon is positioned on the submit + button. From the user point of view the icon is + part of the button, so the clicks on the icon + have to be applied to the button instead. */ + } +} + #body-login input { font-size: 20px; margin: 5px; |