namirasoft-site-react 1.3.327 → 1.3.328
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
.ns_print_container {
|
|
2
|
+
z-index: 1;
|
|
3
|
+
top: 0%;
|
|
4
|
+
transform: translate(50%, 50%);
|
|
5
|
+
background-color: rgba(255, 255, 255, 1);
|
|
6
|
+
border-radius: 16px;
|
|
7
|
+
border: 0.2px solid rgb(210, 210, 210);
|
|
8
|
+
padding: 16px;
|
|
9
|
+
max-width: 380px;
|
|
10
|
+
position: absolute;
|
|
11
|
+
top: 50%;
|
|
12
|
+
left: 50%;
|
|
13
|
+
transform: translate(-50%, -50%);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.ns_header_print {
|
|
17
|
+
position: relative;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.ns_close_icon {
|
|
21
|
+
position: absolute;
|
|
22
|
+
right: 0px;
|
|
23
|
+
top: 0px;
|
|
24
|
+
cursor: pointer;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.ns_print_title {
|
|
28
|
+
display: flex;
|
|
29
|
+
gap: 8px;
|
|
30
|
+
color: #141B5C;
|
|
31
|
+
justify-content: center;
|
|
32
|
+
margin: 0;
|
|
33
|
+
align-items: center;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.ns_print_description {
|
|
37
|
+
color: #141B5C;
|
|
38
|
+
margin: 0;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.ns_parent_checkboxs {
|
|
42
|
+
display: flex;
|
|
43
|
+
flex-wrap: wrap;
|
|
44
|
+
justify-content: space-between;
|
|
45
|
+
gap: 8px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.ns_w_box_boolean div {
|
|
49
|
+
width: 100% !important;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.ns_w_box_boolean {
|
|
53
|
+
width: 100% !important;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.ns_w_box_string {
|
|
57
|
+
width: 100% !important;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.ns_w_box_string input {
|
|
61
|
+
width: 100% !important;
|
|
62
|
+
max-width: 100% !important;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
@media only screen and (min-width: 768px) {
|
|
66
|
+
.ns_print_container {
|
|
67
|
+
max-width: 590px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.ns_w_box_boolean div {
|
|
71
|
+
width: 272px !important;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.ns_w_box_boolean {
|
|
75
|
+
width: 272px !important;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.ns_w_box_string {
|
|
79
|
+
width: 272px !important;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.ns_w_box_string input {
|
|
83
|
+
width: 272px !important;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.ns_toast_background {
|
|
88
|
+
width: 100vw;
|
|
89
|
+
height: 100vh;
|
|
90
|
+
background-color: #00000059;
|
|
91
|
+
position: fixed;
|
|
92
|
+
top: 0;
|
|
93
|
+
left: 0;
|
|
94
|
+
display: flex;
|
|
95
|
+
justify-content: center;
|
|
96
|
+
align-items: center;
|
|
97
|
+
cursor: default;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.ns_parent_modal {
|
|
101
|
+
/* position: relative; */
|
|
102
|
+
}
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
box-shadow: 0px 2px 2px 2px #141B5C;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
.
|
|
41
|
+
.ns_tab_content_column {
|
|
42
42
|
padding: 16px;
|
|
43
43
|
border-radius: 0 8px 8px 8px;
|
|
44
44
|
background-color: #fff;
|
|
@@ -46,4 +46,13 @@
|
|
|
46
46
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
47
47
|
gap: 0;
|
|
48
48
|
border-right: 1px solid #ccc;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.ns_tab_content_grid {
|
|
52
|
+
padding: 16px;
|
|
53
|
+
border-radius: 0 8px 8px 8px;
|
|
54
|
+
background-color: #fff;
|
|
55
|
+
display: grid;
|
|
56
|
+
gap: 0;
|
|
57
|
+
border-right: 1px solid #ccc;
|
|
49
58
|
}
|
|
@@ -156,10 +156,6 @@
|
|
|
156
156
|
align-items: center;
|
|
157
157
|
cursor: pointer;
|
|
158
158
|
}
|
|
159
|
-
|
|
160
|
-
.ns_check_box input {
|
|
161
|
-
scale: 1.5;
|
|
162
|
-
}
|
|
163
159
|
}
|
|
164
160
|
|
|
165
161
|
@media screen and (min-width: 1024px) {
|
|
@@ -203,9 +199,32 @@
|
|
|
203
199
|
}
|
|
204
200
|
|
|
205
201
|
.ns_check_box input {
|
|
206
|
-
width:
|
|
202
|
+
width: 28px !important;
|
|
203
|
+
height: 28px;
|
|
207
204
|
}
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
205
|
+
|
|
206
|
+
.ns_td_input {
|
|
207
|
+
height: 28px;
|
|
208
|
+
width: 28px !important;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.ns_indeterminate:indeterminate {
|
|
212
|
+
border: 1px solid rgba(255, 148, 50, 1);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.ns_indeterminate {
|
|
216
|
+
position: relative;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.ns_indeterminate::after {
|
|
220
|
+
content: "-";
|
|
221
|
+
display: block;
|
|
222
|
+
position: absolute;
|
|
223
|
+
width: 100%;
|
|
224
|
+
height: 100%;
|
|
225
|
+
top: 0;
|
|
226
|
+
left: 0;
|
|
227
|
+
background: rgba(3, 119, 255, 1);
|
|
228
|
+
border: 5px solid #fff;
|
|
229
|
+
color: rgba(3, 119, 255, 1);
|
|
211
230
|
}
|
package/package.json
CHANGED