@pmidc/upyog-css 1.2.36-dev.1.5 → 1.2.36-dev.1.7
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 +102 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/actionbar.scss +1 -1
- package/src/modules/BPA/index.scss +76 -0
- package/src/modules/TL/index.scss +13 -1
package/package.json
CHANGED
|
@@ -109,6 +109,82 @@
|
|
|
109
109
|
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
+
.inbox-name {
|
|
113
|
+
display: inline;
|
|
114
|
+
padding-left: 30px;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.back-button-container {
|
|
118
|
+
cursor: pointer;
|
|
119
|
+
width: fit-content;
|
|
120
|
+
display: flex;
|
|
121
|
+
font-family: 'Roboto Condensed', sans-serif;
|
|
122
|
+
color: rgba(13, 67, 167, var(--text-opacity));
|
|
123
|
+
font-size: 16px;
|
|
124
|
+
line-height: 24px;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.stepper-margin {
|
|
128
|
+
margin-left: 30px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.document-link-bpa {
|
|
132
|
+
text-decoration: none;
|
|
133
|
+
cursor: pointer;
|
|
134
|
+
transition: transform 0.2s, box-shadow 0.2s;
|
|
135
|
+
width: 250px;
|
|
136
|
+
|
|
137
|
+
&:hover .document-card {
|
|
138
|
+
transform: translateY(-4px);
|
|
139
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
.action-bar-wrap-menu {
|
|
145
|
+
box-shadow: rgba(0, 0, 0, 0.16) 0 -2px 8px;
|
|
146
|
+
z-index: 100;
|
|
147
|
+
height: auto;
|
|
148
|
+
|
|
149
|
+
@apply absolute bg-white text-right;
|
|
150
|
+
|
|
151
|
+
top: 100%;
|
|
152
|
+
left: 0;
|
|
153
|
+
width: 100%;
|
|
154
|
+
|
|
155
|
+
div {
|
|
156
|
+
@apply w-full;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.menu-wrap-position {
|
|
160
|
+
@apply absolute bg-white text-left mb-xs z-30 cursor-pointer;
|
|
161
|
+
|
|
162
|
+
top: 100%;
|
|
163
|
+
left: 0;
|
|
164
|
+
|
|
165
|
+
box-shadow: rgba(0, 0, 0, 0.14) 0 8px 10px 1px,
|
|
166
|
+
rgba(0, 0, 0, 0.12) 0 3px 14px 2px,
|
|
167
|
+
rgba(0, 0, 0, 0.2) 0 5px 5px -3px;
|
|
168
|
+
|
|
169
|
+
width: auto;
|
|
170
|
+
min-width: 200px;
|
|
171
|
+
max-width: calc(100% - 16px);
|
|
172
|
+
padding: 2px;
|
|
173
|
+
|
|
174
|
+
div {
|
|
175
|
+
@apply h-12 pl-sm py-md text-body-l text-text-primary;
|
|
176
|
+
|
|
177
|
+
&:hover {
|
|
178
|
+
@apply bg-grey-mid w-full;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.card-dropdown-wrapper {
|
|
185
|
+
position: relative;
|
|
186
|
+
}
|
|
187
|
+
|
|
112
188
|
/* Mobile */
|
|
113
189
|
@media (max-width: 768px) {
|
|
114
190
|
.upload-tag-container {
|
|
@@ -765,4 +765,16 @@
|
|
|
765
765
|
.TL-declaration-label {
|
|
766
766
|
cursor: pointer !important;
|
|
767
767
|
margin: 0 !important;
|
|
768
|
-
}
|
|
768
|
+
}
|
|
769
|
+
.TL-Tradetype-disabled {
|
|
770
|
+
height: 50px !important;
|
|
771
|
+
border: 1px solid #d1d5db !important;
|
|
772
|
+
border-radius: 8px !important;
|
|
773
|
+
background-color: #fafafa !important;
|
|
774
|
+
display: flex !important;
|
|
775
|
+
align-items: center !important;
|
|
776
|
+
padding-left: 10px !important;
|
|
777
|
+
font-size: 16px !important;
|
|
778
|
+
color: #333333 !important;
|
|
779
|
+
margin-bottom: 8px !important;
|
|
780
|
+
}
|