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 / Library / library.css

library.css in Extendify 2.2.0, at src/Library/library.css

48 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-library button:not(:disabled) {
7 @apply cursor-pointer;
8 }
9
10 .extendify-library {
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-library *,
25 .extendify-library *:after,
26 .extendify-library *:before {
27 /* no !important */
28 box-sizing: border-box;
29 border: 0 solid #e5e7eb;
30 }
31 .extendify-library.extendify-library-modal {
32 @apply fixed inset-0 z-high overflow-y-auto;
33 }
34 .extendify-library .components-toggle-group-control [role="presentation"] {
35 @apply bg-design-main;
36 }
37
38 /* Style contentType/pageType control in sidebar */
39 .ext-type-control .components-panel__body-title {
40 @apply -mx-5 my-0 bg-transparent p-1 px-5;
41 button {
42 @apply z-10 rounded border border-solid border-gray-300 shadow-none outline-none ring-design-main focus:ring;
43 &[aria-expanded="true"] {
44 @apply rounded-b-none border-b-0;
45 }
46 }
47 }
48