aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/misc/help.component.scss
blob: 68d7ad48f7e27ef084c2e83c88c5dea85323a8fa (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
@import '_variables';
@import '_mixins';

.help-tooltip-button {
  @include disable-outline;

  cursor: pointer;
  border: 0;
  margin: 5px;

  my-global-icon {
    @include apply-svg-color(pvar(--greyForegroundColor));

    width: 17px;
    position: relative;
    top: -1px;
  }
}

::ng-deep {
  .help-popover {
    z-index: z(help-popover) !important;
    max-width: 300px;

    .popover-body {
      font-family: $main-fonts;
      text-align: left;
      padding: 10px;
      font-size: 13px;
      background-color: pvar(--mainBackgroundColor);
      color: pvar(--mainForegroundColor);
      border-radius: 3px;

      p {
        margin-bottom: 0;
      }

      ul {
        padding-left: 20px;
        margin-bottom: 0;
      }
    }
  }
}