@tattvafoundation/upyog-css 1.0.25 → 1.0.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 +74 -0
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/ebe.scss +71 -1
package/dist/index.css
CHANGED
|
@@ -10667,6 +10667,80 @@ button.submit-bar:hover {
|
|
|
10667
10667
|
max-width: 100%;
|
|
10668
10668
|
line-height: 1.2; }
|
|
10669
10669
|
|
|
10670
|
+
.ebe-modal-overlay {
|
|
10671
|
+
position: fixed;
|
|
10672
|
+
top: 0;
|
|
10673
|
+
left: 0;
|
|
10674
|
+
width: 100%;
|
|
10675
|
+
height: 100%;
|
|
10676
|
+
background: rgba(0, 0, 0, 0.5);
|
|
10677
|
+
display: -webkit-box;
|
|
10678
|
+
display: -ms-flexbox;
|
|
10679
|
+
display: flex;
|
|
10680
|
+
-webkit-box-pack: center;
|
|
10681
|
+
-ms-flex-pack: center;
|
|
10682
|
+
justify-content: center;
|
|
10683
|
+
-webkit-box-align: center;
|
|
10684
|
+
-ms-flex-align: center;
|
|
10685
|
+
align-items: center;
|
|
10686
|
+
z-index: 1000; }
|
|
10687
|
+
|
|
10688
|
+
.ebe-modal-content {
|
|
10689
|
+
background: #fff;
|
|
10690
|
+
width: 70%;
|
|
10691
|
+
border-radius: 8px;
|
|
10692
|
+
-webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
10693
|
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
10694
|
+
overflow: hidden; }
|
|
10695
|
+
|
|
10696
|
+
.ebe-modal-header {
|
|
10697
|
+
display: -webkit-box;
|
|
10698
|
+
display: -ms-flexbox;
|
|
10699
|
+
display: flex;
|
|
10700
|
+
-webkit-box-pack: justify;
|
|
10701
|
+
-ms-flex-pack: justify;
|
|
10702
|
+
justify-content: space-between;
|
|
10703
|
+
-webkit-box-align: center;
|
|
10704
|
+
-ms-flex-align: center;
|
|
10705
|
+
align-items: center;
|
|
10706
|
+
padding: 16px;
|
|
10707
|
+
border-bottom: 1px solid #ddd; }
|
|
10708
|
+
|
|
10709
|
+
.ebe-modal-title {
|
|
10710
|
+
font-size: 18px;
|
|
10711
|
+
font-weight: 700; }
|
|
10712
|
+
|
|
10713
|
+
.ebe-modal-close {
|
|
10714
|
+
background: transparent;
|
|
10715
|
+
border: none;
|
|
10716
|
+
cursor: pointer; }
|
|
10717
|
+
|
|
10718
|
+
.ebe-modal-body {
|
|
10719
|
+
max-height: 60vh;
|
|
10720
|
+
overflow-y: auto; }
|
|
10721
|
+
|
|
10722
|
+
.ebe-modal-action-bar {
|
|
10723
|
+
display: -webkit-box;
|
|
10724
|
+
display: -ms-flexbox;
|
|
10725
|
+
display: flex;
|
|
10726
|
+
-webkit-box-pack: justify;
|
|
10727
|
+
-ms-flex-pack: justify;
|
|
10728
|
+
justify-content: space-between;
|
|
10729
|
+
padding: 16px;
|
|
10730
|
+
border-top: 1px solid #ddd; }
|
|
10731
|
+
|
|
10732
|
+
.ebe-modal-action-container {
|
|
10733
|
+
width: 100%;
|
|
10734
|
+
text-align: center; }
|
|
10735
|
+
|
|
10736
|
+
.ebe-modal-submit {
|
|
10737
|
+
width: 100%; }
|
|
10738
|
+
|
|
10739
|
+
@media (max-width: 480px) {
|
|
10740
|
+
.ebe-modal-content {
|
|
10741
|
+
width: 95%;
|
|
10742
|
+
max-width: 100%; } }
|
|
10743
|
+
|
|
10670
10744
|
.multi-column-dropdown-wrap {
|
|
10671
10745
|
position: relative;
|
|
10672
10746
|
font-size: 16px;
|