aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/misc/list-overflow.component.scss
blob: 7e31d3850652f1145e64c1363b413c890643cce3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@import '_mixins';

:host {
  width: 100%;
}

.list-overflow-parent {
  overflow: hidden;
}

.list-overflow-menu {
  position: absolute;
  right: 25px;
}

button {
  width: 30px;
  border: 0;

  &::after {
    display: none;
  }

  &.route-active {
    &::after {
      display: inherit;
      border: 2px solid pvar(--mainColor);
      position: relative;
      right: 95%;
      top: 50%;
    }
  }
}

::ng-deep .dropdown-menu {
  margin-top: 0 !important;
  position: static;
  right: auto;
  bottom: auto;
}

.modal-body {
  a {
    @include disable-default-a-behaviour;

    color: currentColor;
    box-sizing: border-box;
    display: block;
    font-size: 1.2rem;
    padding: 9px 12px;
    text-align: initial;
    text-transform: unset;
    width: 100%;

    &.active {
      color: pvar(--mainBackgroundColor) !important;
      background-color: pvar(--mainHoverColor);
      opacity: .9;
    }
  }
}