diff options
author | Mostafa Ahangarha <ahangarha@riseup.net> | 2023-12-23 19:46:25 +0330 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2024-08-29 08:32:47 +0000 |
commit | c5baf3d7ef2715def79ff7734d505c56bb20012c (patch) | |
tree | 842bdc35602ea21ec909137c05ba2765450a54b0 /core/css/styles.scss | |
parent | 26f4b97b2bf872f65c15dc21a7410fe23f11d253 (diff) | |
download | nextcloud-server-c5baf3d7ef2715def79ff7734d505c56bb20012c.tar.gz nextcloud-server-c5baf3d7ef2715def79ff7734d505c56bb20012c.zip |
Fix: float and clear
Fix other background-positions
Minor fix in link button icon position
Update header left and right to start and end
Signed-off-by: Mostafa Ahangarha <ahangarha@riseup.net>
Diffstat (limited to 'core/css/styles.scss')
-rw-r--r-- | core/css/styles.scss | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index 110b2c7f4c4..eb766b8844b 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -248,8 +248,15 @@ body { position: absolute; inset-inline-end: 1em; top: .8em; +} + +/* Cannot use inline-start and :dir to support Samsung Internet */ +body[dir='ltr'] #show, #dbpassword { float: right; } +body[dir='ltr'] #show, #dbpassword { + float: left; +} #show + label, #dbpassword + label { inset-inline-end: 21px; |