PluginProbe
Elementor Website Builder – more than just a page builder / 3.13.2
Elementor Website Builder – more than just a page builder v3.13.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.13.2, at assets/css/responsive-bar.css

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