summaryrefslogtreecommitdiffstats
path: root/webapp/src/assets/styles.css
blob: 0bcfdfe5ab199cb86bd2cc0b50c8dfe6a7b5811a (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
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 */
}

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

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

::-webkit-scrollbar-thumb {
  background-color: #666666;
}

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

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

.tabs-wrapper {
  display: flex;
  flex-direction: column
}

.tabs-wrapper > .v-tabs__items {
  padding: 0 5px;
  margin: 0 -5px;
  flex: 1
}

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

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

.no-animation {
/*CSS transitions*/
-o-transition-property: none !important;
-moz-transition-property: none !important;
-ms-transition-property: none !important;
-webkit-transition-property: none !important;
transition-property: none !important;

/*CSS animations*/
-webkit-animation: none !important;
-moz-animation: none !important;
-o-animation: none !important;
-ms-animation: none !important;
animation: none !important;
}