summaryrefslogtreecommitdiffstats
path: root/webapp/src/assets/styles.css
blob: aa6f1460ea9e092eb8288f82d3ba963fa272cb13 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
html {
  overflow-y: scroll;
}

.non-selectable {
  -webkit-user-select: none; /* Safari 3.1+ */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Standard syntax */
}

.selectable {
  -webkit-user-select: text; /* Safari 3.1+ */
  -moz-user-select: text; /* Firefox 2+ */
  -ms-user-select: text; /* IE 10+ */
  user-select: text; /* Standard syntax */
}

.non-draggable {
  -webkit-user-drag: none;
  user-drag: none;
}

.no-animation *, .no-animation :before, .no-animation :after {
 transition: none !important;
 animation: none !important;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #666666;
  border-radius: 6px;
}

.theme--light ::-webkit-scrollbar-thumb {
  background-color: #cccccc;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

::-webkit-scrollbar-button {
  display: none;
}

.tabbar-card {
  position: sticky;
  top: 64px;
  z-index: 3;
}

.tabbar-card .v-tabs .v-tabs__item {
  text-transform: none !important;
}

@media (max-width: 959px) {
  .tabbar-card {
    top: 56px;
    margin-top: -16px;
    margin-left: -16px;
    margin-right: -16px;
  }
}

.tabbar-tabicon {
  margin-right: 12px;
}

.tutorial-enabled .tutorial-element {
  position: relative;
}

.tutorial-enabled .tutorial-element::after {
  content: '';
  border: red solid 2px !important;
  border-radius: 4px;
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
}

.tutorial-enabled .tutorial-element.element-icon::after {
  border-radius: 50%;
}

.tutorial-enabled .tutorial-element::before {
  font-weight: bold;
  content: var(--label-number);
  opacity: 1;
  border-radius: 50%;
  border: 2px solid red;
  color: white;
  width: 24px;
  height: 24px;
  text-align: center;
  position: absolute;
  font-size: larger;
  background-color: red;
  z-index: 4;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tutorial-element.label-top-left::before {
  top: -5px;
  left: -10px;
}

.tutorial-element.label-top-right::before {
  top: -5px;
  right: -10px;
}

.tutorial-element.label-bottom-left::before {
  bottom: -5px;
  left: -10px;
}

.tutorial-element.label-bottom-right::before {
  bottom: -5px;
  right: -10px;
}

.tutorial-element.label-top::before {
  top: -14px;
}

.tutorial-element.label-bottom::before {
  bottom: -14px;
}

.tutorial-element.label-left::before {
  left: -14px;
}

.tutorial-element.label-right::before {
  right: -14px;
}