]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/buttons/action-dropdown.component.scss
00f120fb8ea5831292bb334544a290703d89ade6
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / buttons / action-dropdown.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 .action-button {
5 @include peertube-button;
6 @include grey-button;
7
8 display: inline-block;
9 padding: 0 10px;
10
11 &::after {
12 display: none;
13 }
14
15 &:hover, &:active, &:focus {
16 background-color: $grey-color;
17 }
18
19 .icon-action {
20 @include icon(21px);
21
22 background-image: url('../../../assets/images/video/more.svg');
23 top: -1px;
24 }
25
26 &.small {
27 font-size: 14px;
28 height: 20px;
29 line-height: 20px;
30 }
31 }
32
33 .dropdown-menu {
34 .dropdown-item {
35 cursor: pointer;
36 color: #000 !important;
37 }
38 }