PluginProbe
Extendify / 3.1.2
Extendify v3.1.2
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 / draft.css

draft.css in Extendify 3.1.2, at src/Draft/draft.css

87 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @import "tailwindcss" source(none) important;
2 @import "../tailwind.css" source(none);
3 @source ".";
4
5 .completion:after {
6 content: "";
7 display: block;
8 position: sticky;
9 bottom: 0;
10 left: 0;
11 width: 100%;
12 height: 1em;
13 background: linear-gradient(
14 to bottom,
15 rgba(240, 240, 240, 0),
16 rgb(240, 240, 240)
17 );
18 pointer-events: none;
19 }
20
21 .completion h1 {
22 font-size: 1em;
23 font-weight: 600;
24 margin-top: 0.67em;
25 margin-bottom: 0.67em;
26 line-height: 1em;
27 }
28
29 .completion h1:first-child {
30 margin-top: 0;
31 }
32
33 .completion h2 {
34 font-size: 1em;
35 font-weight: 600;
36 margin-top: 0.67em;
37 margin-bottom: 0.67em;
38 line-height: 1em;
39 }
40
41 .completion h3 {
42 font-size: 1em;
43 font-weight: 600;
44 margin-top: 0.67em;
45 margin-bottom: 0.67em;
46 line-height: 1em;
47 text-transform: none;
48 }
49
50 .completion p:last-child {
51 margin-bottom: 0;
52 }
53 /* no-prefix */
54 #extendify-draft\:draft,
55 .extendify-draft.h-full {
56 /* minus the bottom status bar */
57 height: calc(100% - 25px) !important;
58 }
59
60 @keyframes extendifyDraftPulse {
61 0%,
62 100% {
63 opacity: 1;
64 }
65 50% {
66 opacity: 0.5;
67 }
68 }
69 @keyframes extendifyDraftCallout {
70 0%,
71 100% {
72 opacity: 1;
73 transform: scale(1);
74 }
75 50% {
76 opacity: 0.7;
77 transform: scale(1.01);
78 }
79 }
80
81 .animate-pulse {
82 animation: extendifyDraftPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
83 }
84 .animate-pulse-flash {
85 animation: extendifyDraftCallout 0.5s cubic-bezier(0.42, 0, 0.58, 1);
86 }
87