PluginProbe
Elementor Website Builder – more than just a page builder / 4.1.0-dev3
Elementor Website Builder – more than just a page builder v4.1.0-dev3
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 / admin-top-bar.css

admin-top-bar.css in Elementor Website Builder – more than just a page builder 4.1.0-dev3, at assets/css/admin-top-bar.css

151 lines 4.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 #e-dashboard-widget-admin-top-bar {
2 position: absolute;
3 opacity: 0;
4 pointer-events: none;
5 }
6
7 #e-admin-top-bar-root {
8 font-family: var(--e-a-font-family);
9 background: var(--e-a-bg-default);
10 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
11 display: none;
12 position: absolute;
13 inset-block-start: 0;
14 inset-inline-end: 0;
15 width: calc(100% - 160px);
16 z-index: 1;
17 }
18 body.folded #e-admin-top-bar-root {
19 width: calc(100% - 36px);
20 }
21 #e-admin-top-bar-root .e-admin-top-bar {
22 display: flex;
23 height: 50px;
24 justify-content: space-between;
25 padding: 0 16px;
26 }
27 #e-admin-top-bar-root .page-title-action {
28 font-size: 12px;
29 font-weight: 500;
30 line-height: 1.2;
31 text-transform: uppercase;
32 text-decoration: none;
33 padding: 8px 16px;
34 outline: none;
35 border: none;
36 border-radius: var(--e-a-border-radius);
37 background-color: var(--e-a-btn-bg);
38 color: var(--e-a-btn-color-invert);
39 transition: var(--e-a-transition-hover);
40 }
41 #e-admin-top-bar-root .page-title-action:hover {
42 background-color: var(--e-a-btn-bg-hover);
43 color: var(--e-a-btn-color-invert);
44 }
45 #e-admin-top-bar-root .e-admin-top-bar__heading {
46 display: inline-flex;
47 align-items: center;
48 justify-content: center;
49 margin-inline-end: 40px;
50 }
51 #e-admin-top-bar-root .e-admin-top-bar__main-area {
52 display: inline-flex;
53 align-items: center;
54 justify-content: center;
55 }
56 #e-admin-top-bar-root .e-admin-top-bar__main-area button {
57 margin: 0 4px;
58 }
59 #e-admin-top-bar-root .e-admin-top-bar__secondary-area {
60 display: inline-flex;
61 align-items: center;
62 justify-content: center;
63 }
64 #e-admin-top-bar-root .e-admin-top-bar__heading-title {
65 color: var(--e-a-color-txt);
66 font-size: 15px;
67 font-weight: 700;
68 padding: 0 8px;
69 line-height: normal;
70 }
71 #e-admin-top-bar-root .e-admin-top-bar__main-area-buttons {
72 display: inline-flex;
73 gap: 5px;
74 }
75 #e-admin-top-bar-root.e-admin-top-bar--active {
76 display: block;
77 }
78 #e-admin-top-bar-root:not(.e-admin-top-bar--active) ~ #wpbody .wrap h1, #e-admin-top-bar-root:not(.e-admin-top-bar--active) ~ #wpbody .wrap .page-title-action {
79 display: inline-block;
80 }
81 #e-admin-top-bar-root .e-admin-top-bar__bar-button {
82 align-items: center;
83 cursor: pointer;
84 display: inline-flex;
85 justify-content: center;
86 margin: 0 10px;
87 text-decoration: none;
88 color: var(--e-a-color-txt);
89 }
90 #e-admin-top-bar-root .e-admin-top-bar__bar-button.accent {
91 color: var(--e-a-color-accent);
92 }
93 #e-admin-top-bar-root .e-admin-top-bar__bar-button.accent:hover .e-admin-top-bar__bar-button-title,
94 #e-admin-top-bar-root .e-admin-top-bar__bar-button.accent:hover .e-admin-top-bar__bar-button-icon {
95 color: var(--e-a-color-accent);
96 }
97 #e-admin-top-bar-root .e-admin-top-bar__bar-button .crown-icon {
98 font-size: 14px;
99 }
100 #e-admin-top-bar-root .e-admin-top-bar__bar-button .e-admin-top-bar__bar-button-icon {
101 margin: 0 4px;
102 }
103 #e-admin-top-bar-root .e-admin-top-bar__bar-button:hover .e-admin-top-bar__bar-button-title,
104 #e-admin-top-bar-root .e-admin-top-bar__bar-button:hover .e-admin-top-bar__bar-button-icon {
105 color: var(--e-a-color-txt-hover);
106 }
107 #e-admin-top-bar-root .e-admin-top-bar__bar-button-title {
108 font-size: 13px;
109 font-weight: 500;
110 margin: 0 4px;
111 line-height: normal;
112 }
113
114 @media screen and (max-width: 960px) {
115 #e-admin-top-bar-root {
116 width: calc(100% - 36px);
117 }
118 }
119 @media screen and (max-width: 782px) {
120 #e-admin-top-bar-root {
121 width: 100%;
122 }
123 }
124 @media screen and (max-width: 600px) {
125 #e-admin-top-bar-root {
126 top: 46px;
127 }
128 }
129 @media (max-width: 768px) {
130 #e-admin-top-bar-root .e-admin-top-bar__main-area-buttons {
131 position: absolute;
132 top: calc(100% + 10px);
133 }
134 #e-admin-top-bar-root {
135 display: inline-flex;
136 align-items: center;
137 justify-content: center;
138 }
139 #e-admin-top-bar-root .e-admin-top-bar__secondary-area .e-admin-top-bar__secondary-area-buttons {
140 display: none;
141 }
142 #e-admin-top-bar-root .e-admin-top-bar__secondary-area > .e-admin-top-bar__bar-button .e-admin-top-bar__bar-button-title {
143 display: none;
144 }
145 }
146 @media (min-width: 768px) {
147 #e-admin-top-bar-root .e-admin-top-bar__secondary-area .e-admin-top-bar__secondary-area-buttons {
148 display: flex;
149 }
150 }
151 /*# sourceMappingURL=admin-top-bar.css.map */