-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcustom.css
100 lines (83 loc) · 1.92 KB
/
custom.css
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
::-webkit-scrollbar {
width: 0px;
}
.img_detail_scale_on {
width: auto !important;
max-width: 100vw !important;
max-height: 100vh !important;
margin: 0;
padding: 12px;
overflow: auto;
}
.img_detail_scale_on .v-image {
display: block;
max-height: 100vh;
margin: 0 auto;
}
.img_detail_scale_on .v-responsive__sizer,
.img_detail_scale_on .v-image__image {
display: none;
}
.img_detail_scale_on .v-responsive__content {
position: relative;
width: auto !important;
max-width: 100vw !important;
max-height: 100vh;
margin: 0 !important;
}
.img_scale_scroll {
display: none;
}
.img_detail_scale_on .img_scale_scroll {
display: block;
max-width: 100vw;
max-height: calc(100vh - 30px);
overflow: auto;
}
.nav_drawer .v-navigation-drawer__content::-webkit-scrollbar,
.img_scale_scroll::-webkit-scrollbar {
width: 10px !important;
height: 10px !important;
}
.img_scale_scroll::-webkit-scrollbar-track {
background: #e6e6e6;
border-left: 1px solid #dadada;
}
.nav_drawer .v-navigation-drawer__content::-webkit-scrollbar-thumb {
background: #b0b0b0;
border: solid 3px #fff;
border-radius: 7px;
}
.theme--dark .nav_drawer .v-navigation-drawer__content::-webkit-scrollbar-thumb {
border: solid 3px #363636;
}
.img_scale_scroll::-webkit-scrollbar-thumb {
background: #b0b0b0;
border: solid 3px #e6e6e6;
border-radius: 7px;
}
.nav_drawer .v-navigation-drawer__content::-webkit-scrollbar-thumb:hover,
.img_scale_scroll::-webkit-scrollbar-thumb:hover {
background: black;
}
.theme--dark .nav_drawer .v-navigation-drawer__content::-webkit-scrollbar-thumb:hover {
background: #ddd;
}
.v-date-picker-table>table>thead>tr>th {
padding: 0;
}
.poa_left_center {
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
}
.poa_right_center {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
}
.v-list-item__title.title {
line-height: 1.2 !important;
}