summaryrefslogtreecommitdiff
path: root/cyborg/bootswatch.less
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2012-10-24 10:14:32 -0400
committerThomas Park <thomas@thomaspark.me>2012-10-24 10:14:32 -0400
commit127e1f57e4799c52613d7c30d3d79467aa59ba32 (patch)
treed20276a6e8128406cc56daa3fc7b5b9bb9cd5770 /cyborg/bootswatch.less
parent5ed00c920330ea41f8c79bd2c7461d1f7890eafd (diff)
all: fixes pagination issues, closes #37
Diffstat (limited to 'cyborg/bootswatch.less')
-rwxr-xr-xcyborg/bootswatch.less19
1 files changed, 14 insertions, 5 deletions
diff --git a/cyborg/bootswatch.less b/cyborg/bootswatch.less
index 642bf0a4..c2988718 100755
--- a/cyborg/bootswatch.less
+++ b/cyborg/bootswatch.less
@@ -342,23 +342,32 @@ div.subnav {
}
.pagination {
+
ul {
.box-shadow(none);
}
- a {
+ ul > li > a,
+ ul > li > span {
border: 0;
font-size: 14px;
}
- a:hover, .active a {
+ ul > li > a:hover {
background-color: @blue;
color: @white;
}
- .disabled span,
- .disabled a,
- .disabled a:hover {
+ ul > .active > a,
+ ul > .active > span {
+ background-color: @blue;
+ color: @white;
+ }
+
+ ul > .disabled > a,
+ ul > .disabled > a:hover,
+ ul > .disabled > span,
+ ul > .disabled > span:hover {
background-color: rgba(0, 0, 0, 0.2);
}
}