PluginProbe
Extendify / 2.2.0
Extendify v2.2.0
3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 0.7.0 All 126 releases
extendify / src / HelpCenter / app.css

app.css in Extendify 2.2.0, at src/HelpCenter/app.css

59 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Adding CSS classes should be done with consideration and rarely */
2 @tailwind base;
3 @tailwind components;
4 @tailwind utilities;
5
6 .extendify-help-center button:not(:disabled) {
7 @apply cursor-pointer;
8 }
9
10 .extendify-help-center {
11 --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/);
12 --tw-ring-offset-width: 0px;
13 --tw-ring-offset-color: transparent;
14 --tw-ring-color: var(--ext-design-main, #2c39bd);
15 --tw-translate-x: 0;
16 --tw-translate-y: 0;
17 --tw-rotate: 0;
18 --tw-skew-x: 0;
19 --tw-skew-y: 0;
20 --tw-scale-x: 1;
21 --tw-scale-y: 1;
22 }
23
24 .extendify-help-center *,
25 .extendify-help-center *:after,
26 .extendify-help-center *:before {
27 box-sizing: border-box;
28 border: 0 solid #e5e7eb;
29 }
30
31 .extendify-chat-button:hover:after {
32 content: "";
33 @apply absolute left-0 top-0 h-full w-full bg-white/20;
34 }
35
36 .extendify-help-center .ask-another-question {
37 box-shadow:
38 0 -20px 25px -5px rgb(0 0 0 / 0.05),
39 0 -8px 10px -6px rgb(0 0 0 / 0.05);
40 }
41
42 .extendify-help-center .animate-pulse {
43 animation: extendifyChatPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
44 }
45
46 #wp-admin-bar-help-center-btn.extendify-help-center {
47 @apply mt-2 block md:mt-0;
48 }
49
50 @keyframes extendifyChatPulse {
51 0%,
52 100% {
53 opacity: 1;
54 }
55 50% {
56 opacity: 0.5;
57 }
58 }
59