Skip to content

Commit

Permalink
yeti: set pagination first-child and last-child to white, fixes thoma…
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspark committed Nov 29, 2013
1 parent a2586a4 commit ad5aed8
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 7 deletions.
13 changes: 10 additions & 3 deletions yeti/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -7738,15 +7738,22 @@ label,
}

.pagination > li > a,
.pagination > li > span {
margin-left: 4px;
color: #999999;
}

.pagination > .active > a,
.pagination > .active > span {
color: #fff;
}

.pagination > li > a,
.pagination > li:first-child > a,
.pagination > li:last-child > a,
.pagination > li > span,
.pagination > li > span,
.pagination > li:first-child > span,
.pagination > li:last-child > span {
margin-left: 4px;
color: #999999;
border-radius: 3px;
}

Expand Down
2 changes: 1 addition & 1 deletion yeti/bootstrap.min.css

Large diffs are not rendered by default.

18 changes: 15 additions & 3 deletions yeti/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -286,15 +286,27 @@ label,
font-weight: 300;
color: @gray-light;

> li,
> li {
> a,
> span {
margin-left: 4px;
color: @gray-light;
}
}

> .active {
> a,
> span {
color: #fff;
}
}

> li,
> li:first-child,
> li:last-child {
> a,
> span {
margin-left: 4px;
border-radius: 3px;
color: @gray-light;
}
}

Expand Down

0 comments on commit ad5aed8

Please sign in to comment.