Marthee commited on
Commit
b17f4a0
·
verified ·
1 Parent(s): eaa89d4

Update static/popups.css

Browse files
Files changed (1) hide show
  1. static/popups.css +74 -11
static/popups.css CHANGED
@@ -1,7 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  /* Modal Overlay */
2
  .mpopup, .overlay {
3
  display: none;
4
- position: fixed;
5
  z-index: 1;
6
  padding-top: 100px;
7
  left: 0;
@@ -33,8 +77,15 @@
33
  border-bottom: 1px solid #e9ecef;
34
  border-top-left-radius: 0.3rem;
35
  border-top-right-radius: 0.3rem;
 
 
 
 
 
 
36
  }
37
 
 
38
  .modal-header h2 {
39
  font-size: 14px;
40
  font-family: "acumin-pro", sans-serif;
@@ -49,7 +100,7 @@
49
  }
50
 
51
 
52
- #modal-bodyText{
53
  font-family: "acumin-pro", sans-serif;
54
  font-weight: 400;
55
  font-style: normal;
@@ -94,7 +145,18 @@
94
  text-decoration: none;
95
  cursor: pointer;
96
  }
97
-
 
 
 
 
 
 
 
 
 
 
 
98
  .text-right{
99
  text-align: right;
100
  float: right;
@@ -120,11 +182,12 @@
120
  }
121
 
122
  .dialog-btn#confirm:hover{
123
- background-color:#05470c;
124
- cursor: pointer;
125
- }
126
-
127
- .dialog-btn#cancel:hover{
128
- background-color:#430505;
129
- cursor: pointer;
130
- }
 
 
1
+ .mpopuppassword {
2
+ display: none; /* Ensure popup is hidden by default */
3
+ position: fixed;
4
+ top: 0;
5
+ left: 0;
6
+ width: 100%;
7
+ height: 100%;
8
+ background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
9
+ backdrop-filter: blur(10px); /* Apply blur effect to the background */
10
+ -webkit-backdrop-filter: blur(5px); /* For Safari support */
11
+ justify-content: center;
12
+ align-items: center;
13
+ }
14
+ /* Styling for the error message */
15
+ .error-message {
16
+ display: none;
17
+ background-color: #f44336;
18
+ color: white;
19
+ padding: 10px;
20
+ margin-top: 10px;
21
+ text-align: center;
22
+ border-radius: 5px;
23
+ }
24
+ #submitBtn{
25
+ background-color: #16c72e;
26
+ border: none;
27
+ padding: 10px 30px; /*102*/
28
+ cursor: pointer;
29
+ border-radius: 5px;
30
+ margin-left: 3px;
31
+ font-family: "acumin-pro", sans-serif;
32
+ font-weight: bold;
33
+ font-style: normal;
34
+ font-size: 14px;
35
+ color:white;
36
+ float:right;
37
+ display:inline-block;
38
+ }
39
+ .modal-contentpassword {
40
+ background: white;
41
+ padding: 20px;
42
+ border-radius: 8px;
43
+ }
44
+
45
  /* Modal Overlay */
46
  .mpopup, .overlay {
47
  display: none;
48
+ position: absolute;
49
  z-index: 1;
50
  padding-top: 100px;
51
  left: 0;
 
77
  border-bottom: 1px solid #e9ecef;
78
  border-top-left-radius: 0.3rem;
79
  border-top-right-radius: 0.3rem;
80
+
81
+ cursor: move;
82
+ cursor: grab;
83
+ &:active {
84
+ cursor: grabbing;
85
+ }
86
  }
87
 
88
+
89
  .modal-header h2 {
90
  font-size: 14px;
91
  font-family: "acumin-pro", sans-serif;
 
100
  }
101
 
102
 
103
+ #modal-bodyText ,#enterPText{
104
  font-family: "acumin-pro", sans-serif;
105
  font-weight: 400;
106
  font-style: normal;
 
145
  text-decoration: none;
146
  cursor: pointer;
147
  }
148
+ #passwordField{
149
+ font-size: 12px;
150
+ width: 310px;
151
+ height: 33px;
152
+ border-radius: 1px;
153
+ border-color:#646060;
154
+ margin-bottom: 3px;
155
+ margin-right: 0.2%;
156
+ font-family: "acumin-pro", sans-serif;
157
+ font-weight: 400;
158
+ font-style: normal;
159
+ }
160
  .text-right{
161
  text-align: right;
162
  float: right;
 
182
  }
183
 
184
  .dialog-btn#confirm:hover{
185
+ box-shadow: 0 0 8px 2px #098815;
186
+ color:black;
187
+ cursor: pointer;
188
+ }
189
+ .dialog-btn#cancel:hover{
190
+ box-shadow: 0 0 8px 2px #880909;
191
+ color:black;
192
+ cursor: pointer;
193
+ }