@tattvafoundation/upyog-css 1.0.25 → 1.0.27

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
@@ -10526,146 +10526,156 @@ button.submit-bar:hover {
10526
10526
  width: 100%; }
10527
10527
 
10528
10528
  .ebe-search-bar {
10529
- width: "50%"; }
10530
-
10531
- @media (max-width: 768px) {
10532
- .ebe-add-employee {
10533
- display: block; }
10534
- .ebe-add-employee-wrp {
10535
- min-width: auto; }
10536
- .ebe-search-bar {
10537
- width: "100%"; } }
10538
-
10539
- @media (max-width: 1024px) {
10540
- .ebe-custom-scroll {
10541
- display: block; } }
10542
-
10543
- .ebe-row-card-header {
10544
- background: #fff;
10545
- margin-top: 20px;
10546
- padding: 18px;
10547
- border-radius: 12px; }
10529
+ width: 50%; }
10548
10530
 
10549
10531
  .ebe-modal .popup-module {
10550
10532
  width: 70%;
10533
+ max-height: 80vh;
10534
+ overflow-y: auto;
10551
10535
  height: auto;
10536
+ display: -webkit-box;
10537
+ display: -ms-flexbox;
10538
+ display: flex;
10552
10539
  -webkit-box-orient: vertical;
10553
10540
  -webkit-box-direction: normal;
10554
10541
  -ms-flex-direction: column;
10555
10542
  flex-direction: column; }
10556
10543
 
10557
- .ebe-modal .modal-header, .ebe-modal .popup-module {
10544
+ .ebe-modal .popup-module-main {
10545
+ padding: 0; }
10546
+
10547
+ .ebe-modal .header-content, .ebe-modal .header-wrap {
10548
+ width: 100%;
10549
+ margin: 0 0 1rem; }
10550
+
10551
+ .ebe-modal-overlay {
10552
+ position: fixed;
10553
+ top: 0;
10554
+ left: 0;
10555
+ width: 100%;
10556
+ height: 100%;
10557
+ background-color: rgba(0, 0, 0, 0.5);
10558
10558
  display: -webkit-box;
10559
10559
  display: -ms-flexbox;
10560
- display: flex; }
10560
+ display: flex;
10561
+ -webkit-box-pack: center;
10562
+ -ms-flex-pack: center;
10563
+ justify-content: center;
10564
+ -webkit-box-align: center;
10565
+ -ms-flex-align: center;
10566
+ align-items: center;
10567
+ z-index: 9999; }
10561
10568
 
