PluginProbe
Elementor Website Builder – more than just a page builder / 3.34.1
Elementor Website Builder – more than just a page builder v3.34.1
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / assets / css / editor-one-elements.css

editor-one-elements.css in Elementor Website Builder – more than just a page builder 3.34.1, at assets/css/editor-one-elements.css

148 lines 3.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 input[type=checkbox] {
2 width: 16px;
3 height: 16px;
4 background-color: var(--e-one-palette-background-default);
5 border: 1px solid var(--e-one-palette-divider);
6 border-radius: 4px;
7 box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.25);
8 cursor: pointer;
9 appearance: none;
10 -webkit-appearance: none;
11 -moz-appearance: none;
12 position: relative;
13 transition: var(--e-a-transition-hover);
14 flex-shrink: 0;
15 }
16 input[type=checkbox]:hover {
17 border-color: var(--e-one-palette-action-focus);
18 }
19 input[type=checkbox]:focus {
20 outline: none;
21 border-color: var(--e-one-palette-action-focus);
22 box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.25), 0 0 0 1px var(--e-one-palette-action-focus);
23 }
24 input[type=checkbox]:checked {
25 background-color: var(--e-one-palette-background-default);
26 }
27 input[type=checkbox]:checked::after {
28 content: "";
29 position: absolute;
30 inset-block-start: 50%;
31 inset-inline-start: 50%;
32 transform: translate(-50%, -50%) rotate(45deg);
33 width: 4px;
34 height: 8px;
35 border: 2px solid var(--e-one-palette-text-primary);
36 border-block-start: none;
37 border-inline-start: none;
38 border-radius: 0;
39 }
40 input[type=checkbox]:checked::before {
41 content: "";
42 }
43 input[type=checkbox]:disabled {
44 opacity: 0.5;
45 cursor: not-allowed;
46 }
47
48 input[type=radio] {
49 width: 16px;
50 height: 16px;
51 background-color: var(--e-one-palette-background-default);
52 border: 1px solid var(--e-one-palette-divider);
53 border-radius: 50%;
54 box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.25);
55 cursor: pointer;
56 appearance: none;
57 -webkit-appearance: none;
58 -moz-appearance: none;
59 position: relative;
60 transition: var(--e-a-transition-hover);
61 flex-shrink: 0;
62 }
63 input[type=radio]:hover {
64 border-color: var(--e-one-palette-action-focus);
65 }
66 input[type=radio]:focus {
67 outline: none;
68 border-color: var(--e-one-palette-action-focus);
69 box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.25), 0 0 0 1px var(--e-one-palette-action-focus);
70 }
71 input[type=radio]:checked {
72 background-color: var(--e-one-palette-background-default);
73 }
74 input[type=radio]:checked::after {
75 content: "";
76 position: absolute;
77 inset-block-start: 50%;
78 inset-inline-start: 50%;
79 transform: translate(-50%, -50%);
80 width: 8px;
81 height: 8px;
82 background-color: var(--e-one-palette-text-primary);
83 border-radius: 50%;
84 }
85 input[type=radio]:checked::before {
86 content: "";
87 }
88 input[type=radio]:disabled {
89 opacity: 0.5;
90 cursor: not-allowed;
91 }
92
93 select,
94 .wp-core-ui select {
95 border: 1px solid var(--e-one-palette-secondary-main);
96 color: var(--e-one-palette-text-primary);
97 background-color: var(--e-one-palette-background-default);
98 border-radius: 3px;
99 height: 30px;
100 font-size: 13px;
101 font-family: var(--e-one-typography-fontFamily);
102 font-weight: 400;
103 line-height: 1.2;
104 transition: var(--e-a-transition-hover);
105 }
106 select:hover,
107 .wp-core-ui select:hover {
108 border-color: var(--e-one-palette-action-focus);
109 }
110 select:focus,
111 .wp-core-ui select:focus {
112 border-color: var(--e-one-palette-action-focus);
113 box-shadow: 0 0 0 1px var(--e-one-palette-action-focus);
114 outline: none;
115 }
116 select:disabled,
117 .wp-core-ui select:disabled {
118 opacity: 0.5;
119 cursor: not-allowed;
120 }
121
122 input[type=text],
123 input[type=email],
124 input[type=url],
125 input[type=password],
126 input[type=number],
127 input[type=search],
128 input[type=tel],
129 textarea {
130 border: 1px solid var(--e-one-palette-divider);
131 color: var(--e-one-palette-text-primary);
132 background-color: var(--e-one-palette-background-default);
133 border-radius: var(--e-a-border-radius);
134 box-shadow: none;
135 }
136 input[type=text]:focus,
137 input[type=email]:focus,
138 input[type=url]:focus,
139 input[type=password]:focus,
140 input[type=number]:focus,
141 input[type=search]:focus,
142 input[type=tel]:focus,
143 textarea:focus {
144 border-color: var(--e-one-palette-action-focus);
145 box-shadow: 0 0 0 1px var(--e-one-palette-action-focus);
146 outline: none;
147 }
148 /*# sourceMappingURL=editor-one-elements.css.map */