| 1 |
.easyel-missing-elementor-notice { |
| 2 |
position: relative; |
| 3 |
display: flex; |
| 4 |
align-items: center; |
| 5 |
gap: 16px; |
| 6 |
background: linear-gradient(135deg, #ede4ff 0%, #d8c6ff 60%, #c5b0ff 100%); |
| 7 |
border: 1px solid #b69cff; |
| 8 |
border-left: 5px solid #7455ff; |
| 9 |
border-radius: 8px; |
| 10 |
padding: 16px 20px; |
| 11 |
color: #1a1240; |
| 12 |
margin: 15px 20px 5px 0; |
| 13 |
box-shadow: 0 4px 14px rgba(116, 85, 255, 0.18), 0 1px 3px rgba(116, 85, 255, 0.12); |
| 14 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; |
| 15 |
overflow: hidden; |
| 16 |
} |
| 17 |
.easyel-missing-elementor-notice::before { |
| 18 |
content: ""; |
| 19 |
position: absolute; |
| 20 |
inset: 0; |
| 21 |
border-radius: 8px; |
| 22 |
pointer-events: none; |
| 23 |
box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45); |
| 24 |
} |
| 25 |
.easyel-missing-elementor-notice__icon { |
| 26 |
flex: 0 0 auto; |
| 27 |
width: 26px; |
| 28 |
height: 26px; |
| 29 |
border-radius: 50%; |
| 30 |
background: #7455ff; |
| 31 |
color: #fff; |
| 32 |
font-weight: 700; |
| 33 |
font-size: 15px; |
| 34 |
line-height: 1; |
| 35 |
display: flex; |
| 36 |
align-items: center; |
| 37 |
justify-content: center; |
| 38 |
box-shadow: 0 0 0 4px rgba(116, 85, 255, 0.22); |
| 39 |
} |
| 40 |
.easyel-missing-elementor-notice__text { |
| 41 |
flex: 1 1 auto; |
| 42 |
font-size: 24px; |
| 43 |
line-height: 1.4; |
| 44 |
color: #1a1240; |
| 45 |
font-weight: 500; |
| 46 |
letter-spacing: 0.1px; |
| 47 |
text-shadow: 0 1px 0 rgba(255,255,255,0.35); |
| 48 |
} |
| 49 |
.easyel-missing-elementor-notice__text strong { |
| 50 |
font-weight: 700; |
| 51 |
color: #4a2ed9; |
| 52 |
} |
| 53 |
.easyel-missing-elementor-notice__button { |
| 54 |
flex: 0 0 auto; |
| 55 |
display: inline-flex; |
| 56 |
align-items: center; |
| 57 |
gap: 8px; |
| 58 |
background: #e02424; |
| 59 |
color: #fff !important; |
| 60 |
font-weight: 600; |
| 61 |
font-size: 13px; |
| 62 |
padding: 9px 18px; |
| 63 |
border-radius: 6px; |
| 64 |
text-decoration: none; |
| 65 |
box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 0 0 0 rgba(224, 36, 36, 0); |
| 66 |
transition: background .15s ease, box-shadow .15s ease, transform .15s ease; |
| 67 |
border: none; |
| 68 |
animation: easyelMissingElementorPulse 2s infinite; |
| 69 |
} |
| 70 |
.easyel-missing-elementor-notice__button:hover, |
| 71 |
.easyel-missing-elementor-notice__button:focus { |
| 72 |
background: #b91c1c; |
| 73 |
color: #fff !important; |
| 74 |
box-shadow: 0 0 0 3px rgba(224, 36, 36, 0.30); |
| 75 |
outline: none; |
| 76 |
transform: translateY(-1px); |
| 77 |
animation: none; |
| 78 |
} |
| 79 |
@keyframes easyelMissingElementorPulse { |
| 80 |
0% { box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 0 0 0 rgba(224, 36, 36, 0.55); } |
| 81 |
70% { box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 0 0 8px rgba(224, 36, 36, 0); } |
| 82 |
100% { box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 0 0 0 rgba(224, 36, 36, 0); } |
| 83 |
} |
| 84 |
.easyel-missing-elementor-notice__button .dashicons { |
| 85 |
width: 16px; |
| 86 |
height: 16px; |
| 87 |
font-size: 16px; |
| 88 |
line-height: 1; |
| 89 |
} |
| 90 |
|