blob: 7ab869b567df5400cdb7e99a62218004fdd98750 (
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
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
|
.container-tablesize {
margin: auto 5%;
}
.btn-outline {
border-color: white;
}
.chosen-container-single .chosen-single {
background: #ffffff;
box-shadow: none;
-moz-box-sizing: border-box;
background-color: #FFFFFF;
border: 1px solid #CBD5DD;
border-radius: 2px;
cursor: text;
height: 25px;
margin: 0;
min-height: 30px;
overflow: hidden;
padding: 4px 12px;
position: relative;
width: 100%;
}
.selectize-input {
height: 30px;
width: 100px;
}
.myhr {
border: 0.5px dashed #e7eaec;
border-top: 1px;
margin-bottom: 3px;
}
td.null {
background-color: #e7eaec;
color: #e7eaec;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
cursor: not-allowed;
display: none;
}
body,
html {
margin: 0;
padding: 0;
min-height: 100%;
}
/*img[usemap] {
border: none;
height: auto;
max-width: 100%;
width: auto;
}*/
.popup {
position: absolute;
display: none;
/*background-color: #dd8;*/
border-radius: 5px 5px 5px 5px;
background-color: #f3f3f4;
opacity: 0.9;
}
.ngdialog.ngdialog.ngdialog-theme-default .ngdialog-content {
background-color: #ffffff;
border-radius: 5px;
}
/*
body {
height: 1200px;
}
html {
min-height: 100%;
}*/
/*html,
body {
height: 100%;
}
#page-wrapper {
position: inherit;
margin: 0 0 0 220px;
min-height: 773px;
}*/
|