diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-16 17:51:02 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-16 17:56:31 +0100 |
commit | 2c766bd4b4c6dcf8e7c9a6dd9421edca0de57aba (patch) | |
tree | d84f472de5ff84502928fec8582be492c45a6faf /app/assets | |
parent | 01e43c3e5799b575a70798056945365ddf51f3ad (diff) |
Add user locale setting
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/forms.scss | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/app/assets/stylesheets/forms.scss b/app/assets/stylesheets/forms.scss index ad2e30b61..306f474d6 100644 --- a/app/assets/stylesheets/forms.scss +++ b/app/assets/stylesheets/forms.scss @@ -14,20 +14,23 @@ code { margin-bottom: 15px; } - .input.file { + .input.file, .input.select { padding: 15px 0; margin-bottom: 0; + display: flex; label { font-family: 'Roboto'; font-size: 16px; color: #fff; width: 100px; - display: inline-block; + display: block; + flex: 0 0 auto; + padding-top: 5px; } - input[type=file] { - width: 280px; + input[type=file], select { + flex: 1 1 auto; } } @@ -42,11 +45,14 @@ code { font-family: 'Roboto'; font-size: 14px; color: #9baec8; + display: block; } input[type=checkbox] { display: inline-block; - margin-bottom: -13px; + position: relative; + top: 3px; + margin-right: 8px; } } |