diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-02-28 13:09:11 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-03-07 13:17:37 +0100 |
commit | a7a36402241ef98a3e1403c85e32a2170c6b2ca0 (patch) | |
tree | 559364c0f1217be929fa8f760c114dc820e57f95 /core | |
parent | 3964616a9e2d2902f3e9be1f142938290eb34972 (diff) | |
download | nextcloud-server-a7a36402241ef98a3e1403c85e32a2170c6b2ca0.tar.gz nextcloud-server-a7a36402241ef98a3e1403c85e32a2170c6b2ca0.zip |
fixup! Updated popover rules to allow form inputs and added input submit for new File
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/css/apps.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index cbacec07252..1389938a325 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -888,10 +888,16 @@ kbd { > input:not([type=radio]):not([type=checkbox]):not([type=image]) { width: 150px; } + form { + display: flex; + flex: 1 1 auto; + } + /* Inputs inside popover supports text, submit & reset */ input { min-width: 34px; max-height: 34px; margin: 2px 0; + flex: 1 1 auto; ~ input { margin-left: 5px; } |