diff options
| author | schererleander <leander@leander-scherer.de> | 2024-03-11 17:12:20 +0100 |
|---|---|---|
| committer | schererleander <leander@leander-scherer.de> | 2024-03-11 17:12:20 +0100 |
| commit | b77a7d585cf6cf2420dd770e42ba5b1e08a4e12c (patch) | |
| tree | 1e609feaf2356f80ea95cc0f61fc2ecddc875f6b /.themes/FlatColor/gtk-3.20/unity.css | |
| parent | be73020a8d6d0beefdedf6f2c2c1ffa3cc8a82b6 (diff) | |
initial commit
Diffstat (limited to '.themes/FlatColor/gtk-3.20/unity.css')
| -rw-r--r-- | .themes/FlatColor/gtk-3.20/unity.css | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/.themes/FlatColor/gtk-3.20/unity.css b/.themes/FlatColor/gtk-3.20/unity.css new file mode 100644 index 0000000..8b0316a --- /dev/null +++ b/.themes/FlatColor/gtk-3.20/unity.css @@ -0,0 +1,68 @@ +UnityPanelWidget, +.unity-panel { + border-width: 0 0 0px 0; + border-style: solid; + border-color: @theme_bg_color; + background-color: @theme_bg_color; + background-image: none; + color: @theme_selected_fg_color; +} + +.unity-panel.menubar, +.unity-panel .menubar { +} + +.unity-panel.menuitem, +.unity-panel .menuitem { + border-width: 0 1px; + color: @theme_selected_fg_color; +} + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + border-color: @theme_selected_bg_color; + background-color: @theme_selected_bg_color; + background-image: none; + color: @theme_selected_fg_color; +} + +SheetStyleDialog.unity-force-quit { + background-color: @theme_bg_color; +} + + +/* This will theme the top decoration, so the whole space above the window */ +UnityDecoration.top { + border: 0px solid shade (@theme_bg_color, 0.5); + border-bottom-width: 0; + border-radius: 4px 4px 0 0; /* Corner radius, only the top ones should be */ + padding: 1px 8px 0 8px; /* This padding will be applied to the content of the top layout */ + background-color: @theme_bg_color; /* Decoration background */ + color: @theme_fg_color; /* The foreground color will be used to paint the text */ + text-shadow: none; + box-shadow: none; +} + +/* Top decoration for inactive windows */ +UnityDecoration.top:backdrop { + border: 0px solid @theme_bg_color; + border-bottom-width: 0; + background-color: @theme_bg_color; + color: @theme_fg_color; +} + +/* Left decoration, it themes only the space at the left of the window */ +UnityDecoration.left, +/* Right decoration, it themes only the space at the right of the window */ +UnityDecoration.right, +/* Bottom decoration, it themes all the space below the window */ +UnityDecoration.bottom { + background-color: @theme_bg_color; +} + +/* Left, right and bottom decorations themes for inactive windows */ +UnityDecoration.left:backdrop, +UnityDecoration.right:backdrop, +UnityDecoration.bottom:backdrop { + background-color: @theme_bg_color; +} |
