blob: a4fcceeee25f5203f1b2f2b6a23563a6c89e7aa7 (
plain) (
tree)
|
|
@import '_variables';
@import '_mixins';
.dropdown-divider:last-child {
display: none;
}
.action-button {
@include peertube-button;
&.grey {
@include grey-button;
}
&.orange {
@include orange-button;
}
display: inline-block;
padding: 0 10px;
&::after {
display: none;
}
&:hover, &:active, &:focus {
background-color: $grey-color;
}
.icon-action {
@include icon(21px);
background-image: url('../../../assets/images/video/more.svg');
top: -1px;
}
&.small {
font-size: 14px;
height: 20px;
line-height: 20px;
}
}
.dropdown-toggle::after {
position: relative;
top: 1px;
}
.dropdown-menu {
.dropdown-item {
cursor: pointer;
color: #000 !important;
a, span {
display: block;
width: 100%;
}
}
}
|