From 9f8cd518756522c2f71061e9e80e09fa4aaa1ca9 Mon Sep 17 00:00:00 2001 From: David Evans Date: Sun, 19 Jan 2020 23:14:07 +0000 Subject: [PATCH] Fix document selector styling in Safari --- web/styles/editor.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/web/styles/editor.css b/web/styles/editor.css index f31ea67..c040bb4 100644 --- a/web/styles/editor.css +++ b/web/styles/editor.css @@ -537,6 +537,9 @@ svg a:active, svg a:hover { height: 200px; margin: 10px; user-select: none; + text-align: left; + vertical-align: top; + text-decoration: none; } .pick-document-item > div { @@ -562,12 +565,16 @@ svg a:active, svg a:hover { } .pick-document-item:hover > div { - border-color: #FFCC00; + border-color: #FFCC00 !important; background: #FFFFDD; transform: scale(1.1); z-index: 10; } +.pick-document-item.new { + text-align: center; +} + .pick-document-item.new > div:before { content: '+'; line-height: 170px;