Files
wordpress-preseed/wp-content/plugins/all-in-one-event-calendar/public/admin/less/bootstrap/pager.less
Adrian Nöthlich 290736650a Add upstream plugins
Signed-off-by: Adrian Nöthlich <git@promasu.tech>
2019-10-25 22:42:20 +02:00

56 lines
895 B
Plaintext
Executable File

//
// Pager pagination
// --------------------------------------------------
.ai1ec-pager {
padding-left: 0;
margin: @line-height-computed 0;
list-style: none;
text-align: center;
.ai1ec-clearfix();
li {
display: inline;
> a,
> span {
display: inline-block;
padding: 5px 14px;
background-color: @pagination-bg;
border: 1px solid @pagination-border;
border-radius: @pager-border-radius;
}
> a:hover,
> a:focus {
text-decoration: none;
background-color: @pagination-hover-bg;
}
}
.ai1ec-next {
> a,
> span {
float: right;
}
}
.ai1ec-previous {
> a,
> span {
float: left;
}
}
.ai1ec-disabled {
> a,
> a:hover,
> a:focus,
> span {
color: @pager-disabled-color;
background-color: @pagination-bg;
cursor: not-allowed;
}
}
}