namirasoft-site-react 1.3.463 → 1.3.465
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/components/NSTable.module.css +7 -10
- package/logo.png +0 -0
- package/package.json +2 -2
- package/src/App.tsx +1 -1
- package/src/components/NSTable.module.css +7 -10
|
@@ -119,12 +119,6 @@
|
|
|
119
119
|
align-items: center;
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
-
.ns_table tr:hover {
|
|
123
|
-
background-color: rgba(20, 27, 92, 0.5);
|
|
124
|
-
color: white;
|
|
125
|
-
border-radius: 8px;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
122
|
.ns_table td {
|
|
129
123
|
text-align: left;
|
|
130
124
|
display: flex;
|
|
@@ -224,6 +218,13 @@
|
|
|
224
218
|
.ns_tbody tr:nth-child(even) {
|
|
225
219
|
background-color: #ffffff;
|
|
226
220
|
}
|
|
221
|
+
.ns_tbody tr:nth-child(odd):hover {
|
|
222
|
+
background-color: rgb(184 190 240 / 57%);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.ns_tbody tr:nth-child(even):hover {
|
|
226
|
+
background-color: rgb(184 190 240 / 57%);
|
|
227
|
+
}
|
|
227
228
|
|
|
228
229
|
.ns_check_box_input {
|
|
229
230
|
width: 100% !important;
|
|
@@ -276,10 +277,6 @@
|
|
|
276
277
|
text-align: center;
|
|
277
278
|
}
|
|
278
279
|
|
|
279
|
-
.ns_table tr:hover {
|
|
280
|
-
background-color: #dbdbdb !important;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
280
|
.ns_td_input {
|
|
284
281
|
height: 24px;
|
|
285
282
|
width: 24px !important;
|
package/logo.png
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"framework": "npm",
|
|
9
9
|
"application": "package",
|
|
10
10
|
"private": false,
|
|
11
|
-
"version": "1.3.
|
|
11
|
+
"version": "1.3.465",
|
|
12
12
|
"author": "Amir Abolhasani, Alireza Esmaeeli, Sepideh Mazloumi, Hooman Shashaeh, Mehrab Bahramian",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"main": "./dist/main.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@types/react": "^18.3.4",
|
|
27
27
|
"@types/react-bootstrap": "^0.32.37",
|
|
28
28
|
"@types/react-dom": "^18.3.0",
|
|
29
|
-
"antd": "^5.20.
|
|
29
|
+
"antd": "^5.20.3",
|
|
30
30
|
"bootstrap": "^5.3.3",
|
|
31
31
|
"chart.js": "^4.4.4",
|
|
32
32
|
"copyfiles": "^2.4.1",
|
package/src/App.tsx
CHANGED
|
@@ -119,12 +119,6 @@
|
|
|
119
119
|
align-items: center;
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
-
.ns_table tr:hover {
|
|
123
|
-
background-color: rgba(20, 27, 92, 0.5);
|
|
124
|
-
color: white;
|
|
125
|
-
border-radius: 8px;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
122
|
.ns_table td {
|
|
129
123
|
text-align: left;
|
|
130
124
|
display: flex;
|
|
@@ -224,6 +218,13 @@
|
|
|
224
218
|
.ns_tbody tr:nth-child(even) {
|
|
225
219
|
background-color: #ffffff;
|
|
226
220
|
}
|
|
221
|
+
.ns_tbody tr:nth-child(odd):hover {
|
|
222
|
+
background-color: rgb(184 190 240 / 57%);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.ns_tbody tr:nth-child(even):hover {
|
|
226
|
+
background-color: rgb(184 190 240 / 57%);
|
|
227
|
+
}
|
|
227
228
|
|
|
228
229
|
.ns_check_box_input {
|
|
229
230
|
width: 100% !important;
|
|
@@ -276,10 +277,6 @@
|
|
|
276
277
|
text-align: center;
|
|
277
278
|
}
|
|
278
279
|
|
|
279
|
-
.ns_table tr:hover {
|
|
280
|
-
background-color: #dbdbdb !important;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
280
|
.ns_td_input {
|
|
284
281
|
height: 24px;
|
|
285
282
|
width: 24px !important;
|