include app/assets/less/vendor/* in git.
This commit is contained in:
parent
ef737fd406
commit
4faa26c25e
78 changed files with 10918 additions and 0 deletions
24
app/assets/less/vendor/bootstrap/mixins/pagination.less
vendored
Normal file
24
app/assets/less/vendor/bootstrap/mixins/pagination.less
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
// Pagination
|
||||
|
||||
.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
|
||||
> li {
|
||||
> a,
|
||||
> span {
|
||||
padding: @padding-vertical @padding-horizontal;
|
||||
font-size: @font-size;
|
||||
line-height: @line-height;
|
||||
}
|
||||
&:first-child {
|
||||
> a,
|
||||
> span {
|
||||
.border-left-radius(@border-radius);
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
> a,
|
||||
> span {
|
||||
.border-right-radius(@border-radius);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in a new issue