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 / Draft / app.css

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

111 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @tailwind base;
2 @tailwind components;
3 @tailwind utilities;
4
5 .extendify-draft button:not(:disabled) {
6 @apply cursor-pointer;
7 }
8
9 .extendify-draft {
10 --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/);
11 --tw-ring-offset-width: 0px;
12 --tw-ring-offset-color: transparent;
13 --tw-ring-color: var(--ext-design-main, #2c39bd);
14 --tw-translate-x: 0;
15 --tw-translate-y: 0;
16 --tw-rotate: 0;
17 --tw-skew-x: 0;
18 --tw-skew-y: 0;
19 --tw-scale-x: 1;
20 --tw-scale-y: 1;
21 }
22
23 .extendify-draft *,
24 .extendify-draft *:after,
25 .extendify-draft *:before {
26 box-sizing: border-box;
27 /* border: 0 solid #e5e7eb; */
28 }
29
30 .extendify-draft .completion:after {
31 content: "";
32 display: block;
33 position: sticky;
34 bottom: 0;
35 left: 0;
36 width: 100%;
37 height: 1em;
38 background: linear-gradient(
39 to bottom,
40 rgba(240, 240, 240, 0),
41 rgb(240, 240, 240)
42 );
43 pointer-events: none;
44 }
45
46 .extendify-draft .completion h1 {
47 font-size: 1em;
48 font-weight: 600;
49 margin-top: 0.67em;
50 margin-bottom: 0.67em;
51 line-height: 1em;
52 }
53
54 .extendify-draft .completion h1:first-child {
55 margin-top: 0;
56 }
57
58 .extendify-draft .completion h2 {
59 font-size: 1em;
60 font-weight: 600;
61 margin-top: 0.67em;
62 margin-bottom: 0.67em;
63 line-height: 1em;
64 }
65
66 .extendify-draft .completion h3 {
67 font-size: 1em;
68 font-weight: 600;
69 margin-top: 0.67em;
70 margin-bottom: 0.67em;
71 line-height: 1em;
72 text-transform: none;
73 }
74
75 .extendify-draft .completion p:last-child {
76 margin-bottom: 0;
77 }
78 #extendify-draft\:draft,
79 .extendify-draft.h-full {
80 /* minus the bottom status bar */
81 height: calc(100% - 25px) !important;
82 }
83
84 @keyframes extendifyDraftPulse {
85 0%,
86 100% {
87 opacity: 1;
88 }
89 50% {
90 opacity: 0.5;
91 }
92 }
93 @keyframes extendifyDraftCallout {
94 0%,
95 100% {
96 opacity: 1;
97 transform: scale(1);
98 }
99 50% {
100 opacity: 0.7;
101 transform: scale(1.01);
102 }
103 }
104
105 .extendify-draft .animate-pulse {
106 animation: extendifyDraftPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
107 }
108 .extendify-draft .animate-pulse-flash {
109 animation: extendifyDraftCallout 0.5s cubic-bezier(0.42, 0, 0.58, 1);
110 }
111