Spaces:
Sleeping
Sleeping
Update static/popups.css
Browse files- static/popups.css +31 -18
static/popups.css
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
-
|
|
|
|
| 2 |
display: none;
|
| 3 |
position: fixed;
|
| 4 |
z-index: 1;
|
|
@@ -8,22 +9,23 @@
|
|
| 8 |
width: 100%;
|
| 9 |
height: 100%;
|
| 10 |
overflow: auto;
|
| 11 |
-
background-color:
|
| 12 |
-
background-color: rgba(0,0,0,0.4);
|
| 13 |
}
|
| 14 |
-
|
|
|
|
|
|
|
| 15 |
position: relative;
|
| 16 |
background-color: #fff;
|
| 17 |
margin: auto;
|
| 18 |
padding: 0;
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
-
|
| 22 |
-
|
| 23 |
-
animation-name: animatetop;
|
| 24 |
-
animation-duration: 0.4s;
|
| 25 |
border-radius: 0.3rem;
|
| 26 |
}
|
|
|
|
|
|
|
| 27 |
.modal-header {
|
| 28 |
padding: 2px 12px;
|
| 29 |
background-color: #ffffff;
|
|
@@ -32,16 +34,21 @@
|
|
| 32 |
border-top-left-radius: 0.3rem;
|
| 33 |
border-top-right-radius: 0.3rem;
|
| 34 |
}
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
|
|
|
| 39 |
color: maroon;
|
| 40 |
}
|
|
|
|
|
|
|
| 41 |
.modal-body {
|
| 42 |
-
padding: 2px
|
| 43 |
-
|
| 44 |
}
|
|
|
|
|
|
|
| 45 |
#modal-bodyText{
|
| 46 |
font-family: "acumin-pro", sans-serif;
|
| 47 |
font-weight: 400;
|
|
@@ -89,7 +96,12 @@
|
|
| 89 |
}
|
| 90 |
|
| 91 |
.text-right{
|
| 92 |
-
text-align:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 93 |
}
|
| 94 |
.dialog-btn#confirm{
|
| 95 |
background-color:#098815;
|
|
@@ -100,10 +112,11 @@
|
|
| 100 |
.dialog-btn {
|
| 101 |
color: white;
|
| 102 |
font-weight: 600;
|
|
|
|
| 103 |
border: none;
|
| 104 |
border-radius: 5px;
|
| 105 |
height: 30px;
|
| 106 |
-
width:
|
| 107 |
}
|
| 108 |
|
| 109 |
.dialog-btn#confirm:hover{
|
|
|
|
| 1 |
+
/* Modal Overlay */
|
| 2 |
+
.mpopup, .overlay {
|
| 3 |
display: none;
|
| 4 |
position: fixed;
|
| 5 |
z-index: 1;
|
|
|
|
| 9 |
width: 100%;
|
| 10 |
height: 100%;
|
| 11 |
overflow: auto;
|
| 12 |
+
background-color: rgba(0, 0, 0, 0.4);
|
|
|
|
| 13 |
}
|
| 14 |
+
|
| 15 |
+
/* Modal Content */
|
| 16 |
+
.modal-content, .popup {
|
| 17 |
position: relative;
|
| 18 |
background-color: #fff;
|
| 19 |
margin: auto;
|
| 20 |
padding: 0;
|
| 21 |
+
overflow: visible;
|
| 22 |
+
display: block;
|
| 23 |
+
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
| 24 |
+
animation: animatetop 0.4s;
|
|
|
|
|
|
|
| 25 |
border-radius: 0.3rem;
|
| 26 |
}
|
| 27 |
+
|
| 28 |
+
/* Modal Header */
|
| 29 |
.modal-header {
|
| 30 |
padding: 2px 12px;
|
| 31 |
background-color: #ffffff;
|
|
|
|
| 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;
|
| 41 |
+
margin: 14px 0;
|
| 42 |
color: maroon;
|
| 43 |
}
|
| 44 |
+
|
| 45 |
+
/* Modal Body */
|
| 46 |
.modal-body {
|
| 47 |
+
padding: 2px 15px;
|
| 48 |
+
overflow: visible; /* Ensure tooltip is not clipped */
|
| 49 |
}
|
| 50 |
+
|
| 51 |
+
|
| 52 |
#modal-bodyText{
|
| 53 |
font-family: "acumin-pro", sans-serif;
|
| 54 |
font-weight: 400;
|
|
|
|
| 96 |
}
|
| 97 |
|
| 98 |
.text-right{
|
| 99 |
+
text-align: right;
|
| 100 |
+
float: right;
|
| 101 |
+
margin-top: -14px;
|
| 102 |
+
margin-bottom: 50px;
|
| 103 |
+
margin-right: 27px;
|
| 104 |
+
|
| 105 |
}
|
| 106 |
.dialog-btn#confirm{
|
| 107 |
background-color:#098815;
|
|
|
|
| 112 |
.dialog-btn {
|
| 113 |
color: white;
|
| 114 |
font-weight: 600;
|
| 115 |
+
font-size: 12px;
|
| 116 |
border: none;
|
| 117 |
border-radius: 5px;
|
| 118 |
height: 30px;
|
| 119 |
+
width: 50px;
|
| 120 |
}
|
| 121 |
|
| 122 |
.dialog-btn#confirm:hover{
|