aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dashboard/css/dashboard.css
blob: ea01e0f771bcedd746b3534173a99d07c7b9e8c4 (plain)
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
.skip-navigation:not(.skip-content) {
  display: none;
}

.skip-navigation.skip-content {
  left: 3px;
}

#header {
  background: transparent !important;
  --color-header: rgba(24, 24, 24, 1);
}
#body-user.dashboard--dark #header {
  --color-header: rgba(255, 255, 255, 1);
}
#header:before {
  content: " ";
  display: block;
  position: absolute;
  background-image: linear-gradient(180deg, var(--color-header) 0%, transparent 100%);
  width: 100%;
  height: 70px;
  top: 0;
  margin-top: -70px;
  transition: margin-top var(--animation-slow);
}
#body-user.dashboard--scrolled #header:before {
  margin-top: 0;
}
#body-user.theme--highcontrast #header {
  background-color: var(--color-header) !important;
}
#body-user.theme--highcontrast #header:before {
  display: none;
}

#content {
  padding-top: 0 !important;
}

#appmenu li a.active::before,
#appmenu li:hover a::before,
#appmenu li:hover a.active::before,
#appmenu li a:focus::before {
  display: none !important;
}

/*# sourceMappingURL=dashboard.css.map */