diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-03-01 21:44:01 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-03-01 21:44:01 +0100 |
commit | 31c7fcd0041bd867c7ca326588ebfe9b89f0cb2a (patch) | |
tree | 0df48583411d8bd8a46f95b959bb3bbac46bae95 /core | |
parent | d70a35b382df4dc62e8736164079dcf9d8e4b668 (diff) | |
download | nextcloud-server-31c7fcd0041bd867c7ca326588ebfe9b89f0cb2a.tar.gz nextcloud-server-31c7fcd0041bd867c7ca326588ebfe9b89f0cb2a.zip |
Fixed date/time picker on IE11
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.scss | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index 4b02041976b..97f17b13aef 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -1030,6 +1030,8 @@ code { font-weight: normal; color: nc-lighten($color-main-text, 33%); opacity: .8; + width: 26px; + padding: 2px; } tr:hover { background-color: inherit; @@ -1137,10 +1139,11 @@ code { flex-wrap: nowrap; justify-content: space-between; td { - display: block; - flex: 1 1; + flex: 1 1 auto; margin: 0; padding: 2px; + height: 26px; + width: 26px; display: flex; align-items: center; justify-content: center; |