summaryrefslogtreecommitdiff
path: root/amelia/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 /amelia/bootswatch.less
parent5ed00c920330ea41f8c79bd2c7461d1f7890eafd (diff)
all: fixes pagination issues, closes #37
Diffstat (limited to 'amelia/bootswatch.less')
-rwxr-xr-xamelia/bootswatch.less28
1 files changed, 17 insertions, 11 deletions
diff --git a/amelia/bootswatch.less b/amelia/bootswatch.less
index 500e52bc..c5c7b87e 100755
--- a/amelia/bootswatch.less
+++ b/amelia/bootswatch.less
@@ -323,26 +323,32 @@ div.subnav {
ul {
background-color: @paginationBackground;
background-image: none;
+ .border-radius(0);
}
- .disabled a, .disabled a:hover {
- color: @textColor;
- }
-
- li a:hover {
+ ul > li > a:hover {
background-color: rgba(255, 255, 255, 0.4);
color: @linkColor;
}
- .active a, .active a:hover {
- background-color: rgba(255, 255, 255, 0.4);
+ ul > li:first-child > a,
+ ul > li:last-child > a {
+ .border-radius(0);
+ }
+
+ ul > .disabled > a,
+ ul > .disabled > a:hover,
+ ul > .disabled > span,
+ ul > .disabled > span:hover {
color: @textColor;
}
- ul,
- li:first-child a,
- li:last-child a {
- .border-radius(0);
+ ul > .active > a,
+ ul > .active > a:hover,
+ ul > .active > span,
+ ul > .active > span:hover {
+ background-color: rgba(255, 255, 255, 0.4);
+ color: @textColor;
}
}