PluginProbe
Extendify / 3.2.1
Extendify v3.2.1
3.2.1 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 All 127 releases
← All changes | src/Notifications/notifications.css +22 -0 3.1.63.2.1 View file →
@@ -5,8 +5,30 @@
5 5 :root {
6 6 color-scheme: only light;
7 7 }
8 8
9 +/* The bar is fixed, and the agent reserves its height only while its panel is open. */
10 +/* no-prefix */
11 +body {
12 + padding-bottom: var(--extendify-notification-bar-height, 0px);
13 +}
14 +
15 +/* Fixed positioning escapes the body padding; --bottom is TranslatePress's own offset. */
16 +/* no-prefix */
17 +.trp-floating-switcher.trp-switcher-position-bottom {
18 + bottom: calc(
19 + var(--bottom, 0px) +
20 + var(--extendify-notification-bar-height, 0px)
21 + );
22 +}
23 +
24 +/* The legacy switcher; a site setting picks which generation renders. */
25 +/* no-prefix */
26 +#trp-floater-ls.trp-bottom-right,
27 +#trp-floater-ls.trp-bottom-left {
28 + bottom: var(--extendify-notification-bar-height, 0px);
29 +}
30 +
9 31 /* Without this the wrapper divs stretch the pill to the host bar's full height. */
10 32 /* no-prefix */
11 33 #wpadminbar .extendify-notifications,
12 34 #wpadminbar .extendify-notifications .extendify-shared,