Add upstream plugins

Signed-off-by: Adrian Nöthlich <git@promasu.tech>
This commit is contained in:
2019-10-25 22:42:20 +02:00
parent 5d3c2ec184
commit 290736650a
1186 changed files with 302577 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
//
// 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;
}
}
}