summaryrefslogtreecommitdiffstats
path: root/apps/theming/css
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2018-05-11 15:57:32 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2018-05-11 15:57:32 +0200
commit84ab102146f4a9443ef1b6382f049eac99b85c6b (patch)
tree84cd381ab267f0ccdea30766eb888be0d7749b93 /apps/theming/css
parent850e2256f3dee5f94b407ea6b8d85fb84d170eb5 (diff)
downloadnextcloud-server-84ab102146f4a9443ef1b6382f049eac99b85c6b.tar.gz
nextcloud-server-84ab102146f4a9443ef1b6382f049eac99b85c6b.zip
fix undo for url-typed inputs
and minor adjustments Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/theming/css')
-rw-r--r--apps/theming/css/settings-admin.scss6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/theming/css/settings-admin.scss b/apps/theming/css/settings-admin.scss
index 00d1cb96fc6..7753540ccd2 100644
--- a/apps/theming/css/settings-admin.scss
+++ b/apps/theming/css/settings-admin.scss
@@ -46,7 +46,11 @@
input[type='text']:hover + .theme-undo,
input[type='text'] + .theme-undo:hover,
input[type='text']:focus + .theme-undo,
- input[type='text']:active + .theme-undo {
+ input[type='text']:active + .theme-undo,
+ input[type='url']:hover + .theme-undo,
+ input[type='url'] + .theme-undo:hover,
+ input[type='url']:focus + .theme-undo,
+ input[type='url']:active + .theme-undo{
visibility: visible;
}