From 131510d86b148f51334d3bb595490badca764076 Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 8 Jan 2017 17:34:30 +0000 Subject: [PATCH] Add pagemenu classes This should arguably be in its own css, but this'll do for now --- templates/default/css/foundation.mods.css | 25 +++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/templates/default/css/foundation.mods.css b/templates/default/css/foundation.mods.css index 5a56526..c284338 100755 --- a/templates/default/css/foundation.mods.css +++ b/templates/default/css/foundation.mods.css @@ -30,3 +30,28 @@ li.image { .menu > li > a.nopadding { padding: 0; } + + +.pagemenu { + list-style-type: none; + border-bottom: 1px solid #bbb; + border-top: 1px solid #BBB; + margin: 0.5rem 0; + padding: 0.5rem; +} + +.pagemenu > li { + display: inline-block; + border-left: 1px dotted #ddd; + border-right: 1px dotted #ddd; +} + +.pagemenu > li > a { + width: 2rem; + padding: 0.75rem 0.75rem; +} + +.pagemenu > li.active > a { + background: #1779ba; + color: #fefefe !important; +} \ No newline at end of file