From 0c8fa3a2a270747f3dbb54fe8792f3f0aec997e3 Mon Sep 17 00:00:00 2001 From: Ryan Schanzenbacher Date: Mon, 3 Aug 2026 01:22:44 -0400 Subject: Initial commit: combined darwin + guix-linux home-manager flake Supersedes nix-dotfiles (darwin) and guix-dotfiles' ad-hoc nix-home-manager flake (linux). See README.md/MIGRATION.md. --- .../styles/components/data/data-widget-loader.js | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 users/ryan/modules/simple-bar/simple-bar-source/lib/styles/components/data/data-widget-loader.js (limited to 'users/ryan/modules/simple-bar/simple-bar-source/lib/styles/components/data/data-widget-loader.js') diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/components/data/data-widget-loader.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/components/data/data-widget-loader.js new file mode 100755 index 0000000..62710aa --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/components/data/data-widget-loader.js @@ -0,0 +1,32 @@ +// Styles for /lib/components/data/data-widget-loader.jsx component +export const dataWidgetLoaderStyles = /* css */ ` +.data-widget-loader { + animation: data-widget-loader-appearance 320ms var(--transition-easing); +} +@keyframes data-widget-loader-appearance { + 0% { + opacity: 0; + } +} +.data-widget-loader::before { + content: ""; + width: 10px; + height: 10px; + margin-right: 7px; + background-color: currentColor; + border-radius: 50%; + opacity: 0.75; +} +.data-widget-loader__inner { + border: 2px solid transparent; + border-bottom-color: currentColor; + box-sizing: border-box; + border-radius: 50%; + animation: data-widget-loader-spining 640ms ease infinite; +} +@keyframes data-widget-loader-spining { + 100% { + transform: rotate(360deg); + } +} +`; -- cgit v1.3.1