]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/buttons/action-dropdown.component.scss
Add ability to list all local videos on client
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / buttons / action-dropdown.component.scss
CommitLineData
eacb25c4
C
1@import '_variables';
2@import '_mixins';
3
4.action-button {
5 @include peertube-button;
791645e6
C
6
7 &.grey {
8 @include grey-button;
9 }
10
11 &.orange {
12 @include orange-button;
13 }
eacb25c4 14
141b177d
C
15 display: inline-block;
16 padding: 0 10px;
17
18 &::after {
19 display: none;
20 }
21
eacb25c4
C
22 &:hover, &:active, &:focus {
23 background-color: $grey-color;
24 }
25
eacb25c4
C
26 .icon-action {
27 @include icon(21px);
28
29 background-image: url('../../../assets/images/video/more.svg');
30 top: -1px;
31 }
79bd2632
C
32
33 &.small {
34 font-size: 14px;
35 height: 20px;
36 line-height: 20px;
37 }
141b177d
C
38}
39
791645e6
C
40.dropdown-toggle::after {
41 position: relative;
42 top: 1px;
43}
44
141b177d
C
45.dropdown-menu {
46 .dropdown-item {
47 cursor: pointer;
48 color: #000 !important;
49 }
eacb25c4 50}