@pmidc/upyog-css 1.2.28 → 1.2.30

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 CHANGED
@@ -2397,11 +2397,7 @@ body {
2397
2397
  justify-content: center;
2398
2398
  height: auto;
2399
2399
  min-height: 40px;
2400
- width: 100%;
2401
2400
  margin: 0; }
2402
- @media (min-width: 768px) {
2403
- .selector-button-border {
2404
- width: 30%; } }
2405
2401
  .selector-button-border:hover {
2406
2402
  background-color: #1e3a8a !important;
2407
2403
  opacity: .9; }
@@ -3103,6 +3099,10 @@ body {
3103
3099
  .mobile-number-input-with-prefix {
3104
3100
  padding-left: 45px !important; }
3105
3101
 
3102
+ @media only screen and (max-width: 768px) {
3103
+ .employee-card-input {
3104
+ font-size: 14px; } }
3105
+
3106
3106
  .emp-success-wrap, .success-wrap {
3107
3107
  display: block;
3108
3108
  --bg-opacity:1;
@@ -16968,7 +16968,8 @@ body {
16968
16968
  font-size: 14px;
16969
16969
  color: #374151;
16970
16970
  line-height: 1.6;
16971
- word-wrap: break-word; }
16971
+ word-wrap: break-word;
16972
+ word-break: break-word; }
16972
16973
 
16973
16974
  .custom-doc-container {
16974
16975
  display: inline-block;
@@ -20662,11 +20663,20 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
20662
20663
  .custom-fee-table-header {
20663
20664
  padding: 14px 12px;
20664
20665
  font-size: 12px;
20665
- white-space: nowrap; }
20666
+ white-space: nowrap;
20667
+ background: linear-gradient(135deg, #1e3a8a, #2563eb);
20668
+ color: #fff;
20669
+ font-weight: 600;
20670
+ text-align: left; }
20666
20671
 
20667
20672
  .custom-fee-table-cell {
20668
20673
  padding: 14px 12px;
20669
- font-size: 13px; }
20674
+ font-size: 16px; }
20675
+
20676
+ @media (max-width: 768px) {
20677
+ .custom-fee-table-cell {
20678
+ font-size: 13px;
20679
+ padding: 10px 8px; } }
20670
20680
 
20671
20681
  .custom-fee-table-cell-taxhead {
20672
20682
  min-width: 150px; }
@@ -20695,9 +20705,13 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
20695
20705
 
20696
20706
  .custom-fee-history-header {
20697
20707
  padding: 12px 8px;
20698
- font-size: 12px;
20708
+ font-size: 14px;
20699
20709
  white-space: nowrap;
20700
- min-width: 120px; }
20710
+ min-width: 120px;
20711
+ background-color: #0d43a7;
20712
+ color: #fff;
20713
+ font-weight: 600;
20714
+ text-align: left; }
20701
20715
 
20702
20716
  .custom-fee-history-cell {
20703
20717
  padding: 12px 8px;
@@ -20705,7 +20719,7 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
20705
20719
  vertical-align: top; }
20706
20720
 
20707
20721
  .custom-fee-history-content {
20708
- font-size: 12px; }
20722
+ font-size: 14px; }
20709
20723
 
20710
20724
  .custom-fee-history-label, .custom-fee-history-row {
20711
20725
  margin-bottom: 8px; }
@@ -20715,13 +20729,268 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
20715
20729
 
20716
20730
  .custom-fee-table-input {
20717
20731
  width: 100%;
20718
- padding: 8px;
20719
- border: 1px solid #ccc;
20720
20732
  border-radius: 4px;
20721
20733
  font-size: 13px;
20722
20734
  -webkit-box-sizing: border-box;
20723
20735
  box-sizing: border-box; }
20724
20736
 
