-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathapp.scss
105 lines (87 loc) · 1.92 KB
/
app.scss
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
@import 'spec/settings/index';
@import 'spec/tools/index';
@import "~bootstrap/scss/bootstrap";
@import 'spec/index';
@import 'vendor/index';
#loader {
transition: all 0.3s ease-in-out;
opacity: 1;
visibility: visible;
position: fixed;
height: 100vh;
width: 100%;
background: #fff;
z-index: 90000;
}
#loader.fadeOut {
opacity: 0;
visibility: hidden;
}
.spinner {
width: 40px;
height: 40px;
position: absolute;
top: calc(50% - 20px);
left: calc(50% - 20px);
background-color: #333;
border-radius: 100%;
-webkit-animation: sk-scale-out 1.0s infinite ease-in-out;
animation: sk-scale-out 1.0s infinite ease-in-out;
}
@-webkit-keyframes sk-scale-out {
0% {
-webkit-transform: scale(0)
}
100% {
-webkit-transform: scale(1.0);
opacity: 0;
}
}
@keyframes sk-scale-out {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
100% {
-webkit-transform: scale(1.0);
transform: scale(1.0);
opacity: 0;
}
}
img {
max-width: 100%;
}
.menu-btn {
padding: 10px 15px;
border: none;
background: none;
}
#dataTable tr th:last-of-type {
min-width: 95px;
}
.select2-container{
min-width: 100%;
max-width: 100%;
}
.select2-container--default .select2-selection--single,
.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-dropdown {
border-color: #ced4da !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
height: 35px !important;
line-height: 2.4 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
height: 35px !important;
}
.select2-container .select2-selection--single {
height: 35px !important;
}
.form-control-file {
border: 1px solid #cbcbcb;
padding: 5px;
}
.dataTables_wrapper{
overflow: auto;
}