PluginProbe
Extendify / 1.14.0
Extendify v1.14.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 1.14.0, at src/Library/library.css

44 lines 1.1 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 {
7 --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/);
8 --tw-ring-offset-width: 0px;
9 --tw-ring-offset-color: transparent;
10 --tw-ring-color: var(--ext-design-main, #2c39bd);
11 --tw-translate-x: 0;
12 --tw-translate-y: 0;
13 --tw-rotate: 0;
14 --tw-skew-x: 0;
15 --tw-skew-y: 0;
16 --tw-scale-x: 1;
17 --tw-scale-y: 1;
18 }
19
20 .extendify-library *,
21 .extendify-library *:after,
22 .extendify-library *:before {
23 /* no !important */
24 box-sizing: border-box;
25 border: 0 solid #e5e7eb;
26 }
27 .extendify-library.extendify-library-modal {
28 @apply fixed z-high inset-0 overflow-y-auto;
29 }
30 .extendify-library .components-toggle-group-control [role="presentation"] {
31 @apply bg-design-main;
32 }
33
34 /* Style contentType/pageType control in sidebar */
35 .ext-type-control .components-panel__body-title {
36 @apply my-0 -mx-5 p-1 px-5 bg-transparent;
37 button {
38 @apply border border-gray-300 border-solid shadow-none outline-none focus:ring ring-design-main z-10 rounded;
39 &[aria-expanded="true"] {
40 @apply border-b-0 rounded-b-none;
41 }
42 }
43 }
44