PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.5.0
Easy Elements for Elementor – Addons & Website Templates v1.5.0
1.5.3 1.5.2 1.5.1 1.5.0 1.4.9 1.4.6 1.4.7 1.4.8 1.4.5 1.4.4 1.4.3 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 All 47 releases
easy-elements / assets / css / admin / missing-elementor-notice.css

missing-elementor-notice.css in Easy Elements for Elementor – Addons & Website Templates 1.5.0, at assets/css/admin/missing-elementor-notice.css

90 lines 2.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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