10562
- .ebe-modal .modal-header {
10569
+ .ebe-modal-content {
10570
+ background: #fff;
10571
+ width: 70%;
10572
+ border-radius: 8px;
10573
+ -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
10574
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
10575
+ overflow: hidden; }
10576
+
10577
+ .ebe-modal-header {
10578
+ display: -webkit-box;
10579
+ display: -ms-flexbox;
10580
+ display: flex;
10563
10581
  -webkit-box-pack: justify;
10564
10582
  -ms-flex-pack: justify;
10565
10583
  justify-content: space-between;
10566
10584
  -webkit-box-align: center;
10567
10585
  -ms-flex-align: center;
10568
10586
  align-items: center;
10569
- padding-bottom: 10px;
10570
- border-bottom: 1px solid #ddd; }
10587
+ padding: 16px 20px;
10588
+ border-bottom: 1px solid #eee; }
10571
10589
 
10572
- .ebe-modal .modal-header h1 {
10590
+ .ebe-modal-title {
10591
+ font-size: 18px;
10592
+ font-weight: 700;
10573
10593
  margin: 0; }
10574
10594
 
10575
- .ebe-modal .modal-body {
10576
- -webkit-box-flex: 1;
10577
- -ms-flex-positive: 1;
10578
- flex-grow: 1;
10579
- overflow-y: auto;
10580
- padding: 20px 0;
10581
- display: grid;
10582
- grid-gap: 16px;
10583
- gap: 16px; }
10595
+ .ebe-modal-close {
10596
+ background: none;
10597
+ border: none;
10598
+ font-size: 20px;
10599
+ cursor: pointer;
10600
+ padding: 0;
10601
+ color: #666; }
10602
+
10603
+ .ebe-modal-body {
10604
+ padding: 20px;
10605
+ max-height: 60vh;
10606
+ overflow-y: auto; }
10584
10607
 
10585
- .ebe-modal .modal-footer {
10608
+ .ebe-modal-action-bar {
10586
10609
  display: -webkit-box;
10587
10610
  display: -ms-flexbox;
10588
10611
  display: flex;
10589
- -webkit-box-pack: end;
10590
- -ms-flex-pack: end;
10591
- justify-content: flex-end;
10592
- grid-gap: 16px;
10593
- gap: 16px;
10594
- padding-top: 10px; }
10612
+ -webkit-box-pack: justify;
10613
+ -ms-flex-pack: justify;
10614
+ justify-content: space-between;
10615
+ padding: 16px 20px;
10616
+ border-top: 1px solid #eee; }
10595
10617
 
10596
- .ebe-modal .modal-footer button {
10597
- padding: 10px 20px;
10598
- font-size: 14px;
10599
- background-color: #007bff;
10618
+ .ebe-modal-action-container {
10619
+ width: 100%;
10620
+ text-align: center; }
10621
+
10622
+ .ebe-modal-submit {
10623
+ width: 100%;
10624
+ padding: 10px;
10625
+ background-color: #4285f4;
10600
10626
  color: #fff;
10601
10627
  border: none;
10602
10628
  border-radius: 4px;
10603
10629
  cursor: pointer; }
10604
10630
 
10605
- .ebe-modal .modal-footer button:disabled {
10606
- background-color: #ccc;
10607
- cursor: not-allowed; }
10608
-
10609
- .ebe-modal .modal-body.two-columns {
10610
- grid-template-columns: 1fr 1fr; }
10611
-
10612
- .ebe-modal .modal-body.four-columns {
10613
- grid-template-columns: 1fr 1fr 1fr 1fr; }
10614
-
10615
- .ebe-modal .modal-body .form-item {
10616
- padding: 8px;
10617
- border: 1px solid #ddd;
10618
- border-radius: 4px; }
10631
+ .ebe-row-card-header {
10632
+ background: #fff;
10633
+ margin-top: 20px;
10634
+ padding: 18px;
10635
+ border-radius: 12px; }
10619
10636
 
10620
10637
  @media screen and (max-width: 768px) {
10621
- .ebe-modal {
10638
+ .ebe-add-employee {
10639
+ display: block; }
10640
+ .ebe-add-employee-wrp {
10641
+ min-width: auto; }
10642
+ .ebe-search-bar {
10622
10643
  width: 100%;
10623
- padding: 10px; }
10624
- .ebe-modal .modal-header h1 {
10625
- font-size: 18px; }
10626
- .ebe-modal .modal-footer {
10627
- -webkit-box-orient: vertical;
10628
- -webkit-box-direction: normal;
10629
- -ms-flex-direction: column;
10630
- flex-direction: column;
10631
- grid-gap: 8px;
10632
- gap: 8px; }
10633
- .ebe-modal .modal-body.four-columns, .ebe-modal .modal-body.two-columns {
10634
- grid-template-columns: 1fr; } }
10644
+ margin-bottom: 10px; }
10645
+ .ebe-modal-content {
10646
+ width: 85%; }
10647
+ .ebe-modal-body {
10648
+ max-height: 50vh; } }
10635
10649
 
10636
- @media screen and (max-width: 480px) {
10637
- .ebe-modal {
10638
- padding: 5px; }
10639
- .ebe-modal .modal-header h1 {
10650
+ @media screen and (max-width: 600px) {
10651
+ .scheme-back {
10652
+ max-height: 90px; }
10653
+ .ebe-modal-content {
10654
+ width: 95%;
10655
+ padding: 0; }
10656
+ .ebe-modal-header {
10657
+ padding: 12px 16px; }
10658
+ .ebe-modal-title {
10640
10659
  font-size: 16px; }
10641
- .ebe-modal .modal-footer {
10642
- grid-gap: 4px;
10643
- gap: 4px; }
10644
- .ebe-modal .modal-body.four-columns, .ebe-modal .modal-body.two-columns {
10645
- grid-template-columns: 1fr; } }
10646
-
10647
- .ebe-modal .modal-body table {
10648
- width: 100%;
10649
- border-collapse: collapse; }
10650
-
10651
- .ebe-modal .modal-body table td, .ebe-modal .modal-body table th {
10652
- padding: 8px;
10653
- text-align: left;
10654
- border: 1px solid #ddd; }
10655
-
10656
- .ebe-modal .modal-body table th {
10657
- background-color: #f4f4f4; }
10658
-
10659
- .ebe-extension .employeeCard .label-field-pair h2 {
10660
- width: 0; }
10660
+ .ebe-modal-body {
10661
+ padding: 16px;
10662
+ max-height: 70vh; }
10663
+ .ebe-modal-action-bar {
10664
+ padding: 12px 16px; }
10665
+ .ebe-modal .popup-module {
10666
+ width: 95%;
10667
+ max-height: 90vh; } }
10661
10668
 
10662
- .ebe-label {
10663
- display: block;
10664
- font-weight: 700;
10665
- white-space: normal;
10666
- word-wrap: break-word;
10667
- max-width: 100%;
10668
- line-height: 1.2; }
10669
+ @media screen and (max-width: 375px) {
10670
+ .ebe-modal-content {
10671
+ width: 100%;
10672
+ border-radius: 0; }
10673
+ .ebe-modal-header {
10674
+ padding: 10px 12px; }
10675
+ .ebe-modal-body {
10676
+ padding: 12px; }
10677
+ .ebe-modal-action-bar {
10678
+ padding: 10px 12px; } }
10669
10679
 
10670
10680
  .multi-column-dropdown-wrap {
10671
10681
  position: relative;