diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-09-19 18:13:20 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-09-21 14:00:39 +0200 |
commit | 8ac8773233ff65090bd92361df19630a98951bc3 (patch) | |
tree | fa4d3414dfbec331d458805dc19ae813fe2c9459 | |
parent | 3e6b93e68d16b0e7ffd5c39f9e12021a8378b588 (diff) | |
download | nextcloud-server-8ac8773233ff65090bd92361df19630a98951bc3.tar.gz nextcloud-server-8ac8773233ff65090bd92361df19630a98951bc3.zip |
damn you firefox default values
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r-- | core/css/apps.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index a17c4e03993..f2255aa53bb 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -436,7 +436,7 @@ kbd { } input[type='text'] { width: 100%; - flex: 1 1 0; + min-width: 0; /* firefox hack: override auto */ border-bottom-right-radius: 0; border-top-right-radius: 0; } @@ -444,6 +444,7 @@ kbd { input:not([type='text']) { width: 36px; height: 38px; + flex: 0 0 36px; &:not(:last-child) { border-radius: 0; } |