Breaking changes in v1.8.0 #427
amnweb
announced in
Announcements
Replies: 1 comment 2 replies
-
For anybody looking for a quick fix if your taskbar icons are looking weird, just use this: If there is an easier solution, please share! |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all, quick note about a styling change in v1.8.0 that affects theme authors and custom configs.
All Widgets
I moved container padding out of the runtime config and into theme CSS. This is a change to how widget-level padding is applied: instead of setting
container_padding
in config, you now define the padding in your theme stylesheet.Before (config) You might have had this in widget config:
After (per-widget CSS) Move that into your theme CSS and scope it per widget:
Migration steps
Open your theme's CSS (
styles.css
). For each widget that usedcontainer_padding
, add a scoped rule.Examples:
Clock:
.clock-widget .widget-container { padding: 0 8px 0 8px; }
CPU:
.cpu-widget .widget-container { padding: 4px 6px; }
Deprecated now in v1.8.0:
container_padding
is still accepted and will be removed in some future release, please migrate your themes at your convenience to avoid issues later.Taskbar Widget
The taskbar widget has been completely rewritten. It now supports per-screen, per-workspace, and all-screens modes, correctly handles app flashing, and reliably loads UWP apps on startup (which caused problems before)
Overall performance is much improved and CPU usage is now very low or near zero. Because this is a major change, you may need to update your taskbar styles. Please read the Taskbar documentation to see the new options and examples, and to learn how to update your theme.
Beta Was this translation helpful? Give feedback.
All reactions