diff options
author | Mostafa Ahangarha <ahangarha@riseup.net> | 2023-12-23 19:10:30 +0330 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2024-08-29 08:32:47 +0000 |
commit | 26f4b97b2bf872f65c15dc21a7410fe23f11d253 (patch) | |
tree | 2bec916159a9e3e80c2c1b611fec7810ef601cc2 /core/src/jquery/css/jquery-ui-fixes.scss | |
parent | 66fab3f2f6660e59afaa3ab896882247c265bd57 (diff) | |
download | nextcloud-server-26f4b97b2bf872f65c15dc21a7410fe23f11d253.tar.gz nextcloud-server-26f4b97b2bf872f65c15dc21a7410fe23f11d253.zip |
Fix: shorthand paddings and margins
Signed-off-by: Mostafa Ahangarha <ahangarha@riseup.net>
Diffstat (limited to 'core/src/jquery/css/jquery-ui-fixes.scss')
-rw-r--r-- | core/src/jquery/css/jquery-ui-fixes.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/jquery/css/jquery-ui-fixes.scss b/core/src/jquery/css/jquery-ui-fixes.scss index 5e9fe447147..a5fee7ea0d9 100644 --- a/core/src/jquery/css/jquery-ui-fixes.scss +++ b/core/src/jquery/css/jquery-ui-fixes.scss @@ -189,7 +189,8 @@ .ui-menu-item a { color: var(--color-text-lighter); display: block; - padding: 4px 4px 4px 14px; + padding: 4px; + padding-inline-start: 14px; &.ui-state-focus, &.ui-state-active { box-shadow: inset 4px 0 var(--color-primary-element); |