Skip to content

Instantly share code, notes, and snippets.

@iurevych
Created November 23, 2013 15:44
Show Gist options
  • Save iurevych/7616019 to your computer and use it in GitHub Desktop.
Save iurevych/7616019 to your computer and use it in GitHub Desktop.
.swap-pagination-color(@color, @hover, @active) {
ul {
background-color: @color;
li {
&.previous {
> a {
border-right-color: mix(@color, white, 66%);
}
}
> a, > span {
border-left-color: mix(@color, white, 66%);
&:hover, &:focus {
background-color: @hover;
}
&:active {
background-color: @active;
}
}
&.active {
> a, > span {
background-color: @active;
}
}
&.pagination-dropdown.dropup {
.dropdown-arrow {
border-top-color: @color;
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment