namirasoft-site-react 1.3.216 → 1.3.217
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.
- package/dist/App.css +5 -1
- package/dist/components/NSAccess.module.css +7 -0
- package/dist/components/NSBox.module.css +37 -30
- package/dist/components/NSBoxLabel.module.css +13 -0
- package/dist/components/NSBoxTextArea.module.css +6 -2
- package/dist/components/NSHeader.module.css +2 -2
- package/dist/components/NSLoading.module.css +5 -2
- package/dist/components/NSPagination.module.css +35 -5
- package/dist/components/NSPanel.module.css +3 -2
- package/dist/components/NSTabPage.module.css +4 -0
- package/dist/components/NSTable.module.css +8 -3
- package/package.json +1 -1
package/dist/App.css
CHANGED
|
@@ -3,37 +3,14 @@
|
|
|
3
3
|
flex-direction: column;
|
|
4
4
|
width: fit-content;
|
|
5
5
|
color: #141B5C;
|
|
6
|
-
position: relative;
|
|
7
6
|
justify-content: center;
|
|
8
7
|
width: 272px;
|
|
9
8
|
max-width: 100%;
|
|
10
9
|
}
|
|
11
10
|
|
|
12
|
-
.ns_input_parent img {
|
|
13
|
-
position: absolute;
|
|
14
|
-
z-index: 2;
|
|
15
|
-
right: 5%;
|
|
16
|
-
top: 50%;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.ns_input_container {
|
|
20
|
-
display: flex;
|
|
21
|
-
align-items: center;
|
|
22
|
-
position: relative;
|
|
23
|
-
width: 100%;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.ns_input_icon_container {
|
|
27
|
-
margin: 0 !important;
|
|
28
|
-
position: absolute;
|
|
29
|
-
left: 12px;
|
|
30
|
-
right: 5%;
|
|
31
|
-
top: 25%;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
11
|
.ns_input {
|
|
35
12
|
border-radius: 8px;
|
|
36
|
-
padding: 10px
|
|
13
|
+
padding: 10px 48px 10px 12px;
|
|
37
14
|
font-size: 16px;
|
|
38
15
|
font-weight: 400;
|
|
39
16
|
border: 1px solid rgba(0, 0, 0, 1) !important;
|
|
@@ -58,12 +35,6 @@
|
|
|
58
35
|
}
|
|
59
36
|
}
|
|
60
37
|
|
|
61
|
-
.ns_input_parent img {
|
|
62
|
-
position: absolute;
|
|
63
|
-
right: 5%;
|
|
64
|
-
top: 50%;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
38
|
/*Start Input phone*/
|
|
68
39
|
.ns_input_phone_parent input {
|
|
69
40
|
width: 100% !important;
|
|
@@ -79,6 +50,8 @@
|
|
|
79
50
|
/*End Input phone*/
|
|
80
51
|
|
|
81
52
|
.ns_btn_box {
|
|
53
|
+
opacity: 0;
|
|
54
|
+
visibility: hidden;
|
|
82
55
|
color: #000;
|
|
83
56
|
border: none;
|
|
84
57
|
cursor: pointer;
|
|
@@ -110,4 +83,38 @@
|
|
|
110
83
|
.ns_full_screen input {
|
|
111
84
|
width: 100% !important;
|
|
112
85
|
max-width: 100%;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.ns_input_modal_full {
|
|
89
|
+
position: fixed;
|
|
90
|
+
top: 0;
|
|
91
|
+
left: 0;
|
|
92
|
+
background-color: rgba(0, 0, 0, 0.8);
|
|
93
|
+
height: 100%;
|
|
94
|
+
width: 100%;
|
|
95
|
+
z-index: 15;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.ns_input_modal_full_screen textarea {
|
|
99
|
+
height: 80%;
|
|
100
|
+
width: 80%;
|
|
101
|
+
z-index: 15;
|
|
102
|
+
position: fixed;
|
|
103
|
+
top: 10%;
|
|
104
|
+
left: 10%;
|
|
105
|
+
text-align: left;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.ns_input_modal_full_screen img {
|
|
109
|
+
position: fixed;
|
|
110
|
+
top: 5%;
|
|
111
|
+
right: 10%;
|
|
112
|
+
z-index: 20;
|
|
113
|
+
transition: all 0.3s ease-in-out;
|
|
114
|
+
cursor: pointer;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.ns_input_modal_full_screen img:hover {
|
|
118
|
+
scale: 1.3;
|
|
119
|
+
rotate: 90deg;
|
|
113
120
|
}
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
align-items: center;
|
|
15
15
|
position: relative;
|
|
16
16
|
width: 100%;
|
|
17
|
+
height: 100%;
|
|
17
18
|
}
|
|
18
19
|
|
|
19
20
|
.ns_text_area_icon_container {
|
|
@@ -38,6 +39,8 @@
|
|
|
38
39
|
}
|
|
39
40
|
|
|
40
41
|
.ns_btn_box {
|
|
42
|
+
opacity: 0;
|
|
43
|
+
visibility: hidden;
|
|
41
44
|
color: #000;
|
|
42
45
|
border: none;
|
|
43
46
|
cursor: pointer;
|
|
@@ -45,7 +48,7 @@
|
|
|
45
48
|
background-color: transparent;
|
|
46
49
|
}
|
|
47
50
|
|
|
48
|
-
.
|
|
51
|
+
.ns_text_area_parent:hover .ns_btn_box {
|
|
49
52
|
opacity: 1;
|
|
50
53
|
visibility: visible;
|
|
51
54
|
transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
|
|
@@ -67,7 +70,8 @@
|
|
|
67
70
|
max-width: 100% !important;
|
|
68
71
|
}
|
|
69
72
|
|
|
70
|
-
.ns_full_screen
|
|
73
|
+
.ns_full_screen textarea {
|
|
71
74
|
width: 100% !important;
|
|
72
75
|
max-width: 100%;
|
|
76
|
+
height: 100% !important;
|
|
73
77
|
}
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
.ns_loading_parent {
|
|
2
2
|
width: 100%;
|
|
3
3
|
display: flex;
|
|
4
|
+
flex-direction: column;
|
|
4
5
|
justify-content: center;
|
|
5
6
|
align-items: center;
|
|
6
7
|
margin: 0 auto;
|
|
8
|
+
padding: 48px 0;
|
|
7
9
|
}
|
|
8
10
|
|
|
9
11
|
.ns_loader {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
+
margin: 16px 0;
|
|
13
|
+
width: 75px;
|
|
14
|
+
height: 75px;
|
|
12
15
|
border-radius: 50%;
|
|
13
16
|
padding: 1px;
|
|
14
17
|
background: conic-gradient(#0000 10%, #001664) content-box;
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
text-align: left;
|
|
8
8
|
font-size: 14px;
|
|
9
9
|
justify-items: center;
|
|
10
|
-
line-height: 35px;
|
|
11
10
|
width: 100%;
|
|
12
11
|
max-width: max-content;
|
|
12
|
+
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.ns_select_number_parent {
|
|
16
|
-
|
|
16
|
+
font-weight: 500;
|
|
17
17
|
border-radius: 50px;
|
|
18
18
|
height: 32px;
|
|
19
19
|
width: 32px;
|
|
@@ -24,15 +24,45 @@
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
.ns_paginate_link {
|
|
27
|
-
color:
|
|
27
|
+
color: rgba(20, 27, 92, 1);
|
|
28
28
|
text-decoration: none;
|
|
29
29
|
font-size: 14px;
|
|
30
|
-
font-weight:
|
|
30
|
+
font-weight: 600;
|
|
31
31
|
line-height: 22px;
|
|
32
32
|
font-family: inherit;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.ns_select_number {
|
|
36
|
-
color:
|
|
36
|
+
color: rgba(20, 27, 92, 1);
|
|
37
37
|
font-weight: 500;
|
|
38
|
+
background-color: rgb(255, 255, 255);
|
|
39
|
+
border: 2px solid rgba(20, 27, 92, 1);
|
|
40
|
+
border-radius: 50px;
|
|
41
|
+
border-radius: 50px;
|
|
42
|
+
height: 32px;
|
|
43
|
+
width: 32px;
|
|
44
|
+
text-align: center;
|
|
45
|
+
display: flex;
|
|
46
|
+
justify-content: center;
|
|
47
|
+
align-items: center;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.ns_pagination_left_ellipses {
|
|
51
|
+
padding-bottom: 10px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.ns_pagination_left_ellipses a {
|
|
55
|
+
color: rgba(20, 27, 92, 1);
|
|
56
|
+
font-size: 24px;
|
|
57
|
+
font-weight: 700;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.ns_pagination_right_ellipses {
|
|
61
|
+
padding-bottom: 10px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.ns_pagination_right_ellipses a {
|
|
65
|
+
color: rgba(20, 27, 92, 1);
|
|
66
|
+
font-size: 24px;
|
|
67
|
+
font-weight: 700;
|
|
38
68
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.ns_panel_grid {
|
|
2
2
|
background-color: #fff;
|
|
3
|
-
padding:
|
|
3
|
+
padding: 24px;
|
|
4
4
|
display: flex;
|
|
5
5
|
flex-direction: column;
|
|
6
6
|
align-items: flex-start;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
.ns_panel_column {
|
|
16
16
|
background-color: #fff;
|
|
17
|
-
padding:
|
|
17
|
+
padding: 24px;
|
|
18
18
|
display: flex;
|
|
19
19
|
flex-direction: column;
|
|
20
20
|
align-items: center;
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
max-width: 700px;
|
|
37
37
|
flex-wrap: wrap;
|
|
38
38
|
min-width: 270px;
|
|
39
|
+
max-width: 670px;
|
|
39
40
|
}
|
|
40
41
|
}
|
|
41
42
|
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
content: attr(data-label);
|
|
42
42
|
font-weight: bold;
|
|
43
43
|
float: left;
|
|
44
|
-
|
|
44
|
+
min-width: 30%;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
/* Button Group */
|
|
@@ -67,6 +67,11 @@
|
|
|
67
67
|
right: 0;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
+
.ns_table_no_data {
|
|
71
|
+
display: flex;
|
|
72
|
+
justify-content: center
|
|
73
|
+
}
|
|
74
|
+
|
|
70
75
|
@media screen and (min-width: 768px) {
|
|
71
76
|
.ns_table {
|
|
72
77
|
color: #000000;
|
|
@@ -114,12 +119,12 @@
|
|
|
114
119
|
margin: 0;
|
|
115
120
|
padding: 0;
|
|
116
121
|
}
|
|
117
|
-
|
|
122
|
+
|
|
118
123
|
.ns_table td::before {
|
|
119
124
|
content: "";
|
|
120
125
|
float: left;
|
|
121
126
|
font-weight: bold;
|
|
122
|
-
|
|
127
|
+
min-width: unset;
|
|
123
128
|
}
|
|
124
129
|
|
|
125
130
|
/* Button Group */
|
package/package.json
CHANGED