58983bf192
Moving the entire bootstrap dir into the horizon module caused some unexpected complexities. For the time being, javascript will go into Horizon while CSS/LESS will go into OpenStack Dashboard. Change-Id: Ief3a48f2124667e936312f818baeddb6c7c290dc
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;
|
|
}
|