roots-actions.php: added responsive css framework file roots-options.php: changed default css classes for bootstrap v2.0.0 roots-scripts.php: updated less to v1.2.1, changed the load order and added new scripts for bootstrap v2.0.0 Added all of the new css, js, less asset files and updated all of the previous ones for bootstrap v2.0.0
31 lines
453 B
Plaintext
31 lines
453 B
Plaintext
// PAGER
|
|
// -----
|
|
|
|
.pager {
|
|
margin-left: 0;
|
|
margin-bottom: @baseLineHeight;
|
|
list-style: none;
|
|
text-align: center;
|
|
.clearfix();
|
|
}
|
|
.pager li {
|
|
display: inline;
|
|
}
|
|
.pager a {
|
|
display: inline-block;
|
|
padding: 5px 14px;
|
|
background-color: #fff;
|
|
border: 1px solid #ddd;
|
|
.border-radius(15px);
|
|
}
|
|
.pager a:hover {
|
|
text-decoration: none;
|
|
background-color: #f5f5f5;
|
|
}
|
|
.pager .next a {
|
|
float: right;
|
|
}
|
|
.pager .previous a {
|
|
float: left;
|
|
}
|