@pmidc/upyog-css 1.2.25 → 1.2.26
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 +80 -4
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/card.scss +48 -0
- package/src/components/multiLink.scss +31 -1
- package/src/index.scss +8 -0
- package/src/pages/employee/inbox.scss +12 -0
package/dist/index.css
CHANGED
|
@@ -1797,7 +1797,17 @@ body {
|
|
|
1797
1797
|
-webkit-transition: all .2s ease;
|
|
1798
1798
|
transition: all .2s ease;
|
|
1799
1799
|
-webkit-box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
|
|
1800
|
-
box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
|
|
1800
|
+
box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
|
|
1801
|
+
padding: 0 12px;
|
|
1802
|
+
display: -webkit-box;
|
|
1803
|
+
display: -ms-flexbox;
|
|
1804
|
+
display: flex;
|
|
1805
|
+
-webkit-box-align: center;
|
|
1806
|
+
-ms-flex-align: center;
|
|
1807
|
+
align-items: center;
|
|
1808
|
+
-webkit-box-pack: center;
|
|
1809
|
+
-ms-flex-pack: center;
|
|
1810
|
+
justify-content: center; }
|
|
1801
1811
|
.card-link:hover {
|
|
1802
1812
|
-webkit-transform: translateY(-2px);
|
|
1803
1813
|
transform: translateY(-2px);
|
|
@@ -1815,6 +1825,38 @@ body {
|
|
|
1815
1825
|
color: #fff;
|
|
1816
1826
|
line-height: 40px; }
|
|
1817
1827
|
|
|
1828
|
+
@media only screen and (max-width: 1024px) {
|
|
1829
|
+
.card-link {
|
|
1830
|
+
height: 36px;
|
|
1831
|
+
width: 160px;
|
|
1832
|
+
font-size: 12px;
|
|
1833
|
+
padding: 0 10px; }
|
|
1834
|
+
.card-link header {
|
|
1835
|
+
line-height: 36px;
|
|
1836
|
+
font-size: 11px; } }
|
|
1837
|
+
|
|
1838
|
+
@media only screen and (max-width: 768px) {
|
|
1839
|
+
.card-link {
|
|
1840
|
+
height: 34px;
|
|
1841
|
+
width: 145px;
|
|
1842
|
+
font-size: 11px;
|
|
1843
|
+
padding: 0 8px; }
|
|
1844
|
+
.card-link header {
|
|
1845
|
+
line-height: 34px;
|
|
1846
|
+
font-size: 10px; } }
|
|
1847
|
+
|
|
1848
|
+
@media only screen and (max-width: 480px) {
|
|
1849
|
+
.card-link {
|
|
1850
|
+
height: 32px;
|
|
1851
|
+
width: 120px;
|
|
1852
|
+
font-size: 10px;
|
|
1853
|
+
padding: 0 6px;
|
|
1854
|
+
-webkit-box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
|
|
1855
|
+
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2); }
|
|
1856
|
+
.card-link header {
|
|
1857
|
+
line-height: 32px;
|
|
1858
|
+
font-size: 9px; } }
|
|
1859
|
+
|
|
1818
1860
|
.document-card-link {
|
|
1819
1861
|
min-width: 160px;
|
|
1820
1862
|
margin: 12px;
|
|
@@ -5433,8 +5475,29 @@ video::-webkit-media-controls-panel {
|
|
|
5433
5475
|
|
|
5434
5476
|
.multilink-link-button {
|
|
5435
5477
|
margin: 0;
|
|
5436
|
-
font-size:
|
|
5437
|
-
|
|
5478
|
+
font-size: 14px;
|
|
5479
|
+
font-weight: 600;
|
|
5480
|
+
-webkit-transition: all .2s ease;
|
|
5481
|
+
transition: all .2s ease; }
|
|
5482
|
+
|
|
5483
|
+
@media only screen and (max-width: 1024px) {
|
|
5484
|
+
.multilink-link-button {
|
|
5485
|
+
font-size: 13px;
|
|
5486
|
+
padding: 0 8px; } }
|
|
5487
|
+
|
|
5488
|
+
@media only screen and (max-width: 768px) {
|
|
5489
|
+
.multilink-link-button {
|
|
5490
|
+
font-size: 11px;
|
|
5491
|
+
padding: 0 6px;
|
|
5492
|
+
line-height: 1.3; } }
|
|
5493
|
+
|
|
5494
|
+
@media only screen and (max-width: 480px) {
|
|
5495
|
+
.multilink-link-button {
|
|
5496
|
+
font-size: 9px;
|
|
5497
|
+
padding: 0 4px;
|
|
5498
|
+
line-height: 1.2;
|
|
5499
|
+
max-width: 100px;
|
|
5500
|
+
word-break: break-word; } }
|
|
5438
5501
|
|
|
5439
5502
|
.multilink-optionWrap {
|
|
5440
5503
|
right: 0;
|
|
@@ -9534,7 +9597,8 @@ video::-webkit-media-controls-panel {
|
|
|
9534
9597
|
width: 100%;
|
|
9535
9598
|
height: 120px;
|
|
9536
9599
|
min-height: 120px;
|
|
9537
|
-
max-height: 120px;
|
|
9600
|
+
max-height: 120px;
|
|
9601
|
+
min-width: 324px; } }
|
|
9538
9602
|
.employee-quick-service-card.hovered {
|
|
9539
9603
|
-webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
|
|
9540
9604
|
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
|
|
@@ -9542,6 +9606,12 @@ video::-webkit-media-controls-panel {
|
|
|
9542
9606
|
transform: translateY(-4px) scale(1.02);
|
|
9543
9607
|
border: 2px solid rgba(79, 101, 216, 0.3); }
|
|
9544
9608
|
|
|
9609
|
+
@media (max-width: 768px) {
|
|
9610
|
+
.employee-main-application-details .employeeCard {
|
|
9611
|
+
padding: 10px; }
|
|
9612
|
+
.cp {
|
|
9613
|
+
width: 60px !important; } }
|
|
9614
|
+
|
|
9545
9615
|
.card-icon-container {
|
|
9546
9616
|
display: -webkit-box;
|
|
9547
9617
|
display: -ms-flexbox;
|
|
@@ -20530,3 +20600,9 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
|
|
|
20530
20600
|
align-items: baseline;
|
|
20531
20601
|
grid-gap: 20px;
|
|
20532
20602
|
gap: 20px; }
|
|
20603
|
+
|
|
20604
|
+
.gcButton {
|
|
20605
|
+
margin-top: 15px; }
|
|
20606
|
+
|
|
20607
|
+
.tableClass {
|
|
20608
|
+
margin-top: 60px; }
|