]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-main/misc/list-overflow.component.scss
Move to sass module
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / misc / list-overflow.component.scss
CommitLineData
8cbc40b2
C
1@use '_variables' as *;
2@use '_mixins' as *;
24e7916c
RK
3
4:host {
5 width: 100%;
6}
7
8.list-overflow-parent {
9 overflow: hidden;
10}
11
12.list-overflow-menu {
13 position: absolute;
71e75ef2 14 right: 25px;
24e7916c
RK
15}
16
17button {
18 width: 30px;
931d3430 19 border: 0;
24e7916c
RK
20
21 &::after {
22 display: none;
23 }
24
931d3430 25 &.route-active {
24e7916c
RK
26 &::after {
27 display: inherit;
e66883b3 28 border: 2px solid pvar(--mainColor);
24e7916c
RK
29 position: relative;
30 right: 95%;
31 top: 50%;
32 }
33 }
34}
35
36::ng-deep .dropdown-menu {
37 margin-top: 0 !important;
38 position: static;
39 right: auto;
931d3430 40 bottom: auto;
24e7916c
RK
41}
42
43.modal-body {
44 a {
45 @include disable-default-a-behaviour;
46
47 color: currentColor;
48 box-sizing: border-box;
49 display: block;
50 font-size: 1.2rem;
51 padding: 9px 12px;
52 text-align: initial;
53 text-transform: unset;
54 width: 100%;
55
56 &.active {
e66883b3
RK
57 color: pvar(--mainBackgroundColor) !important;
58 background-color: pvar(--mainHoverColor);
24e7916c
RK
59 opacity: .9;
60 }
61 }
62}