@pmidc/upyog-css 1.2.6 → 1.2.8
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/index.css +33 -507
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/PropertySearchForm.scss +2 -2
- package/src/components/SearchForm.scss +1 -1
- package/src/components/buttons.scss +11 -17
- package/src/components/card.scss +8 -12
- package/src/components/hoc/InboxComposer.scss +4 -4
- package/src/components/textfields.scss +1 -1
- package/src/index.scss +2 -3
- package/src/modules/rentAndLease/index.scss +4 -0
- package/src/pages/employee/form-fields.scss +2 -2
- package/src/pages/employee/index.scss +2 -2
- package/src/pages/ws/index.scss +4 -4
- package/src/modules/hrms/index.scss +0 -504
package/package.json
CHANGED
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
|
|
38
|
-
.form-field
|
|
38
|
+
.form-field {
|
|
39
39
|
width: 30% !important;
|
|
40
40
|
margin-bottom: 20px;
|
|
41
41
|
}
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
@media (max-width: 780px) {
|
|
49
|
-
.form-field
|
|
49
|
+
.form-field{
|
|
50
50
|
width: 100% !important;
|
|
51
51
|
margin-bottom: 15px;
|
|
52
52
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
border: none !important;
|
|
4
4
|
border-radius: 0.375rem;
|
|
5
5
|
padding: 0.5rem 1rem;
|
|
6
|
-
font-family:
|
|
6
|
+
font-family: 'Noto Sans', sans-serif;
|
|
7
7
|
font-weight: 500;
|
|
8
8
|
font-size: 0.875rem;
|
|
9
9
|
line-height: 1.25rem;
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
|
|
39
39
|
.selector-button-primary {
|
|
40
40
|
@extend .selector-button;
|
|
41
|
-
background-color: #
|
|
41
|
+
background-color: #2947A3 !important;
|
|
42
42
|
|
|
43
43
|
&:hover {
|
|
44
44
|
background-color: #1e3a8a !important;
|
|
@@ -48,29 +48,30 @@
|
|
|
48
48
|
.selector-button-secondary {
|
|
49
49
|
@extend .selector-button;
|
|
50
50
|
background-color: #ffffff !important;
|
|
51
|
-
color: #
|
|
51
|
+
color: #2947A3 !important;
|
|
52
52
|
|
|
53
53
|
h2 {
|
|
54
|
-
color: #
|
|
54
|
+
color: #2947A3 !important;
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
+
|
|
58
59
|
.selector-button-border {
|
|
59
|
-
background-color: #
|
|
60
|
+
background-color: #2947A3 !important;
|
|
60
61
|
color: #ffffff !important;
|
|
61
62
|
border: none !important;
|
|
62
63
|
border-radius: 0.375rem;
|
|
63
64
|
padding: 0.5rem 1rem;
|
|
64
|
-
font-family:
|
|
65
|
+
font-family: 'Noto Sans', sans-serif;
|
|
65
66
|
font-weight: 500;
|
|
66
67
|
font-size: 0.875rem;
|
|
67
68
|
line-height: 1.25rem;
|
|
68
69
|
cursor: pointer;
|
|
69
70
|
transition: all 0.2s ease;
|
|
70
|
-
white-space: normal;
|
|
71
|
-
word-break: break-word;
|
|
71
|
+
white-space: normal; /* allow wrapping */
|
|
72
|
+
word-break: break-word; /* break long words */
|
|
72
73
|
overflow-wrap: break-word;
|
|
73
|
-
text-align: center;
|
|
74
|
+
text-align: center;
|
|
74
75
|
display: inline-flex;
|
|
75
76
|
align-items: center;
|
|
76
77
|
justify-content: center;
|
|
@@ -97,6 +98,7 @@
|
|
|
97
98
|
}
|
|
98
99
|
}
|
|
99
100
|
|
|
101
|
+
|
|
100
102
|
.input-mirror-selector-button {
|
|
101
103
|
@apply h-16 bg-border text-center border-b-2 border-input-border border-solid outline-none px-lg !important;
|
|
102
104
|
|
|
@@ -130,11 +132,3 @@
|
|
|
130
132
|
border: 1px solid !important;
|
|
131
133
|
margin-right: 10px !important;
|
|
132
134
|
}
|
|
133
|
-
.action-button-myapplication {
|
|
134
|
-
display: flex;
|
|
135
|
-
gap: 20px;
|
|
136
|
-
flex-wrap: wrap;
|
|
137
|
-
margin-top: 10px;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
|
package/src/components/card.scss
CHANGED
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
box-shadow: none;
|
|
3
|
-
}
|
|
4
|
-
.card, .card, .card {
|
|
5
|
-
box-shadow: none;
|
|
6
|
-
}
|
|
1
|
+
|
|
7
2
|
|
|
8
3
|
.card {
|
|
9
4
|
padding: 20px 24px 28px 24px;
|
|
@@ -490,16 +485,17 @@ button.card-link.submit-bar {
|
|
|
490
485
|
display: flex;
|
|
491
486
|
align-items: center;
|
|
492
487
|
|
|
488
|
+
h2 {
|
|
489
|
+
width: 30%;
|
|
490
|
+
}
|
|
493
491
|
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
max-width: 500px;
|
|
498
|
-
margin-right: 0;
|
|
492
|
+
.field {
|
|
493
|
+
width: 50%;
|
|
494
|
+
margin-right: 20%;
|
|
499
495
|
.field {
|
|
500
496
|
margin-right: unset;
|
|
501
497
|
}
|
|
502
|
-
}
|
|
498
|
+
}
|
|
503
499
|
}
|
|
504
500
|
|
|
505
501
|
.field-container {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.InboxComposerWrapper {
|
|
2
2
|
.form-field-flex-one {
|
|
3
|
-
.form-field
|
|
3
|
+
.form-field {
|
|
4
4
|
@apply flex-1;
|
|
5
5
|
}
|
|
6
6
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
.submit {
|
|
12
12
|
@apply flex left-0 w-full px-xl items-center flex-row-reverse !important;
|
|
13
13
|
}
|
|
14
|
-
.form-field
|
|
14
|
+
.form-field {
|
|
15
15
|
margin: 0 !important;
|
|
16
16
|
@apply w-full;
|
|
17
17
|
}
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
.field-container {
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
-
.form-field
|
|
39
|
+
.form-field {
|
|
40
40
|
width: 100% !important;
|
|
41
41
|
}
|
|
42
42
|
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
display: grid !important;
|
|
100
100
|
grid-template-columns: 33.33% 33.33% 33.33%;
|
|
101
101
|
}
|
|
102
|
-
.form-field
|
|
102
|
+
.form-field {
|
|
103
103
|
width: 100%;
|
|
104
104
|
padding-right: 15px;
|
|
105
105
|
.clear-search {
|
package/src/index.scss
CHANGED
|
@@ -137,7 +137,6 @@
|
|
|
137
137
|
@import "./components/SurveyModal.scss";
|
|
138
138
|
|
|
139
139
|
@import "./modules/adv/index.scss";
|
|
140
|
-
@import "./modules/hrms/index.scss";
|
|
141
140
|
.display-none {
|
|
142
141
|
display: none;
|
|
143
142
|
}
|
|
@@ -911,10 +910,10 @@
|
|
|
911
910
|
font-size: 1.2rem;
|
|
912
911
|
}
|
|
913
912
|
|
|
914
|
-
|
|
913
|
+
.ndc_property_search .text-input {
|
|
915
914
|
width: 100%;
|
|
916
915
|
max-width: 300px;
|
|
917
|
-
}
|
|
916
|
+
}
|
|
918
917
|
|
|
919
918
|
.action-bar-wrap {
|
|
920
919
|
display: flex;
|
package/src/pages/ws/index.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.alignmentSettle {
|
|
2
2
|
/* Desktop: 4 fields per row */
|
|
3
|
-
.form-field
|
|
3
|
+
.form-field {
|
|
4
4
|
width: calc(25% - 15px) !important;
|
|
5
5
|
margin-right: 15px !important;
|
|
6
6
|
margin-bottom: 16px !important;
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
|
|
42
42
|
/* Tablet: 2 fields per row */
|
|
43
43
|
@media (max-width: 1024px) {
|
|
44
|
-
.form-field
|
|
44
|
+
.form-field {
|
|
45
45
|
width: calc(50% - 10px) !important;
|
|
46
46
|
min-width: calc(50% - 10px) !important;
|
|
47
47
|
max-width: calc(50% - 10px) !important;
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
|
|
66
66
|
/* Mobile: 1 field per row */
|
|
67
67
|
@media (max-width: 640px) {
|
|
68
|
-
.form-field
|
|
68
|
+
.form-field {
|
|
69
69
|
width: 100% !important;
|
|
70
70
|
min-width: 100% !important;
|
|
71
71
|
max-width: 100% !important;
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
|
|
93
93
|
/* Small mobile optimization */
|
|
94
94
|
@media (max-width: 480px) {
|
|
95
|
-
.form-field
|
|
95
|
+
.form-field {
|
|
96
96
|
margin-bottom: 10px !important;
|
|
97
97
|
}
|
|
98
98
|
|