20737
+ .custom-fee-mobile-cards {
20738
+ display: -webkit-box;
20739
+ display: -ms-flexbox;
20740
+ display: flex;
20741
+ -webkit-box-orient: vertical;
20742
+ -webkit-box-direction: normal;
20743
+ -ms-flex-direction: column;
20744
+ flex-direction: column;
20745
+ grid-gap: 12px;
20746
+ gap: 12px;
20747
+ padding: 0; }
20748
+
20749
+ .custom-fee-card {
20750
+ background: #fff;
20751
+ border: 1px solid #e0e0e0;
20752
+ border-radius: 8px;
20753
+ padding: 16px;
20754
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
20755
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
20756
+ -webkit-transition: -webkit-box-shadow .2s ease;
20757
+ transition: -webkit-box-shadow .2s ease;
20758
+ transition: box-shadow .2s ease;
20759
+ transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
20760
+ transition: box-shadow .2s ease,-webkit-box-shadow .2s ease; }
20761
+ .custom-fee-card:hover {
20762
+ -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
20763
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12); }
20764
+
20765
+ .custom-fee-card-header {
20766
+ display: -webkit-box;
20767
+ display: -ms-flexbox;
20768
+ display: flex;
20769
+ -webkit-box-pack: justify;
20770
+ -ms-flex-pack: justify;
20771
+ justify-content: space-between;
20772
+ -webkit-box-align: center;
20773
+ -ms-flex-align: center;
20774
+ align-items: center;
20775
+ margin-bottom: 12px;
20776
+ padding-bottom: 12px;
20777
+ border-bottom: 2px solid #f0f0f0; }
20778
+
20779
+ .custom-fee-card-type {
20780
+ font-weight: 700;
20781
+ font-size: 14px;
20782
+ color: #1a1a1a;
20783
+ text-transform: capitalize;
20784
+ letter-spacing: .3px; }
20785
+
20786
+ .custom-fee-card-original-amount {
20787
+ font-size: 12px;
20788
+ color: #888;
20789
+ font-weight: 500; }
20790
+
20791
+ .custom-fee-card-content {
20792
+ -webkit-box-orient: vertical;
20793
+ -webkit-box-direction: normal;
20794
+ -ms-flex-direction: column;
20795
+ flex-direction: column;
20796
+ grid-gap: 14px;
20797
+ gap: 14px; }
20798
+
20799
+ .custom-fee-card-content, .custom-fee-card-row {
20800
+ display: -webkit-box;
20801
+ display: -ms-flexbox;
20802
+ display: flex; }
20803
+
20804
+ .custom-fee-card-row {
20805
+ grid-gap: 12px;
20806
+ gap: 12px; }
20807
+
20808
+ .custom-fee-card-field {
20809
+ display: -webkit-box;
20810
+ display: -ms-flexbox;
20811
+ display: flex;
20812
+ -webkit-box-orient: vertical;
20813
+ -webkit-box-direction: normal;
20814
+ -ms-flex-direction: column;
20815
+ flex-direction: column;
20816
+ grid-gap: 6px;
20817
+ gap: 6px;
20818
+ -webkit-box-flex: 1;
20819
+ -ms-flex: 1;
20820
+ flex: 1; }
20821
+
20822
+ .custom-fee-card-label {
20823
+ font-weight: 600;
20824
+ font-size: 12px;
20825
+ color: #000;
20826
+ text-transform: uppercase;
20827
+ letter-spacing: .5px; }
20828
+
20829
+ .custom-fee-card-value {
20830
+ font-size: 13px;
20831
+ color: #333;
20832
+ padding: 8px;
20833
+ background: #f9f9f9;
20834
+ border-radius: 4px;
20835
+ min-height: 32px;
20836
+ display: -webkit-box;
20837
+ display: -ms-flexbox;
20838
+ display: flex;
20839
+ -webkit-box-align: center;
20840
+ -ms-flex-align: center;
20841
+ align-items: center;
20842
+ border: 1px solid #e8e8e8; }
20843
+
20844
+ .custom-fee-card-total-row {
20845
+ background: linear-gradient(135deg, #f5f7fa, #f0f3f8);
20846
+ border: 2px solid #d0d8e8;
20847
+ margin-top: 8px; }
20848
+ .custom-fee-card-total-row .custom-fee-card-header {
20849
+ display: none; }
20850
+
20851
+ .custom-fee-card-total-content {
20852
+ display: -webkit-box;
20853
+ display: -ms-flexbox;
20854
+ display: flex;
20855
+ -webkit-box-orient: vertical;
20856
+ -webkit-box-direction: normal;
20857
+ -ms-flex-direction: column;
20858
+ flex-direction: column;
20859
+ grid-gap: 8px;
20860
+ gap: 8px;
20861
+ -webkit-box-align: center;
20862
+ -ms-flex-align: center;
20863
+ align-items: center;
20864
+ text-align: center;
20865
+ padding: 12px 0; }
20866
+
20867
+ .custom-fee-card-total-label {
20868
+ font-size: 12px;
20869
+ color: #1f4ed4;
20870
+ font-weight: 600;
20871
+ text-transform: uppercase;
20872
+ letter-spacing: .5px; }
20873
+
20874
+ .custom-fee-card-total-value {
20875
+ font-size: 24px;
20876
+ font-weight: 800;
20877
+ color: #1a1a1a;
20878
+ letter-spacing: .2px; }
20879
+
20880
+ .custom-fee-card-total-words {
20881
+ font-size: 11px;
20882
+ color: #1f4ed4;
20883
+ font-style: italic;
20884
+ margin-top: 4px;
20885
+ line-height: 1.4; }
20886
+
20887
+ .custom-fee-mobile-wrapper {
20888
+ display: -webkit-box;
20889
+ display: -ms-flexbox;
20890
+ display: flex;
20891
+ -webkit-box-orient: vertical;
20892
+ -webkit-box-direction: normal;
20893
+ -ms-flex-direction: column;
20894
+ flex-direction: column;
20895
+ grid-gap: 16px;
20896
+ gap: 16px; }
20897
+
20898
+ .custom-fee-mobile-history {
20899
+ background: #fff;
20900
+ border: 1px solid #e0e0e0;
20901
+ overflow: hidden;
20902
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
20903
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
20904
+ margin-top: 20px; }
20905
+
20906
+ .custom-fee-history-toggle-mobile {
20907
+ display: -webkit-box;
20908
+ display: -ms-flexbox;
20909
+ display: flex;
20910
+ -webkit-box-pack: justify;
20911
+ -ms-flex-pack: justify;
20912
+ justify-content: space-between;
20913
+ -webkit-box-align: center;
20914
+ -ms-flex-align: center;
20915
+ align-items: center;
20916
+ padding: 16px;
20917
+ cursor: pointer;
20918
+ background: linear-gradient(135deg, #f5f7fa, #f0f3f8);
20919
+ border-bottom: 1px solid #e0e0e0;
20920
+ -webkit-transition: all .2s ease;
20921
+ transition: all .2s ease; }
20922
+ .custom-fee-history-toggle-mobile:active {
20923
+ background: linear-gradient(135deg, #f0f3f8, #e8ecfa); }
20924
+
20925
+ .custom-fee-history-title {
20926
+ font-weight: 700;
20927
+ font-size: 14px;
20928
+ color: #1a1a1a;
20929
+ text-transform: uppercase;
20930
+ letter-spacing: .5px; }
20931
+
20932
+ .custom-fee-history-icon {
20933
+ font-size: 12px;
20934
+ color: #666;
20935
+ font-weight: 600; }
20936
+
20937
+ .custom-fee-history-cards {
20938
+ display: -webkit-box;
20939
+ display: -ms-flexbox;
20940
+ display: flex;
20941
+ -webkit-box-orient: vertical;
20942
+ -webkit-box-direction: normal;
20943
+ -ms-flex-direction: column;
20944
+ flex-direction: column;
20945
+ grid-gap: 12px;
20946
+ gap: 12px; }
20947
+
20948
+ .custom-fee-history-card {
20949
+ background: #f9f9f9;
20950
+ border: 1px solid #e8e8e8;
20951
+ border-radius: 6px;
20952
+ overflow: hidden; }
20953
+
20954
+ .custom-fee-history-card-header {
20955
+ background: #0d43a7;
20956
+ padding: 12px 16px;
20957
+ font-weight: 600;
20958
+ font-size: 15px;
20959
+ color: #fff;
20960
+ border-bottom: 1px solid #0d43a7;
20961
+ text-transform: uppercase;
20962
+ letter-spacing: .3px; }
20963
+
20964
+ .custom-fee-history-card-content {
20965
+ padding: 12px 16px;
20966
+ display: -webkit-box;
20967
+ display: -ms-flexbox;
20968
+ display: flex;
20969
+ -webkit-box-orient: vertical;
20970
+ -webkit-box-direction: normal;
20971
+ -ms-flex-direction: column;
20972
+ flex-direction: column;
20973
+ grid-gap: 10px;
20974
+ gap: 10px; }
20975
+
20976
+ .custom-fee-history-entry {
20977
+ padding: 8px 0;
20978
+ border-bottom: 1px solid #e8e8e8; }
20979
+ .custom-fee-history-entry:last-child {
20980
+ border-bottom: none; }
20981
+
20982
+ .custom-fee-history-item {
20983
+ font-size: 14px;
20984
+ color: #555;
20985
+ line-height: 1.5;
20986
+ word-break: break-word; }
20987
+
20988
+ .custom-fee-history-label-bold {
20989
+ color: #333;
20990
+ font-weight: 700;
20991
+ font-size: 15px;
20992
+ margin-right: 4px; }
20993
+
20725
20994
  .checklist-document-table-wrapper {
20726
20995
  overflow-x: auto;
20727
20996
  -webkit-overflow-scrolling: touch;
@@ -20760,7 +21029,7 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
20760
21029
  text-align: center; }
20761
21030
 
20762
21031
  .checklist-table-cell-doc-name {
20763
- font-size: 13px;
21032
+ font-size: 16px;
20764
21033
  min-width: 150px; }
20765
21034
 
20766
21035
  .checklist-table-cell-file {
@@ -20772,8 +21041,17 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
20772
21041
  .checklist-table-input {
20773
21042
  width: 100%;
20774
21043
  padding: 8px;
20775
- border: 1px solid #ccc;
20776
21044
  border-radius: 4px;
20777
21045
  font-size: 13px;
20778
21046
  -webkit-box-sizing: border-box;
20779
21047
  box-sizing: border-box; }
21048
+
21049
+ @media (min-width: 1024px) {
21050
+ .data-card .employee-card-sub-heade {
21051
+ margin-bottom: 40px;
21052
+ font-size: 18px;
21053
+ font-weight: 700;
21054
+ color: #1e293b;
21055
+ text-align: left;
21056
+ text-transform: uppercase;
21057
+ letter-spacing: .4px; } }