@pmidc/upyog-css 1.2.36-dev.1.11 → 1.2.36-dev.1.13

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
@@ -30,7 +30,6 @@ a {
30
30
  abbr[title] {
31
31
  border-bottom: none;
32
32
  text-decoration: underline;
33
- -webkit-text-decoration: underline dotted;
34
33
  text-decoration: underline dotted; }
35
34
 
36
35
  b, strong {
@@ -3994,7 +3993,10 @@ body {
3994
3993
  @media (min-width: 1024px) {
3995
3994
  .table {
3996
3995
  display: table;
3997
- overflow: hidden; } }
3996
+ overflow: hidden; }
3997
+ .table.cancel-table {
3998
+ display: block !important;
3999
+ overflow: scroll !important; } }
3998
4000
 
3999
4001
  .table:hover {
4000
4002
  -webkit-box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
@@ -4065,7 +4067,6 @@ body {
4065
4067
  color: #475569;
4066
4068
  vertical-align: middle;
4067
4069
  font-size: 14px;
4068
- word-break: break-word;
4069
4070
  -webkit-transition: color .2s ease;
4070
4071
  transition: color .2s ease;
4071
4072
  border-right: 1px solid transparent;
@@ -19627,8 +19628,12 @@ body {
19627
19628
  color: red; }
19628
19629
 
19629
19630
  .close-btn {
19630
- background-color: linear-gradient(135deg, #2563eb, #1e40af);
19631
- padding: 8px 16px; }
19631
+ padding: 5px 10px; }
19632
+ .close-btn:hover {
19633
+ -webkit-transform: translateY(-2px) !important;
19634
+ transform: translateY(-2px) !important;
19635
+ -webkit-box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32) !important;
19636
+ box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32) !important; }
19632
19637
 
19633
19638
  .advisory-text {
19634
19639
  font-size: 13px;
@@ -19762,6 +19767,73 @@ body {
19762
19767
  display: inline;
19763
19768
  padding-left: 180px; }
19764
19769
 
19770
+ .custom-loader-overlay {
19771
+ position: fixed;
19772
+ top: 0;
19773
+ left: 0;
19774
+ width: 100%;
19775
+ height: 100vh;
19776
+ -webkit-box-orient: vertical;
19777
+ -webkit-box-direction: normal;
19778
+ -ms-flex-direction: column;
19779
+ flex-direction: column;
19780
+ background-color: rgba(255, 255, 255, 0.95);
19781
+ z-index: 9999;
19782
+ grid-gap: 30px;
19783
+ gap: 30px;
19784
+ backdrop-filter: blur(15px); }
19785
+
19786
+ .custom-loader-overlay, .custom-loader-spinner-wrapper {
19787
+ display: -webkit-box;
19788
+ display: -ms-flexbox;
19789
+ display: flex;
19790
+ -webkit-box-align: center;
19791
+ -ms-flex-align: center;
19792
+ align-items: center;
19793
+ -webkit-box-pack: center;
19794
+ -ms-flex-pack: center;
19795
+ justify-content: center; }
19796
+
19797
+ .custom-loader-spinner-wrapper {
19798
+ width: 130px;
19799
+ height: 130px;
19800
+ position: relative;
19801
+ -webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
19802
+ filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08)); }
19803
+
19804
+ .custom-loader-spinner {
19805
+ position: absolute;
19806
+ width: 100%;
19807
+ height: 100%;
19808
+ border-right: 12px solid #f0f0f0;
19809
+ border-top: 12px solid #f0f0f0;
19810
+ border-color: #1a1a1a #1a1a1a #f0f0f0 #f0f0f0;
19811
+ border-style: solid;
19812
+ border-width: 12px;
19813
+ border-radius: 50%;
19814
+ -webkit-animation: spin .8s linear infinite;
19815
+ animation: spin .8s linear infinite;
19816
+ -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
19817
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
19818
+
19819
+ .custom-loader-text {
19820
+ font-size: 18px;
19821
+ font-weight: 700;
19822
+ color: #1a1a1a;
19823
+ letter-spacing: .5px;
19824
+ display: -webkit-box;
19825
+ display: -ms-flexbox;
19826
+ display: flex;
19827
+ -webkit-box-align: baseline;
19828
+ -ms-flex-align: baseline;
19829
+ align-items: baseline;
19830
+ grid-gap: 2px;
19831
+ gap: 2px; }
19832
+
19833
+ .custom-loader-dots {
19834
+ min-width: 20px;
19835
+ display: inline-block; }
19836
+
19765
19837
  .bpa-site-photograph-container {
19766
19838
  padding: 50px 0;
19767
19839
  display: -webkit-box;