PluginProbe
Extendify / 1.17.1
Extendify v1.17.1
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 1.17.1, at src/Draft/app.css

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