diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-12-14 20:48:15 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-12-14 20:48:15 -0500 |
commit | f237cdc8594dd6d80a280edf6f0b92352498ad4a (patch) | |
tree | 695039f68fdf42719784824bb091f2f7437065e0 /assets/css/responsive.css | |
parent | 4e695a9fcf65c0a9bc7db0f6dfd850f46b695d84 (diff) |
Start to improve the ui for tablets
Diffstat (limited to 'assets/css/responsive.css')
-rw-r--r-- | assets/css/responsive.css | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/assets/css/responsive.css b/assets/css/responsive.css index 38a57593..ac767bbb 100644 --- a/assets/css/responsive.css +++ b/assets/css/responsive.css @@ -10,6 +10,10 @@ font-size: 0.85em; } + .sidebar-content { + margin-left: 255px; + } + .form-tab { max-width: 404px; } @@ -22,4 +26,39 @@ .form-inline-group input[type="submit"] { margin-top: 20px; } + + td > input[type="text"] { + max-width: 150px; + } +} + +@media only screen and (max-width: 1024px) and (orientation: landscape) { + + body { + font-size: 0.7em; + } + + header { + padding-bottom: 4px; + } + + .sidebar { + max-width: 220px; + } + + .sidebar-content { + margin-left: 225px; + } + + div.chosen-container { + font-size: 0.9em; + } + + input[type="number"], + input[type="date"], + input[type="email"], + input[type="password"], + input[type="text"] { + height: 18px; + } } |