| @@ -105,8 +105,11 @@ | ||
| 105 | 105 | .swal2-popup .swal2-close { |
| 106 | 106 | background-color: unset !important; |
| 107 | 107 | outline: none !important; |
| 108 | 108 | color: rgb(204, 204, 204) !important; |
| 109 | + font-size: 30px; | |
| 110 | + box-shadow: none !important; | |
| 111 | + position: absolute; | |
| 109 | 112 | } |
| 110 | 113 | .swal2-popup .swal2-close:hover { |
| 111 | 114 | color: #f27474 !important; |
| 112 | 115 | } |
| @@ -135,8 +138,9 @@ | ||
| 135 | 138 | grid-template-columns: 1fr 1fr; |
| 136 | 139 | /** |
| 137 | 140 | * Style for the buttons |
| 138 | 141 | */ |
| 142 | + /* 5. Minimal Bottom Line */ | |
| 139 | 143 | } |
| 140 | 144 | .lp-question-edit-main [class*=lp-icon-] { |
| 141 | 145 | font-size: 1.25rem; |
| 142 | 146 | color: #787c82; |
| @@ -182,8 +186,32 @@ | ||
| 182 | 186 | .lp-question-edit-main .lp-btn-edit-primary:hover, .lp-question-edit-main .lp-btn-edit-primary.active, .lp-question-edit-main .lp-btn-edit-primary.active:hover { |
| 183 | 187 | background: #135E96; |
| 184 | 188 | color: #fff; |
| 185 | 189 | opacity: 1; |
| 190 | +} | |
| 191 | +.lp-question-edit-main .btn-line::after { | |
| 192 | + content: ""; | |
| 193 | + position: absolute; | |
| 194 | + bottom: 0; | |
| 195 | + left: 0; | |
| 196 | + height: 4px; | |
| 197 | + width: 0%; | |
| 198 | + background-color: #38bdf8; | |
| 199 | + animation: lineLoad 2s ease-in-out infinite; | |
| 200 | +} | |
| 201 | +@keyframes lineLoad { | |
| 202 | + 0% { | |
| 203 | + width: 0%; | |
| 204 | + left: 0; | |
| 205 | + } | |
| 206 | + 50% { | |
| 207 | + width: 100%; | |
| 208 | + left: 0; | |
| 209 | + } | |
| 210 | + 100% { | |
| 211 | + width: 0%; | |
| 212 | + left: 100%; | |
| 213 | + } | |
| 186 | 214 | } |
| 187 | 215 | |
| 188 | 216 | .question-edit-details .lp-section-collapse { |
| 189 | 217 | padding: 0; |