diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-02-14 17:44:25 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-02-14 17:44:25 -0500 |
commit | 337a5fd6abef53b251dad0af6b7b8d3e73044389 (patch) | |
tree | 960a995b1c6d5d33b0ec3150fd451bbeef311ee8 /assets/css/src/views.css | |
parent | 07e3f51edb76f1c20c7c7f222b356cd0a26fca42 (diff) |
Improve filter box design
Diffstat (limited to 'assets/css/src/views.css')
-rw-r--r-- | assets/css/src/views.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/assets/css/src/views.css b/assets/css/src/views.css new file mode 100644 index 00000000..191b30c6 --- /dev/null +++ b/assets/css/src/views.css @@ -0,0 +1,34 @@ +.views { + display: inline-block; + margin-left: 10px; + margin-right: 10px; + font-size: 0.9em; +} + +.views li { + border: 1px solid #eee; + padding-left: 8px; + padding-right: 8px; + padding-top: 5px; + padding-bottom: 5px; + display: inline; +} + +.menu-inline li.active a, +.views li.active a { + font-weight: bold; + color: #000; + text-decoration: none; +} + +.views li:first-child { + border-right: none; + border-top-left-radius: 5px; + border-bottom-left-radius: 5px; +} + +.views li:last-child { + border-left: none; + border-top-right-radius: 5px; + border-bottom-right-radius: 5px; +} |