PluginProbe
WebberZone Top 10 — Popular Posts / 4.3.4
WebberZone Top 10 — Popular Posts v4.3.4
4.5.1 4.5.0 4.4.3 4.4.2 4.4.1 4.4.0 4.3.4 4.3.3 4.3.2 4.3.1 4.3.0 trunk 1.0 1.0.1 1.1 1.2 1.3 1.4 1.4.1 1.5 1.5.1 1.5.2 1.5.3 1.6 1.6.1 All 117 releases
top-10 / includes / admin / css / admin-banner-rtl.css

admin-banner-rtl.css in WebberZone Top 10 — Popular Posts 4.3.4, at includes/admin/css/admin-banner-rtl.css

170 lines 3.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Admin banner base styles
2 ----------------------------------*/
3 .wz-admin-banner {
4 margin: 0 -20px 0 -20px;
5 padding: 26px 36px;
6 background: linear-gradient(-180deg, #041f4e 0%, #031337 55%, #010713 100%);
7 color: #f6f8ff;
8 display: flex;
9 align-items: center;
10 gap: 28px;
11 box-sizing: border-box;
12 }
13
14 .wz-admin-banner__intro {
15 flex: 1 1 auto;
16 min-width: 220px;
17 color: #f6f8ff;
18 }
19
20 .wz-admin-banner__eyebrow {
21 display: inline-block;
22 padding: 2px 10px;
23 border-radius: 999px;
24 background-color: rgba(127, 195, 255, 0.2);
25 color: #7fc3ff;
26 font-size: 0.9rem;
27 text-transform: uppercase;
28 letter-spacing: 0.06em;
29 font-weight: 600;
30 }
31
32 .wz-admin-banner__title {
33 margin: 10px 0 6px;
34 font-size: 1rem;
35 font-weight: 700;
36 line-height: 1.24;
37 color: #ffffff;
38 }
39
40 .wz-admin-banner__text {
41 margin: 0;
42 font-size: 0.9rem;
43 line-height: 1.6;
44 color: #dfe6ff;
45 max-width: 540px;
46 }
47
48 .wz-admin-banner__links {
49 display: flex;
50 flex-wrap: wrap;
51 gap: 10px;
52 align-items: center;
53 }
54
55 .wz-admin-banner__link {
56 display: inline-flex;
57 align-items: center;
58 gap: 8px;
59 padding: 9px 16px;
60 border-radius: 999px;
61 font-size: 0.9rem;
62 font-weight: 600;
63 text-decoration: none;
64 color: inherit;
65 transition:
66 transform 0.2s ease,
67 box-shadow 0.2s ease,
68 background-color 0.2s ease,
69 outline 0.2s ease;
70 outline: none;
71 }
72
73 .wz-admin-banner__link:focus,
74 .wz-admin-banner__link:focus-visible,
75 .wz-admin-banner__link:active {
76 outline: 2px solid rgba(255, 255, 255, 0.7);
77 outline-offset: 2px;
78 }
79
80 .wz-admin-banner__link--primary {
81 background-color: #ffbd59;
82 color: #0a0a0a;
83 box-shadow: 0 8px 24px rgba(255, 189, 89, 0.45);
84 }
85
86 .wz-admin-banner__link--primary:hover,
87 .wz-admin-banner__link--primary:focus,
88 .wz-admin-banner__link--primary:focus-visible,
89 .wz-admin-banner__link--primary:active {
90 background-color: #f08c00;
91 transform: translateY(-1px);
92 outline: 2px solid #ffffff;
93 outline-offset: 2px;
94 color: #0a0a0a;
95 }
96
97 .wz-admin-banner__link--secondary {
98 background-color: rgba(3, 32, 117, 0.18);
99 color: #f6f8ff;
100 box-shadow: inset 0 0 0 1px rgba(3, 32, 117, 0.45);
101 }
102
103 .wz-admin-banner__link--secondary:hover,
104 .wz-admin-banner__link--secondary:focus,
105 .wz-admin-banner__link--secondary:focus-visible,
106 .wz-admin-banner__link--secondary:active {
107 background-color: #0d2f8d;
108 transform: translateY(-1px);
109 outline: 2px solid #ffbd59;
110 outline-offset: 2px;
111 color: #ffffff;
112 }
113
114 .wz-admin-banner__link--current {
115 background-color: #c8302e;
116 color: #ffffff;
117 box-shadow: 0 8px 24px rgba(200, 48, 46, 0.4);
118 }
119
120 .wz-admin-banner__link--current:hover,
121 .wz-admin-banner__link--current:focus,
122 .wz-admin-banner__link--current:focus-visible,
123 .wz-admin-banner__link--current:active {
124 background-color: #e04841;
125 color: #ffffff;
126 outline: 2px solid #ffffff;
127 outline-offset: 2px;
128 transform: translateY(-1px);
129 }
130
131 @media screen and (max-width: 782px) {
132 .wz-admin-banner {
133 flex-direction: column;
134 align-items: flex-start;
135 gap: 18px;
136 margin: 0 -16px 12px -16px;
137 padding: 20px 20px;
138 }
139
140 .wz-admin-banner__title {
141 font-size: 1.125rem;
142 }
143 }
144
145 @media (prefers-reduced-motion: reduce) {
146 .wz-admin-banner__link {
147 transition: none;
148 }
149 }
150
151 @media screen and (max-width: 600px) {
152 body.wp-admin #wpbody {
153 padding-top: 0;
154 }
155
156 body.wp-admin .wz-admin-banner {
157 margin: 0px -16px 0 -16px;
158 padding: 48px 20px 28px 20px;
159 }
160
161 .wz-admin-banner__link {
162 font-size: 0.875rem;
163 }
164
165 body.wp-admin .wz-admin-banner__title,
166 body.wp-admin .wz-admin-banner__text {
167 display: none;
168 }
169 }
170