diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-02-02 11:59:13 +0100 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-02-02 20:21:57 +0100 |
commit | 9ff6a2dab8e3f81efff2c7925ff2d77ceecd738f (patch) | |
tree | e0abb39c1c35a10af36385dcf53c46628334cf36 /settings/css | |
parent | 34e849d7024ed46568b7829782f602ae7d958abe (diff) | |
download | nextcloud-server-9ff6a2dab8e3f81efff2c7925ff2d77ceecd738f.tar.gz nextcloud-server-9ff6a2dab8e3f81efff2c7925ff2d77ceecd738f.zip |
Improve usability
- Trigger rename by doubleclick on token name
- Use action rename to open and close
- Line height stays the same
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.scss | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index f833913b7d6..3316c475b66 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -440,7 +440,14 @@ table.nostyle { } &.token-name { - padding: 10px 0; + padding: 10px 6px; + &.token-rename { + padding: 0; + } + input { + width: 100%; + margin: 0; + } } &.more { @@ -456,6 +463,9 @@ table.nostyle { } } } + tr > *:nth-child(2) { + padding-left: 6px; + } tr > *:nth-child(3) { text-align: right; } |