PluginProbe
Elementor Website Builder – more than just a page builder / 3.26.2
Elementor Website Builder – more than just a page builder v3.26.2
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 / responsive-bar.css

responsive-bar.css in Elementor Website Builder – more than just a page builder 3.26.2, at assets/css/responsive-bar.css

191 lines 4.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*! elementor - v3.26.0 - 19-12-2024 */
2 :root {
3 --e-is-device-mode: 0;
4 }
5
6 .e-is-device-mode {
7 --e-is-device-mode: 1;
8 }
9
10 #elementor-responsive-bar {
11 position: sticky;
12 height: calc(40px * var(--e-is-device-mode));
13 align-self: stretch;
14 flex-shrink: 0;
15 transition: height 0.2s ease-in-out, opacity 0.1s;
16 left: 0;
17 top: 0;
18 z-index: 100;
19 opacity: var(--e-is-device-mode);
20 box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.33), 0 0 2px 1px rgba(0, 0, 0, 0.25), 0 0 6px -3px rgba(255, 255, 255, 0.5);
21 }
22 #elementor-responsive-bar:before {
23 content: "";
24 position: absolute;
25 inset: 0;
26 z-index: -1;
27 transform: scaleX(var(--e-preview-scale, 1));
28 }
29
30 .e-responsive-bar-switcher__option {
31 cursor: pointer;
32 text-align: center;
33 width: 22px;
34 height: 22px;
35 margin: 0 4px;
36 line-height: 22px;
37 border-radius: 3px;
38 font-size: 16px;
39 transition: var(--e-a-transition-hover);
40 }
41 .e-responsive-bar-switcher__option:hover {
42 color: var(--e-a-color-primary-bold);
43 background-color: #310132;
44 }
45 .e-responsive-bar-switcher__option[aria-selected=true] {
46 background-color: #3f444b;
47 color: #F9FAFA;
48 }
49 .e-responsive-bar-switcher__option input {
50 display: none;
51 }
52 .e-responsive-bar-switcher__option:not(:last-child) {
53 margin-inline-end: 6px;
54 }
55 .e-responsive-bar__button {
56 -webkit-appearance: none;
57 -moz-appearance: none;
58 appearance: none;
59 background: none;
60 border: 0 none;
61 cursor: pointer;
62 color: inherit;
63 }
64 .e-responsive-bar__button:focus:not(:focus-visible) {
65 outline: none;
66 }
67 .e-responsive-bar__button:hover {
68 color: #F1F2F3;
69 background-color: #3f444b;
70 }
71 .e-responsive-bar--pipe {
72 position: relative;
73 }
74 .e-responsive-bar--pipe::before {
75 content: "";
76 display: block;
77 height: 20px;
78 width: 1px;
79 background-color: #BABFC5;
80 position: absolute;
81 inset-inline-end: -5px;
82 top: calc(50% - 10px);
83 }
84 .e-responsive-bar__input-size {
85 background-color: transparent;
86 color: #BABFC5;
87 border: 1px solid #BABFC5;
88 padding: 0 3px;
89 width: 60px;
90 font-size: 12px;
91 line-height: 16px;
92 height: 18px;
93 margin: auto 8px auto 4px;
94 text-align: center;
95 }
96 .e-responsive-bar__input-size-separator {
97 color: #BABFC5;
98 }
99 .e-responsive-bar__input-size[disabled] {
100 background-color: transparent;
101 color: #818A96;
102 cursor: default;
103 -moz-appearance: none;
104 appearance: none;
105 -webkit-appearance: none;
106 }
107
108 #e-responsive-bar {
109 width: 100%;
110 margin-block-start: calc(-40px + 40px * var(--e-is-device-mode));
111 z-index: 1;
112 transition: margin-block-start 0.2s ease-in-out;
113 display: grid;
114 grid-template-columns: auto 1fr;
115 align-items: center;
116 justify-content: space-between;
117 color: #BABFC5;
118 background-color: #1f2124;
119 }
120 #e-responsive-bar__center, #e-responsive-bar__end, #e-responsive-bar-scale, #e-responsive-bar-switcher {
121 display: flex;
122 justify-content: center;
123 align-items: center;
124 font-size: 13px;
125 background-color: #1f2124;
126 padding: 2px 0;
127 }
128 #e-responsive-bar__end {
129 justify-self: end;
130 }
131 @media (min-width: 1400px) {
132 #e-responsive-bar {
133 grid-template-columns: 1fr auto 1fr;
134 }
135 #e-responsive-bar::before {
136 content: "";
137 }
138 }
139 #e-responsive-bar__close-button, #e-responsive-bar__settings-button {
140 width: 22px;
141 height: 22px;
142 border-radius: 3px;
143 margin: 7px 5px;
144 font-size: 16px;
145 }
146 #e-responsive-bar__size-inputs-wrapper {
147 display: flex;
148 align-items: center;
149 margin-inline-end: 8px;
150 color: #BABFC5;
151 }
152 #e-responsive-bar-switcher {
153 padding: 0 20px;
154 }
155 #e-responsive-bar-scale {
156 padding: 0 20px;
157 }
158 #e-responsive-bar-scale__value-wrapper {
159 margin: 0 14px;
160 min-width: 32px;
161 text-align: center;
162 }
163 #e-responsive-bar-scale__plus, #e-responsive-bar-scale__minus, #e-responsive-bar-scale__reset {
164 cursor: pointer;
165 width: 20px;
166 height: 20px;
167 display: flex;
168 align-items: center;
169 justify-content: center;
170 border-radius: 3px;
171 transition: all 0.3s;
172 }
173 #e-responsive-bar-scale__plus:hover, #e-responsive-bar-scale__minus:hover, #e-responsive-bar-scale__reset:hover {
174 color: #F1F2F3;
175 background-color: #3f444b;
176 }
177 #e-responsive-bar-scale__minus:before {
178 content: "";
179 display: block;
180 width: 13px;
181 height: 2px;
182 background-color: #BABFC5;
183 border-radius: 3px;
184 }
185 #e-responsive-bar-scale__minus:hover:before {
186 background-color: #F1F2F3;
187 }
188 #e-responsive-bar-scale__reset {
189 margin: 0 8px;
190 }
191 /*# sourceMappingURL=responsive-bar.css.map */