65 lines
1.1 KiB
Plaintext
65 lines
1.1 KiB
Plaintext
/*! Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
|
|
|
ul.pagination {
|
|
font-size: 0.68em;
|
|
padding: 0;
|
|
display: inline;
|
|
white-space: nowrap;
|
|
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
#layout.twocols u.pagination {
|
|
font-size: 0.5em;
|
|
}
|
|
|
|
.pagination > li {
|
|
list-style-type: none;
|
|
display: inline-block;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.pagination > li > a, .pagination > li.disabled > span {
|
|
display: block;
|
|
padding: 0em 1em 0em 1em;
|
|
line-height: 2em;
|
|
border: 1px solid #ddd;
|
|
border-right-width: 0;
|
|
}
|
|
|
|
.pagination > li > a {
|
|
color: @colorTextDarkDefault;
|
|
text-decoration: none;
|
|
outline: 0;
|
|
}
|
|
|
|
.pagination li.disabled span {
|
|
cursor: no-drop;
|
|
color: #ddd;
|
|
}
|
|
|
|
.pagination > li:last-child > a, .pagination > li:last-child > span {
|
|
border-right-width: 1px;
|
|
}
|
|
|
|
.pagination > li:first-child > a, .pagination > li:first-child > span {
|
|
}
|
|
|
|
.pagination > li > a:hover {
|
|
color: #000;
|
|
background-color: #eee;
|
|
}
|
|
|
|
.pagination > li.active > a {
|
|
background-color: #555;
|
|
border-color: #555;
|
|
color: #fff;
|
|
cursor: default;
|
|
}
|
|
|