From e025f2f7a72948489db75ce4f1b1ebea7f1b1a83 Mon Sep 17 00:00:00 2001 From: Haas Date: Tue, 6 Jun 2023 19:33:54 +0200 Subject: [PATCH] removed png files changed the background of Qtableview and Qlistview. removed png files changed the background of Qtableview and Qlistview. --- CMakePresets.json | 59 ++++++ src/Gui/Stylesheets/Dark-blue.qss | 11 +- src/Gui/Stylesheets/Dark-green.qss | 11 +- src/Gui/Stylesheets/Dark-modern-blue.qss | 13 +- src/Gui/Stylesheets/Dark-modern-green.qss | 11 +- src/Gui/Stylesheets/Dark-modern-orange.qss | 13 +- src/Gui/Stylesheets/Dark-modern-pink.qss | 13 +- src/Gui/Stylesheets/Dark-orange.qss | 11 +- src/Gui/Stylesheets/Dark-pink.qss | 11 +- src/Gui/Stylesheets/Darker-blue.qss | 11 +- src/Gui/Stylesheets/Darker-green.qss | 11 +- src/Gui/Stylesheets/Darker-orange.qss | 10 +- src/Gui/Stylesheets/Darker-pink.qss | 11 +- src/Gui/Stylesheets/Light-blue.qss | 11 +- src/Gui/Stylesheets/Light-green.qss | 11 +- src/Gui/Stylesheets/Light-modern-blue.qss | 13 +- src/Gui/Stylesheets/Light-modern-green.qss | 13 +- src/Gui/Stylesheets/Light-modern-orange.qss | 15 +- src/Gui/Stylesheets/Light-modern-pink.qss | 15 +- src/Gui/Stylesheets/Light-orange.qss | 197 +++++++++--------- src/Gui/Stylesheets/Light-pink.qss | 195 ++++++++--------- .../images_dark-light/checkbox_checked.png | Bin 263 -> 0 bytes .../checkbox_checked_disabled.svg | 83 ++++++++ .../checkbox_checked_hover.png | Bin 266 -> 0 bytes .../checkbox_checked_pressed.png | Bin 425 -> 0 bytes .../images_dark-light/checkbox_unchecked.png | Bin 159 -> 0 bytes .../checkbox_unchecked_disabled.png | Bin 5618 -> 0 bytes .../checkbox_unchecked_disabled.svg | 71 ++++--- .../checkbox_unchecked_hover.png | Bin 159 -> 0 bytes .../checkbox_unchecked_pressed.png | Bin 320 -> 0 bytes .../images_dark-light/radiobutton_checked.png | Bin 355 -> 0 bytes .../radiobutton_checked_hover.png | Bin 532 -> 0 bytes .../radiobutton_checked_pressed.png | Bin 599 -> 0 bytes .../radiobutton_unchecked.png | Bin 240 -> 0 bytes .../radiobutton_unchecked_hover.png | Bin 492 -> 0 bytes .../radiobutton_unchecked_pressed.png | Bin 556 -> 0 bytes 36 files changed, 543 insertions(+), 277 deletions(-) create mode 100644 CMakePresets.json delete mode 100644 src/Gui/Stylesheets/images_dark-light/checkbox_checked.png create mode 100644 src/Gui/Stylesheets/images_dark-light/checkbox_checked_disabled.svg delete mode 100644 src/Gui/Stylesheets/images_dark-light/checkbox_checked_hover.png delete mode 100644 src/Gui/Stylesheets/images_dark-light/checkbox_checked_pressed.png delete mode 100644 src/Gui/Stylesheets/images_dark-light/checkbox_unchecked.png delete mode 100644 src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_disabled.png delete mode 100644 src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_hover.png delete mode 100644 src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_pressed.png delete mode 100644 src/Gui/Stylesheets/images_dark-light/radiobutton_checked.png delete mode 100644 src/Gui/Stylesheets/images_dark-light/radiobutton_checked_hover.png delete mode 100644 src/Gui/Stylesheets/images_dark-light/radiobutton_checked_pressed.png delete mode 100644 src/Gui/Stylesheets/images_dark-light/radiobutton_unchecked.png delete mode 100644 src/Gui/Stylesheets/images_dark-light/radiobutton_unchecked_hover.png delete mode 100644 src/Gui/Stylesheets/images_dark-light/radiobutton_unchecked_pressed.png diff --git a/CMakePresets.json b/CMakePresets.json new file mode 100644 index 0000000000..27c27b34e8 --- /dev/null +++ b/CMakePresets.json @@ -0,0 +1,59 @@ +{ + "version": 3, + "configurePresets": [ + { + "name": "windows-base", + "description": "Target Windows with the Visual Studio development environment.", + "hidden": true, + "generator": "Ninja", + "binaryDir": "C:\\github repros\\out\\freecadbuild/${presetName}", + "installDir": "C:\\github repros\\out\\freecadinstall/${presetName}", + "cacheVariables": { + "CMAKE_C_COMPILER": "cl.exe", + "CMAKE_CXX_COMPILER": "cl.exe", + "FREECAD_LIBPACK_DIR": "C:\\freecad_libs\\LibPack-OCC76-V2-7\\LibPack-OCC76-V2" + }, + "condition": { + "type": "equals", + "lhs": "${hostSystemName}", + "rhs": "Windows" + } + }, + { + "name": "x64-debug", + "displayName": "x64 Debug", + "description": "Target Windows (64-bit) with the Visual Studio development environment. (Debug)", + "inherits": "windows-base", + "architecture": { + "value": "x64", + "strategy": "external" + }, + "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug" } + }, + { + "name": "x64-release", + "displayName": "x64 Release", + "description": "Target Windows (64-bit) with the Visual Studio development environment. (RelWithDebInfo)", + "inherits": "x64-debug", + "cacheVariables": { "CMAKE_BUILD_TYPE": "Release" } + }, + { + "name": "x86-debug", + "displayName": "x86 Debug", + "description": "Target Windows (32-bit) with the Visual Studio development environment. (Debug)", + "inherits": "windows-base", + "architecture": { + "value": "x86", + "strategy": "external" + }, + "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug" } + }, + { + "name": "x86-release", + "displayName": "x86 Release", + "description": "Target Windows (32-bit) with the Visual Studio development environment. (RelWithDebInfo)", + "inherits": "x86-debug", + "cacheVariables": { "CMAKE_BUILD_TYPE": "Release" } + } + ] +} \ No newline at end of file diff --git a/src/Gui/Stylesheets/Dark-blue.qss b/src/Gui/Stylesheets/Dark-blue.qss index 2aaa26664a..5689aad051 100644 --- a/src/Gui/Stylesheets/Dark-blue.qss +++ b/src/Gui/Stylesheets/Dark-blue.qss @@ -535,7 +535,7 @@ Resetting everything helps to unify styles across different operating systems QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #4882ff; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -549,11 +549,10 @@ Resetting everything helps to unify styles across different operating systems QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #4882ff; - image:url(qss:images_dark-light/checkbox_light.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_light.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2180,6 +2179,12 @@ Resetting everything helps to unify styles across different operating systems border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.232); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Dark-green.qss b/src/Gui/Stylesheets/Dark-green.qss index be8bf069c5..53d16d14f8 100644 --- a/src/Gui/Stylesheets/Dark-green.qss +++ b/src/Gui/Stylesheets/Dark-green.qss @@ -535,7 +535,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #a1bd00; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -549,11 +549,10 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #a1bd00; - image:url(qss:images_dark-light/checkbox_light.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_light.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2180,6 +2179,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.232); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Dark-modern-blue.qss b/src/Gui/Stylesheets/Dark-modern-blue.qss index 654f0f4202..70ac5d82a9 100644 --- a/src/Gui/Stylesheets/Dark-modern-blue.qss +++ b/src/Gui/Stylesheets/Dark-modern-blue.qss @@ -1,7 +1,7 @@ /* ABOUT ============================================================================================================ -Revised stylesheet based on the orignal from Pablo Gil Fernández made by MisterMaker +Revised stylesheet based on the original from Pablo Gil Fernández made by MisterMaker KNOWN BUGS and TO DO ============================================================================================================ @@ -535,7 +535,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #557BB6; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -549,11 +549,10 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #557BB6; - image:url(qss:images_dark-light/checkbox_light.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_light.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2216,6 +2215,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.232); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Dark-modern-green.qss b/src/Gui/Stylesheets/Dark-modern-green.qss index 18f9f7663f..60a40287cf 100644 --- a/src/Gui/Stylesheets/Dark-modern-green.qss +++ b/src/Gui/Stylesheets/Dark-modern-green.qss @@ -535,7 +535,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #74b655; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -549,11 +549,10 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #74b655; - image:url(qss:images_dark-light/checkbox_light.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_light.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2216,6 +2215,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.232); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Dark-modern-orange.qss b/src/Gui/Stylesheets/Dark-modern-orange.qss index afe6685160..06f3537b72 100644 --- a/src/Gui/Stylesheets/Dark-modern-orange.qss +++ b/src/Gui/Stylesheets/Dark-modern-orange.qss @@ -1,7 +1,7 @@ /* ABOUT ============================================================================================================ -Revised stylesheet based on the orignal from Pablo Gil Fernández made by MisterMaker +Revised stylesheet based on the original from Pablo Gil Fernández made by MisterMaker KNOWN BUGS and TO DO ============================================================================================================ @@ -535,7 +535,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #cb9437; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -549,11 +549,10 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #cb9437; - image:url(qss:images_dark-light/checkbox_light.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_light.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2216,6 +2215,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.232); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Dark-modern-pink.qss b/src/Gui/Stylesheets/Dark-modern-pink.qss index 7fd4c5012c..5baa7fb281 100644 --- a/src/Gui/Stylesheets/Dark-modern-pink.qss +++ b/src/Gui/Stylesheets/Dark-modern-pink.qss @@ -1,7 +1,7 @@ /* ABOUT ============================================================================================================ -Revised stylesheet based on the orignal from Pablo Gil Fernández made by MisterMaker +Revised stylesheet based on the original from Pablo Gil Fernández made by MisterMaker KNOWN BUGS and TO DO ============================================================================================================ @@ -535,7 +535,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #c849cd; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -549,11 +549,10 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #c849cd; - image:url(qss:images_dark-light/checkbox_light.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_light.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2216,6 +2215,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.232); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Dark-orange.qss b/src/Gui/Stylesheets/Dark-orange.qss index fcf09d2fb5..1481107f56 100644 --- a/src/Gui/Stylesheets/Dark-orange.qss +++ b/src/Gui/Stylesheets/Dark-orange.qss @@ -535,7 +535,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #b28416; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -549,11 +549,10 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #b28416; - image:url(qss:images_dark-light/checkbox_light.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_light.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2180,6 +2179,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.232); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Dark-pink.qss b/src/Gui/Stylesheets/Dark-pink.qss index 876cb8368c..a11e6b725e 100644 --- a/src/Gui/Stylesheets/Dark-pink.qss +++ b/src/Gui/Stylesheets/Dark-pink.qss @@ -535,7 +535,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #bc1cc8; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -549,11 +549,10 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #bc1cc8; - image:url(qss:images_dark-light/checkbox_light.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_light.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2180,6 +2179,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.232); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Darker-blue.qss b/src/Gui/Stylesheets/Darker-blue.qss index 5e4a101c70..5b7fbc478a 100644 --- a/src/Gui/Stylesheets/Darker-blue.qss +++ b/src/Gui/Stylesheets/Darker-blue.qss @@ -535,7 +535,7 @@ Resetting everything helps to unify styles across different operating systems QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #2053c0; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -549,11 +549,10 @@ Resetting everything helps to unify styles across different operating systems QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #2053c0; - image:url(qss:images_dark-light/checkbox_light.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_light.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2180,6 +2179,12 @@ Resetting everything helps to unify styles across different operating systems border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.232); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Darker-green.qss b/src/Gui/Stylesheets/Darker-green.qss index 096e4e471a..3fd2d84ebd 100644 --- a/src/Gui/Stylesheets/Darker-green.qss +++ b/src/Gui/Stylesheets/Darker-green.qss @@ -535,7 +535,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #74831d; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -549,11 +549,10 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #74831d; - image:url(qss:images_dark-light/checkbox_light.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_light.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2180,6 +2179,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.232); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Darker-orange.qss b/src/Gui/Stylesheets/Darker-orange.qss index 86aba4535d..e42442e218 100644 --- a/src/Gui/Stylesheets/Darker-orange.qss +++ b/src/Gui/Stylesheets/Darker-orange.qss @@ -535,7 +535,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #b28416; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -553,7 +553,7 @@ QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:che } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_light.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2180,6 +2180,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.232); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Darker-pink.qss b/src/Gui/Stylesheets/Darker-pink.qss index ad391d52aa..d7cefe984b 100644 --- a/src/Gui/Stylesheets/Darker-pink.qss +++ b/src/Gui/Stylesheets/Darker-pink.qss @@ -535,7 +535,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #b216a0; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -549,11 +549,10 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #b216a0; - image:url(qss:images_dark-light/checkbox_light.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_light.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2180,6 +2179,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.232); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Light-blue.qss b/src/Gui/Stylesheets/Light-blue.qss index febfb2867c..d189603e53 100644 --- a/src/Gui/Stylesheets/Light-blue.qss +++ b/src/Gui/Stylesheets/Light-blue.qss @@ -537,7 +537,7 @@ Resetting everything helps to unify styles across different operating systems QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #8cb0ff; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -551,11 +551,10 @@ Resetting everything helps to unify styles across different operating systems QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #8cb0ff; - image:url(qss:images_dark-light/checkbox_dark.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_dark.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2188,6 +2187,12 @@ Resetting everything helps to unify styles across different operating systems border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.050); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Light-green.qss b/src/Gui/Stylesheets/Light-green.qss index e814947f2c..a6337605d8 100644 --- a/src/Gui/Stylesheets/Light-green.qss +++ b/src/Gui/Stylesheets/Light-green.qss @@ -537,7 +537,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #B7D300; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -551,11 +551,10 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #B7D300; - image:url(qss:images_dark-light/checkbox_dark.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_dark.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2188,6 +2187,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.050); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Light-modern-blue.qss b/src/Gui/Stylesheets/Light-modern-blue.qss index 4fca362052..112f679213 100644 --- a/src/Gui/Stylesheets/Light-modern-blue.qss +++ b/src/Gui/Stylesheets/Light-modern-blue.qss @@ -1,7 +1,7 @@ /* ABOUT ============================================================================================================ -Revised stylesheet based on the orignal from Pablo Gil Fernández made by MisterMaker +Revised stylesheet based on the original from Pablo Gil Fernández made by MisterMaker KNOWN BUGS and TO DO ============================================================================================================ @@ -535,7 +535,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #8ab6e9; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -549,11 +549,10 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #8ab6e9; - image:url(qss:images_dark-light/checkbox_dark.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_dark.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2220,6 +2219,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.050); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Light-modern-green.qss b/src/Gui/Stylesheets/Light-modern-green.qss index 64117fd920..b797a29a79 100644 --- a/src/Gui/Stylesheets/Light-modern-green.qss +++ b/src/Gui/Stylesheets/Light-modern-green.qss @@ -1,7 +1,7 @@ /* ABOUT ============================================================================================================ -Revised stylesheet based on the orignal from Pablo Gil Fernández made by MisterMaker +Revised stylesheet based on the original from Pablo Gil Fernández made by MisterMaker KNOWN BUGS and TO DO ============================================================================================================ @@ -535,7 +535,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #a5e98a; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -549,11 +549,10 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; background: #a5e98a; - image:url(qss:images_dark-light/checkbox_dark.svg); } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_dark.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2220,6 +2219,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.050); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Light-modern-orange.qss b/src/Gui/Stylesheets/Light-modern-orange.qss index 443a173bbd..c5f0cde86d 100644 --- a/src/Gui/Stylesheets/Light-modern-orange.qss +++ b/src/Gui/Stylesheets/Light-modern-orange.qss @@ -1,7 +1,7 @@ /* ABOUT ============================================================================================================ -Revised stylesheet based on the orignal from Pablo Gil Fernández made by MisterMaker +Revised stylesheet based on the original from Pablo Gil Fernández made by MisterMaker KNOWN BUGS and TO DO ============================================================================================================ @@ -535,7 +535,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #e9be8a; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -548,12 +548,11 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; - background: #e9be8a; - image:url(qss:images_dark-light/checkbox_dark.svg); + background: #e9be8a; } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_dark.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2220,6 +2219,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.050); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Light-modern-pink.qss b/src/Gui/Stylesheets/Light-modern-pink.qss index bc541ed408..5696e98ced 100644 --- a/src/Gui/Stylesheets/Light-modern-pink.qss +++ b/src/Gui/Stylesheets/Light-modern-pink.qss @@ -1,7 +1,7 @@ /* ABOUT ============================================================================================================ -Revised stylesheet based on the orignal from Pablo Gil Fernández made by MisterMaker +Revised stylesheet based on the original from Pablo Gil Fernández made by MisterMaker KNOWN BUGS and TO DO ============================================================================================================ @@ -538,7 +538,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #e98ad8; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -551,12 +551,11 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; - background: #e98ad8; - image:url(qss:images_dark-light/checkbox_dark.svg); + background: #e98ad8; } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_dark.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -2243,6 +2242,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.050); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, diff --git a/src/Gui/Stylesheets/Light-orange.qss b/src/Gui/Stylesheets/Light-orange.qss index 6afb3ad78d..916289bcfa 100644 --- a/src/Gui/Stylesheets/Light-orange.qss +++ b/src/Gui/Stylesheets/Light-orange.qss @@ -114,14 +114,14 @@ QWidget { border: 0px solid #C1C1C1; padding: 0px; color: black; - selection-background-color: #ffb916 ; + selection-background-color: #ffb916; selection-color: black; } QWidget:disabled { background-color: transparent; color: #A3A3A3; - selection-background-color: #ffb916 ; + selection-background-color: #ffb916; selection-color: #A3A3A3; } @@ -132,7 +132,7 @@ QWidget::item:selected { /* Causes issue with colorselector. QWidget::item:hover:!selected { - background-color: #ffb916 ; + background-color: #ffb916; }*/ /* QMainWindow ------------------------------------------------------------ @@ -150,13 +150,13 @@ QMainWindow::separator { QMainWindow::separator:vertical:hover { background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,stop:0.2 transparent,stop:0.5 #ffb916 , stop:0.8 transparent); - /*background-color: #ffb916 ;*/ + /*background-color: #ffb916;*/ image: url(qss:images_dark-light/splitter_vertical_dark.svg); } QMainWindow::separator:horizontal:hover { background-color: qlineargradient(x1:0, y1:0, x2:1, y2:0,stop:0.2 transparent,stop:0.5 #ffb916 , stop:0.8 transparent); - /*background-color: #ffb916 ;*/ + /*background-color: #ffb916;*/ image: url(qss:images_dark-light/splitter_horizontal_dark.svg); } @@ -256,7 +256,7 @@ QCheckBox::indicator:unchecked { } QCheckBox::indicator:unchecked:hover, QCheckBox::indicator:unchecked:focus, QCheckBox::indicator:unchecked:pressed { - background-color: #ffb916 ; + background-color: #ffb916; image:url(qss:images_dark-light/checkbox_unchecked_dark.svg); } @@ -272,7 +272,7 @@ QCheckBox::indicator:checked { } QCheckBox::indicator:checked:hover, QCheckBox::indicator:checked:pressed { - background-color: #ffb916 ; + background-color: #ffb916; } QCheckBox::indicator:checked:disabled { @@ -292,7 +292,7 @@ QCheckBox::indicator:indeterminate:disabled { } QCheckBox::indicator:indeterminate:hover, QCheckBox::indicator:indeterminate:pressed { - background-color: #ffb916 ; /* QRadioButton has the same color */ + background-color: #ffb916; /* QRadioButton has the same color */ } /* QGroupBox -------------------------------------------------------------- @@ -334,7 +334,7 @@ QGroupBox::indicator:unchecked { } QGroupBox::indicator:unchecked:hover, QGroupBox::indicator:unchecked:focus, QGroupBox::indicator:unchecked:pressed { - background-color: #ffb916 ; + background-color: #ffb916; } QGroupBox::indicator:unchecked:disabled { @@ -348,11 +348,11 @@ QGroupBox::indicator:checked { } QGroupBox::indicator:checked:hover, QGroupBox::indicator:checked:focus, QGroupBox::indicator:checked:pressed { - background-color: #ffb916 ; + background-color: #ffb916; } QGroupBox::indicator:checked:disabled { - background-color: #ffb916 ; + background-color: #ffb916; } /* QRadioButton ----------------------------------------------------------- @@ -402,8 +402,8 @@ QRadioButton::indicator:unchecked { } QRadioButton::indicator:unchecked:hover, QRadioButton::indicator:unchecked:pressed { - background-color: #ffb916 ; - border: 1px solid #ffb916 ; + background-color: #ffb916; + border: 1px solid #ffb916; border-radius: 6px; } @@ -417,8 +417,8 @@ QRadioButton::indicator:checked { } QRadioButton::indicator:checked:hover, QRadioButton::indicator:checked:pressed { - background-color: #ffb916 ; - border: 1px solid #ffb916 ; + background-color: #ffb916; + border: 1px solid #ffb916; border-radius: 6px; image:url(qss:images_dark-light/radiobutton_dark.svg); } @@ -439,11 +439,11 @@ QMenuBar { /*padding: 1px; border: 0px solid rgba(0,0,0,140);*/ color: black; - selection-background-color: #ffb916 ; + selection-background-color: #ffb916; } QMenuBar:focus { - border: 1px solid #ffb916 ; + border: 1px solid #ffb916; } QMenuBar::item { @@ -457,7 +457,7 @@ QMenuBar::item { QMenuBar::item:selected { background: transparent; border: 0px solid #C1C1C1; - background-color: #ffb916 ; + background-color: #ffb916; } QMenuBar::item:pressed { @@ -465,7 +465,7 @@ QMenuBar::item:pressed { padding-left: 10px; padding-right: 10px;*/ border: 0px solid #C1C1C1; - background-color: #ffb916 ; + background-color: #ffb916; color: black; /*margin-bottom: 0px; padding-bottom: 0px;*/ @@ -482,7 +482,7 @@ QMenu { color: black; margin: 0px; background-color: #ffffff; - selection-background-color: #ffb916 ; + selection-background-color: #ffb916; } QMenu::separator { @@ -501,11 +501,11 @@ QMenu::item { QMenu::item:selected { color: black; - background-color: #ffb916 ; + background-color: #ffb916; } QMenu::item:pressed { - background-color: #ffb916 ; + background-color: #ffb916; } QMenu::icon { @@ -537,7 +537,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #ffb916; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -550,12 +550,11 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; - background: #ffb916 ; - image:url(qss:images_dark-light/checkbox_dark.svg); + background: #ffb916; } QMenu::indicator:non-exclusive:checked:disabled { - image:url(qss:images_dark-light/checkbox_dark.svg); + image:url(qss:images_dark-light/checkbox_checked_disabled.svg); } QMenu::indicator:non-exclusive:indeterminate { @@ -577,7 +576,7 @@ QMenu::indicator:exclusive:unchecked { QMenu::indicator:exclusive:unchecked:hover, QMenu::indicator:exclusive:unchecked:focus, QMenu::indicator:exclusive:unchecked:pressed { border: none; outline: none; - background: #ffb916 ; + background: #ffb916; image: url(qss:images_dark-light/checkbox_unchecked_dark.svg); } @@ -594,7 +593,7 @@ QMenu::indicator:exclusive:checked { QMenu::indicator:exclusive:checked:hover, QMenu::indicator:exclusive:checked:focus, QMenu::indicator:exclusive:checked:pressed { border: none; outline: none; - background: #ffb916 ; + background: #ffb916; image: url(qss:images_dark-light/checkbox_unchecked_dark.svg); } @@ -684,7 +683,7 @@ QScrollBar::handle:horizontal { } QScrollBar::handle:horizontal:hover { - background-color: #ffb916 ; + background-color: #ffb916; border: #f6f6f6; border-radius: 1.9px; min-width: 8px; @@ -702,7 +701,7 @@ QScrollBar::handle:vertical { } QScrollBar::handle:vertical:hover { - background-color: #ffb916 ; + background-color: #ffb916; border: #f6f6f6; border-radius: 1.9px; min-height: 8px; @@ -832,7 +831,7 @@ QPlainTextEdit:focus { } QPlainTextEdit:selected { - background: #ffb916 ; + background: #ffb916; color: black; } @@ -914,13 +913,13 @@ background-position: center center; QToolButton#qt_toolbar_ext_button:hover { /*background-image: url(qss:images_dark-light/more_dark.svg);*/ -background-color: #ffb916 ; +background-color: #ffb916; } QToolButton#qt_toolbar_ext_button:on { /*background-image: url(qss:images_dark-light/more_dark.svg);*/ border-color: #f6f6f6; -background-color: #ffb916 ; +background-color: #ffb916; } @@ -988,7 +987,7 @@ QAbstractSpinBox::down-arrow:hover { } QAbstractSpinBox:hover { - /*border: 1px solid #ffb916 ; + /*border: 1px solid #ffb916; color: black;*/ } @@ -1048,7 +1047,7 @@ QTextBrowser:disabled { } QTextBrowser:hover, QTextBrowser:!hover, QTextBrowser:selected, QTextBrowser:pressed { - border: 1px solid #ffb916 ; + border: 1px solid #ffb916; } /* QGraphicsView ---------------------------------------------------------- @@ -1056,7 +1055,7 @@ QTextBrowser:hover, QTextBrowser:!hover, QTextBrowser:selected, QTextBrowser:pre --------------------------------------------------------------------------- */ QGraphicsView { background-color: transparent; - border: 0px solid #ffb916 ; + border: 0px solid #ffb916; color: black; border-radius: 0px; } @@ -1120,7 +1119,7 @@ QProgressBar:disabled { } QProgressBar::chunk { - background-color: #ffb916 ; + background-color: #ffb916; color: #F6F6F6; border-radius: 1.9px; } @@ -1155,18 +1154,18 @@ QPushButton:disabled { } QPushButton:checked { - background-color: #ffb916 ; + background-color: #ffb916; outline: none; } QPushButton:checked:disabled { - background-color: #ffb916 ; + background-color: #ffb916; color: #f6f6f6; outline: none; } QPushButton:checked:selected { - background: #ffb916 ; + background: #ffb916; } QPushButton:hover { @@ -1219,7 +1218,7 @@ QToolButton:disabled { } QToolButton:checked { - background-color: #ffb916 ; + background-color: #ffb916; border-radius: 1.9px; padding: 0px; outline: none; @@ -1234,12 +1233,12 @@ QToolButton:checked:disabled { } QToolButton:checked:hover { - background-color: #ffb916 ; + background-color: #ffb916; color: black; } QToolButton:checked:pressed { - background-color: #ffb916 ; + background-color: #ffb916; } QToolButton:checked:selected { @@ -1248,7 +1247,7 @@ QToolButton:checked:selected { } QToolButton:hover { - background-color: #ffb916 ; + background-color: #ffb916; color: black; } @@ -1257,7 +1256,7 @@ QToolButton:pressed { } QToolButton:selected { - background: #ffb916 ; + background: #ffb916; color: black; } @@ -1365,7 +1364,7 @@ QComboBox { border: 1px solid transparent; background: #ffffff; border-radius: 2px; - selection-background-color: #ffb916 ; + selection-background-color: #ffb916; padding-left: 2px; padding-right: 2px; /* padding-right = 36; 4 + 16*2 See scrollbar size */ @@ -1384,7 +1383,7 @@ QComboBox QAbstractItemView { border: 0px solid #C1C1C1; border-radius: 0px; background-color: #ffffff; - selection-background-color: #ffb916 ; + selection-background-color: #ffb916; } QComboBox QAbstractItemView:hover { @@ -1393,7 +1392,7 @@ QComboBox QAbstractItemView:hover { } QComboBox QAbstractItemView:selected { - background: #ffb916 ; + background: #ffb916; color: black; } @@ -1407,8 +1406,8 @@ QComboBox:disabled { } QComboBox:hover { - /*background-color: #ffb916 ;*/ - border: 1px solid #ffb916 ; + /*background-color: #ffb916;*/ + border: 1px solid #ffb916; } QComboBox:focus { @@ -1425,7 +1424,7 @@ QComboBox::indicator { background-color: transparent; selection-background-color: transparent; color: transparent; - selection-color: #ffb916 ; + selection-color: #ffb916; /* Needed to remove indicator - fix #132 */ } @@ -1576,19 +1575,19 @@ background-color: #F6F6F6; /* Task Panel background color */ /* Fixs for tabs inside Task Panel */ QSint--ActionGroup QFrame[class="content"] QTabBar::tab:top:selected { -border-bottom-color: #ffb916 ; /* same as Task Panel background color */ +border-bottom-color: #ffb916; /* same as Task Panel background color */ } QSint--ActionGroup QFrame[class="content"] QTabBar::tab:bottom:selected { -border-top-color: #ffb916 ; /* same as Task Panel background color */ +border-top-color: #ffb916; /* same as Task Panel background color */ } QSint--ActionGroup QFrame[class="content"] QTabBar::tab:right:selected { -border-right-color: #ffb916 ; /* same as Task Panel background color */ +border-right-color: #ffb916; /* same as Task Panel background color */ } QSint--ActionGroup QFrame[class="content"] QTabBar::tab:left:selected { -border-left-color: #ffb916 ; /* same as Task Panel background color */ +border-left-color: #ffb916; /* same as Task Panel background color */ } /* Fix for buttons with icons that showed cropped (still not happy with result) */ @@ -1660,7 +1659,7 @@ QSlider::groove:horizontal { } QSlider::groove:vertical { - background: #ffb916 ; + background: #ffb916; border: 1px solid #C1C1C1; width: 4px; margin: 0px; @@ -1668,7 +1667,7 @@ QSlider::groove:vertical { } QSlider::add-page:vertical { - background: #ffb916 ; + background: #ffb916; border: 1px solid #C1C1C1; width: 4px; margin: 0px; @@ -1680,7 +1679,7 @@ QSlider::add-page:vertical :disabled { } QSlider::sub-page:horizontal { - background: #ffb916 ; + background: #ffb916; border: 1px solid #C1C1C1; height: 4px; margin: 0px; @@ -1688,7 +1687,7 @@ QSlider::sub-page:horizontal { } QSlider::sub-page:horizontal:disabled { - background: #ffb916 ; + background: #ffb916; } QSlider::handle:horizontal { @@ -1701,8 +1700,8 @@ QSlider::handle:horizontal { } QSlider::handle:horizontal:hover { - background: #ffb916 ; - border: 1px solid #ffb916 ; + background: #ffb916; + border: 1px solid #ffb916; } QSlider::handle:horizontal:focus { @@ -1719,8 +1718,8 @@ QSlider::handle:vertical { } QSlider::handle:vertical:hover { - background: #ffb916 ; - border: 2px solid #ffb916 ; + background: #ffb916; + border: 2px solid #ffb916; } QSlider::handle:vertical:focus { @@ -1752,7 +1751,7 @@ QLineEdit:disabled { } QLineEdit:hover { - border: 1px solid #ffb916 ; + border: 1px solid #ffb916; color: black; } @@ -1761,7 +1760,7 @@ QLineEdit:focus { } QLineEdit:selected { - background-color: #ffb916 ; + background-color: #ffb916; color: black; } @@ -1772,7 +1771,7 @@ https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qtabwidget-and-qtabb --------------------------------------------------------------------------- */ QTabWidget { padding: 2px; - selection-background-color: #ffb916 ; + selection-background-color: #ffb916; } QTabWidget QWidget { @@ -1787,7 +1786,7 @@ QTabWidget::pane { } QTabWidget::pane:selected { - background-color: #ffb916 ; + background-color: #ffb916; border: 1px solid #C1C1C1; } /* QTabBar ---------------------------------------------------------------- @@ -1886,16 +1885,16 @@ QTabBar::tab:top, QDockWidget QTabBar::tab:top { QTabBar::tab:top:selected, QDockWidget QTabBar::tab:top:selected { color: black; - border-top: 4px solid #ffb916 ; /* selection color */ + border-top: 4px solid #ffb916; /* selection color */ border-bottom: 1px solid transparent; /* same as tab content background color */ border-left: 1px solid #A3A3A3; border-right: 1px solid #A3A3A3; } QTabBar::tab:top:!selected:hover, QDockWidget QTabBar::tab:top:!selected:hover { - /*border: 1px solid #ffb916 ;*/ - border: 0px solid #ffb916 ; - background-color: #ffb916 ; + /*border: 1px solid #ffb916;*/ + border: 0px solid #ffb916; + background-color: #ffb916; /* Fixes spyder-ide/spyder#9766 and #243 */ padding-left: 3px; padding-right: 3px; @@ -1916,7 +1915,7 @@ QTabBar::tab:bottom, QDockWidget QTabBar::tab:bottom { QTabBar::tab:bottom:selected, QDockWidget QTabBar::tab:bottom:selected { color: black; - border-bottom: 4px solid #ffb916 ; /* selection color */ + border-bottom: 4px solid #ffb916; /* selection color */ border-top: 1px solid transparent; /* same as tab content background color */ border-left: 1px solid #A3A3A3; border-right: 1px solid #A3A3A3; @@ -1924,9 +1923,9 @@ QTabBar::tab:bottom:selected, QDockWidget QTabBar::tab:bottom:selected { } QTabBar::tab:bottom:!selected:hover, QDockWidget QTabBar::tab:bottom:!selected:hover { -/*border: 1px solid #ffb916 ;*/ - border: 0px solid #ffb916 ; - background-color: #ffb916 ; +/*border: 1px solid #ffb916;*/ + border: 0px solid #ffb916; + background-color: #ffb916; /* Fixes spyder-ide/spyder#9766 and #243 */ padding-left: 3px; padding-right: 3px; @@ -1951,8 +1950,8 @@ QTabBar::tab:left:selected, QDockWidget QTabBar::tab:left:selected { } QTabBar::tab:left:!selected:hover, QDockWidget QTabBar::tab:left:!selected:hover { - border: 0px solid #ffb916 ; - background-color: #ffb916 ; + border: 0px solid #ffb916; + background-color: #ffb916; /* Fixes different behavior #271 */ margin-right: 0px; padding-right: -1px; @@ -1976,8 +1975,8 @@ QTabBar::tab:right:selected, QDockWidget QTabBar::tab:right:selected { } QTabBar::tab:right:!selected:hover, QDockWidget QTabBar::tab:right:!selected:hover { - border: 0px solid #ffb916 ; - background-color: #ffb916 ; + border: 0px solid #ffb916; + background-color: #ffb916; /* Fixes different behavior #271 */ margin-left: 0px; padding-left: 0px; @@ -1992,13 +1991,13 @@ QTabBar QToolButton, QDockWidget QTabBar QToolButton { } QTabBar QToolButton:pressed, QDockWidget QTabBar QToolButton:pressed { - border: 0px solid #ffb916 ; - background-color: #ffb916 ; + border: 0px solid #ffb916; + background-color: #ffb916; } QTabBar QToolButton:pressed:hover, QDockWidget QTabBar QToolButton:pressed:hover { - border: 0px solid #ffb916 ; - background-color: #ffb916 ; + border: 0px solid #ffb916; + background-color: #ffb916; color: black; } @@ -2070,7 +2069,7 @@ QDockWidget::float-button { } QDockWidget::float-button:hover { - /*background-color: #ffb916 ;*/ + /*background-color: #ffb916;*/ image: url(qss:images_dark-light/undock_blue.svg); } @@ -2188,6 +2187,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.050); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, @@ -2200,7 +2205,7 @@ QTreeView:selected, QListView:selected, QTableView:selected, QColumnView:selected { - background-color: #ffb916 ; + background-color: #ffb916; color: black; } @@ -2215,14 +2220,14 @@ QTreeView::item:pressed, QListView::item:pressed, QTableView::item:pressed, QColumnView::item:pressed { - background-color: #ffb916 ; + background-color: #ffb916; } QTreeView::item:selected:active, QListView::item:selected:active, QTableView::item:selected:active, QColumnView::item:selected:active { - background-color: #ffb916 ; + background-color: #ffb916; } QTreeView::item:selected:!active, @@ -2239,7 +2244,7 @@ QTableView::item:!selected:hover, QColumnView::item:!selected:hover { outline: 0; color: black; - background-color: #ffb916 ; + background-color: #ffb916; } QTableCornerButton::section { @@ -2347,7 +2352,7 @@ QToolBox { QToolBox:selected { padding: 0px; - border: 0px solid #ffb916 ; + border: 0px solid #ffb916; } QToolBox::tab { @@ -2385,7 +2390,7 @@ QToolBox::tab:!selected:disabled { } QToolBox::tab:hover { - background-color: #ffb916 ; + background-color: #ffb916; } QToolBox QScrollArea QWidget QWidget { @@ -2466,14 +2471,14 @@ QSplitter::handle:hover { background-image: url(qss:images_dark-light/splitter_horizontal_dark.svg); background-position: center center; background-repeat: none; - background-color: #ffb916 ; + background-color: #ffb916; } /* QDateEdit, QDateTimeEdit ----------------------------------------------- --------------------------------------------------------------------------- */ QDateEdit, QDateTimeEdit { - selection-background-color: #ffb916 ; + selection-background-color: #ffb916; border-style: solid; border: 1px solid #C1C1C1; border-radius: 1.9px; @@ -2487,7 +2492,7 @@ QDateEdit, QDateTimeEdit { } QDateEdit:on, QDateTimeEdit:on { - selection-background-color: #ffb916 ; + selection-background-color: #ffb916; } QDateEdit::drop-down, QDateTimeEdit::drop-down { @@ -2511,19 +2516,19 @@ QDateEdit QAbstractItemView, QDateTimeEdit QAbstractItemView { background-color: #F6F6F6; border-radius: 2px; border: 1px solid #C1C1C1; - selection-background-color: #ffb916 ; + selection-background-color: #ffb916; } /* QAbstractView ---------------------------------------------------------- --------------------------------------------------------------------------- */ QAbstractView:hover { - border: 1px solid #ffb916 ; + border: 1px solid #ffb916; color: black; } QAbstractView:selected { - background: #ffb916 ; + background: #ffb916; color: black; } diff --git a/src/Gui/Stylesheets/Light-pink.qss b/src/Gui/Stylesheets/Light-pink.qss index 9c266ff96b..1181c94506 100644 --- a/src/Gui/Stylesheets/Light-pink.qss +++ b/src/Gui/Stylesheets/Light-pink.qss @@ -114,14 +114,14 @@ QWidget { border: 0px solid #C1C1C1; padding: 0px; color: black; - selection-background-color: #f892ff ; + selection-background-color: #f892ff; selection-color: black; } QWidget:disabled { background-color: transparent; color: #A3A3A3; - selection-background-color: #f892ff ; + selection-background-color: #f892ff; selection-color: #A3A3A3; } @@ -132,7 +132,7 @@ QWidget::item:selected { /* Causes issue with colorselector. QWidget::item:hover:!selected { - background-color: #f892ff ; + background-color: #f892ff; }*/ /* QMainWindow ------------------------------------------------------------ @@ -150,13 +150,13 @@ QMainWindow::separator { QMainWindow::separator:vertical:hover { background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,stop:0.2 transparent,stop:0.5 #f892ff , stop:0.8 transparent); - /*background-color: #f892ff ;*/ + /*background-color: #f892ff;*/ image: url(qss:images_dark-light/splitter_vertical_dark.svg); } QMainWindow::separator:horizontal:hover { background-color: qlineargradient(x1:0, y1:0, x2:1, y2:0,stop:0.2 transparent,stop:0.5 #f892ff , stop:0.8 transparent); - /*background-color: #f892ff ;*/ + /*background-color: #f892ff;*/ image: url(qss:images_dark-light/splitter_horizontal_dark.svg); } @@ -256,7 +256,7 @@ QCheckBox::indicator:unchecked { } QCheckBox::indicator:unchecked:hover, QCheckBox::indicator:unchecked:focus, QCheckBox::indicator:unchecked:pressed { - background-color: #f892ff ; + background-color: #f892ff; image:url(qss:images_dark-light/checkbox_unchecked_dark.svg); } @@ -272,7 +272,7 @@ QCheckBox::indicator:checked { } QCheckBox::indicator:checked:hover, QCheckBox::indicator:checked:pressed { - background-color: #f892ff ; + background-color: #f892ff; } QCheckBox::indicator:checked:disabled { @@ -292,7 +292,7 @@ QCheckBox::indicator:indeterminate:disabled { } QCheckBox::indicator:indeterminate:hover, QCheckBox::indicator:indeterminate:pressed { - background-color: #f892ff ; /* QRadioButton has the same color */ + background-color: #f892ff; /* QRadioButton has the same color */ } /* QGroupBox -------------------------------------------------------------- @@ -334,7 +334,7 @@ QGroupBox::indicator:unchecked { } QGroupBox::indicator:unchecked:hover, QGroupBox::indicator:unchecked:focus, QGroupBox::indicator:unchecked:pressed { - background-color: #f892ff ; + background-color: #f892ff; } QGroupBox::indicator:unchecked:disabled { @@ -348,11 +348,11 @@ QGroupBox::indicator:checked { } QGroupBox::indicator:checked:hover, QGroupBox::indicator:checked:focus, QGroupBox::indicator:checked:pressed { - background-color: #f892ff ; + background-color: #f892ff; } QGroupBox::indicator:checked:disabled { - background-color: #f892ff ; + background-color: #f892ff; } /* QRadioButton ----------------------------------------------------------- @@ -402,8 +402,8 @@ QRadioButton::indicator:unchecked { } QRadioButton::indicator:unchecked:hover, QRadioButton::indicator:unchecked:pressed { - background-color: #f892ff ; - border: 1px solid #f892ff ; + background-color: #f892ff; + border: 1px solid #f892ff; border-radius: 6px; } @@ -417,8 +417,8 @@ QRadioButton::indicator:checked { } QRadioButton::indicator:checked:hover, QRadioButton::indicator:checked:pressed { - background-color: #f892ff ; - border: 1px solid #f892ff ; + background-color: #f892ff; + border: 1px solid #f892ff; border-radius: 6px; image:url(qss:images_dark-light/radiobutton_dark.svg); } @@ -439,11 +439,11 @@ QMenuBar { /*padding: 1px; border: 0px solid rgba(0,0,0,140);*/ color: black; - selection-background-color: #f892ff ; + selection-background-color: #f892ff; } QMenuBar:focus { - border: 1px solid #f892ff ; + border: 1px solid #f892ff; } QMenuBar::item { @@ -457,7 +457,7 @@ QMenuBar::item { QMenuBar::item:selected { background: transparent; border: 0px solid #C1C1C1; - background-color: #f892ff ; + background-color: #f892ff; } QMenuBar::item:pressed { @@ -465,7 +465,7 @@ QMenuBar::item:pressed { padding-left: 10px; padding-right: 10px;*/ border: 0px solid #C1C1C1; - background-color: #f892ff ; + background-color: #f892ff; color: black; /*margin-bottom: 0px; padding-bottom: 0px;*/ @@ -482,7 +482,7 @@ QMenu { color: black; margin: 0px; background-color: #ffffff; - selection-background-color: #f892ff ; + selection-background-color: #f892ff; } QMenu::separator { @@ -501,11 +501,11 @@ QMenu::item { QMenu::item:selected { color: black; - background-color: #f892ff ; + background-color: #f892ff; } QMenu::item:pressed { - background-color: #f892ff ; + background-color: #f892ff; } QMenu::icon { @@ -537,7 +537,7 @@ QMenu::indicator:non-exclusive:unchecked { QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed { border: none; - image: url(qss:images_dark-light/checkbox_unchecked_focus.png); + background: #f892ff; } QMenu::indicator:non-exclusive:unchecked:disabled { @@ -550,8 +550,7 @@ QMenu::indicator:non-exclusive:checked { QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed { border: none; - background: #f892ff ; - image:url(qss:images_dark-light/checkbox_dark.svg); + background: #f892ff; } QMenu::indicator:non-exclusive:checked:disabled { @@ -577,7 +576,7 @@ QMenu::indicator:exclusive:unchecked { QMenu::indicator:exclusive:unchecked:hover, QMenu::indicator:exclusive:unchecked:focus, QMenu::indicator:exclusive:unchecked:pressed { border: none; outline: none; - background: #f892ff ; + background: #f892ff; image: url(qss:images_dark-light/checkbox_unchecked_dark.svg); } @@ -594,7 +593,7 @@ QMenu::indicator:exclusive:checked { QMenu::indicator:exclusive:checked:hover, QMenu::indicator:exclusive:checked:focus, QMenu::indicator:exclusive:checked:pressed { border: none; outline: none; - background: #f892ff ; + background: #f892ff; image: url(qss:images_dark-light/checkbox_unchecked_dark.svg); } @@ -684,7 +683,7 @@ QScrollBar::handle:horizontal { } QScrollBar::handle:horizontal:hover { - background-color: #f892ff ; + background-color: #f892ff; border: #f6f6f6; border-radius: 1.9px; min-width: 8px; @@ -702,7 +701,7 @@ QScrollBar::handle:vertical { } QScrollBar::handle:vertical:hover { - background-color: #f892ff ; + background-color: #f892ff; border: #f6f6f6; border-radius: 1.9px; min-height: 8px; @@ -832,7 +831,7 @@ QPlainTextEdit:focus { } QPlainTextEdit:selected { - background: #f892ff ; + background: #f892ff; color: black; } @@ -914,13 +913,13 @@ background-position: center center; QToolButton#qt_toolbar_ext_button:hover { /*background-image: url(qss:images_dark-light/more_dark.svg);*/ -background-color: #f892ff ; +background-color: #f892ff; } QToolButton#qt_toolbar_ext_button:on { /*background-image: url(qss:images_dark-light/more_dark.svg);*/ border-color: #f6f6f6; -background-color: #f892ff ; +background-color: #f892ff; } @@ -988,7 +987,7 @@ QAbstractSpinBox::down-arrow:hover { } QAbstractSpinBox:hover { - /*border: 1px solid #f892ff ; + /*border: 1px solid #f892ff; color: black;*/ } @@ -1048,7 +1047,7 @@ QTextBrowser:disabled { } QTextBrowser:hover, QTextBrowser:!hover, QTextBrowser:selected, QTextBrowser:pressed { - border: 1px solid #f892ff ; + border: 1px solid #f892ff; } /* QGraphicsView ---------------------------------------------------------- @@ -1056,7 +1055,7 @@ QTextBrowser:hover, QTextBrowser:!hover, QTextBrowser:selected, QTextBrowser:pre --------------------------------------------------------------------------- */ QGraphicsView { background-color: transparent; - border: 0px solid #f892ff ; + border: 0px solid #f892ff; color: black; border-radius: 0px; } @@ -1120,7 +1119,7 @@ QProgressBar:disabled { } QProgressBar::chunk { - background-color: #f892ff ; + background-color: #f892ff; color: #F6F6F6; border-radius: 1.9px; } @@ -1155,18 +1154,18 @@ QPushButton:disabled { } QPushButton:checked { - background-color: #f892ff ; + background-color: #f892ff; outline: none; } QPushButton:checked:disabled { - background-color: #f892ff ; + background-color: #f892ff; color: #f6f6f6; outline: none; } QPushButton:checked:selected { - background: #f892ff ; + background: #f892ff; } QPushButton:hover { @@ -1219,7 +1218,7 @@ QToolButton:disabled { } QToolButton:checked { - background-color: #f892ff ; + background-color: #f892ff; border-radius: 1.9px; padding: 0px; outline: none; @@ -1234,12 +1233,12 @@ QToolButton:checked:disabled { } QToolButton:checked:hover { - background-color: #f892ff ; + background-color: #f892ff; color: black; } QToolButton:checked:pressed { - background-color: #f892ff ; + background-color: #f892ff; } QToolButton:checked:selected { @@ -1248,7 +1247,7 @@ QToolButton:checked:selected { } QToolButton:hover { - background-color: #f892ff ; + background-color: #f892ff; color: black; } @@ -1257,7 +1256,7 @@ QToolButton:pressed { } QToolButton:selected { - background: #f892ff ; + background: #f892ff; color: black; } @@ -1365,7 +1364,7 @@ QComboBox { border: 1px solid transparent; background: #ffffff; border-radius: 2px; - selection-background-color: #f892ff ; + selection-background-color: #f892ff; padding-left: 2px; padding-right: 2px; /* padding-right = 36; 4 + 16*2 See scrollbar size */ @@ -1384,7 +1383,7 @@ QComboBox QAbstractItemView { border: 0px solid #C1C1C1; border-radius: 0px; background-color: #ffffff; - selection-background-color: #f892ff ; + selection-background-color: #f892ff; } QComboBox QAbstractItemView:hover { @@ -1393,7 +1392,7 @@ QComboBox QAbstractItemView:hover { } QComboBox QAbstractItemView:selected { - background: #f892ff ; + background: #f892ff; color: black; } @@ -1407,8 +1406,8 @@ QComboBox:disabled { } QComboBox:hover { - /*background-color: #f892ff ;*/ - border: 1px solid #f892ff ; + /*background-color: #f892ff;*/ + border: 1px solid #f892ff; } QComboBox:focus { @@ -1425,7 +1424,7 @@ QComboBox::indicator { background-color: transparent; selection-background-color: transparent; color: transparent; - selection-color: #f892ff ; + selection-color: #f892ff; /* Needed to remove indicator - fix #132 */ } @@ -1576,19 +1575,19 @@ background-color: #F6F6F6; /* Task Panel background color */ /* Fixs for tabs inside Task Panel */ QSint--ActionGroup QFrame[class="content"] QTabBar::tab:top:selected { -border-bottom-color: #f892ff ; /* same as Task Panel background color */ +border-bottom-color: #f892ff; /* same as Task Panel background color */ } QSint--ActionGroup QFrame[class="content"] QTabBar::tab:bottom:selected { -border-top-color: #f892ff ; /* same as Task Panel background color */ +border-top-color: #f892ff; /* same as Task Panel background color */ } QSint--ActionGroup QFrame[class="content"] QTabBar::tab:right:selected { -border-right-color: #f892ff ; /* same as Task Panel background color */ +border-right-color: #f892ff; /* same as Task Panel background color */ } QSint--ActionGroup QFrame[class="content"] QTabBar::tab:left:selected { -border-left-color: #f892ff ; /* same as Task Panel background color */ +border-left-color: #f892ff; /* same as Task Panel background color */ } /* Fix for buttons with icons that showed cropped (still not happy with result) */ @@ -1660,7 +1659,7 @@ QSlider::groove:horizontal { } QSlider::groove:vertical { - background: #f892ff ; + background: #f892ff; border: 1px solid #C1C1C1; width: 4px; margin: 0px; @@ -1668,7 +1667,7 @@ QSlider::groove:vertical { } QSlider::add-page:vertical { - background: #f892ff ; + background: #f892ff; border: 1px solid #C1C1C1; width: 4px; margin: 0px; @@ -1680,7 +1679,7 @@ QSlider::add-page:vertical :disabled { } QSlider::sub-page:horizontal { - background: #f892ff ; + background: #f892ff; border: 1px solid #C1C1C1; height: 4px; margin: 0px; @@ -1688,7 +1687,7 @@ QSlider::sub-page:horizontal { } QSlider::sub-page:horizontal:disabled { - background: #f892ff ; + background: #f892ff; } QSlider::handle:horizontal { @@ -1701,8 +1700,8 @@ QSlider::handle:horizontal { } QSlider::handle:horizontal:hover { - background: #f892ff ; - border: 1px solid #f892ff ; + background: #f892ff; + border: 1px solid #f892ff; } QSlider::handle:horizontal:focus { @@ -1719,8 +1718,8 @@ QSlider::handle:vertical { } QSlider::handle:vertical:hover { - background: #f892ff ; - border: 2px solid #f892ff ; + background: #f892ff; + border: 2px solid #f892ff; } QSlider::handle:vertical:focus { @@ -1752,7 +1751,7 @@ QLineEdit:disabled { } QLineEdit:hover { - border: 1px solid #f892ff ; + border: 1px solid #f892ff; color: black; } @@ -1761,7 +1760,7 @@ QLineEdit:focus { } QLineEdit:selected { - background-color: #f892ff ; + background-color: #f892ff; color: black; } @@ -1772,7 +1771,7 @@ https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qtabwidget-and-qtabb --------------------------------------------------------------------------- */ QTabWidget { padding: 2px; - selection-background-color: #f892ff ; + selection-background-color: #f892ff; } QTabWidget QWidget { @@ -1787,7 +1786,7 @@ QTabWidget::pane { } QTabWidget::pane:selected { - background-color: #f892ff ; + background-color: #f892ff; border: 1px solid #C1C1C1; } /* QTabBar ---------------------------------------------------------------- @@ -1886,16 +1885,16 @@ QTabBar::tab:top, QDockWidget QTabBar::tab:top { QTabBar::tab:top:selected, QDockWidget QTabBar::tab:top:selected { color: black; - border-top: 4px solid #f892ff ; /* selection color */ + border-top: 4px solid #f892ff; /* selection color */ border-bottom: 1px solid transparent; /* same as tab content background color */ border-left: 1px solid #A3A3A3; border-right: 1px solid #A3A3A3; } QTabBar::tab:top:!selected:hover, QDockWidget QTabBar::tab:top:!selected:hover { - /*border: 1px solid #f892ff ;*/ - border: 0px solid #f892ff ; - background-color: #f892ff ; + /*border: 1px solid #f892ff;*/ + border: 0px solid #f892ff; + background-color: #f892ff; /* Fixes spyder-ide/spyder#9766 and #243 */ padding-left: 3px; padding-right: 3px; @@ -1916,7 +1915,7 @@ QTabBar::tab:bottom, QDockWidget QTabBar::tab:bottom { QTabBar::tab:bottom:selected, QDockWidget QTabBar::tab:bottom:selected { color: black; - border-bottom: 4px solid #f892ff ; /* selection color */ + border-bottom: 4px solid #f892ff; /* selection color */ border-top: 1px solid transparent; /* same as tab content background color */ border-left: 1px solid #A3A3A3; border-right: 1px solid #A3A3A3; @@ -1924,9 +1923,9 @@ QTabBar::tab:bottom:selected, QDockWidget QTabBar::tab:bottom:selected { } QTabBar::tab:bottom:!selected:hover, QDockWidget QTabBar::tab:bottom:!selected:hover { -/*border: 1px solid #f892ff ;*/ - border: 0px solid #f892ff ; - background-color: #f892ff ; +/*border: 1px solid #f892ff;*/ + border: 0px solid #f892ff; + background-color: #f892ff; /* Fixes spyder-ide/spyder#9766 and #243 */ padding-left: 3px; padding-right: 3px; @@ -1951,8 +1950,8 @@ QTabBar::tab:left:selected, QDockWidget QTabBar::tab:left:selected { } QTabBar::tab:left:!selected:hover, QDockWidget QTabBar::tab:left:!selected:hover { - border: 0px solid #f892ff ; - background-color: #f892ff ; + border: 0px solid #f892ff; + background-color: #f892ff; /* Fixes different behavior #271 */ margin-right: 0px; padding-right: -1px; @@ -1976,8 +1975,8 @@ QTabBar::tab:right:selected, QDockWidget QTabBar::tab:right:selected { } QTabBar::tab:right:!selected:hover, QDockWidget QTabBar::tab:right:!selected:hover { - border: 0px solid #f892ff ; - background-color: #f892ff ; + border: 0px solid #f892ff; + background-color: #f892ff; /* Fixes different behavior #271 */ margin-left: 0px; padding-left: 0px; @@ -1992,13 +1991,13 @@ QTabBar QToolButton, QDockWidget QTabBar QToolButton { } QTabBar QToolButton:pressed, QDockWidget QTabBar QToolButton:pressed { - border: 0px solid #f892ff ; - background-color: #f892ff ; + border: 0px solid #f892ff; + background-color: #f892ff; } QTabBar QToolButton:pressed:hover, QDockWidget QTabBar QToolButton:pressed:hover { - border: 0px solid #f892ff ; - background-color: #f892ff ; + border: 0px solid #f892ff; + background-color: #f892ff; color: black; } @@ -2070,7 +2069,7 @@ QDockWidget::float-button { } QDockWidget::float-button:hover { - /*background-color: #f892ff ;*/ + /*background-color: #f892ff;*/ image: url(qss:images_dark-light/undock_blue.svg); } @@ -2188,6 +2187,12 @@ QColumnView { border-radius: 0px; } +QTableView, +QListView { + background-color: rgba(0, 0, 0, 0.050); /* background of a lot of stuff including spreadsheets.*/ +} + + QTreeView:disabled, QListView:disabled, QTableView:disabled, @@ -2200,7 +2205,7 @@ QTreeView:selected, QListView:selected, QTableView:selected, QColumnView:selected { - background-color: #f892ff ; + background-color: #f892ff; color: black; } @@ -2215,14 +2220,14 @@ QTreeView::item:pressed, QListView::item:pressed, QTableView::item:pressed, QColumnView::item:pressed { - background-color: #f892ff ; + background-color: #f892ff; } QTreeView::item:selected:active, QListView::item:selected:active, QTableView::item:selected:active, QColumnView::item:selected:active { - background-color: #f892ff ; + background-color: #f892ff; } QTreeView::item:selected:!active, @@ -2239,7 +2244,7 @@ QTableView::item:!selected:hover, QColumnView::item:!selected:hover { outline: 0; color: black; - background-color: #f892ff ; + background-color: #f892ff; } QTableCornerButton::section { @@ -2347,7 +2352,7 @@ QToolBox { QToolBox:selected { padding: 0px; - border: 0px solid #f892ff ; + border: 0px solid #f892ff; } QToolBox::tab { @@ -2385,7 +2390,7 @@ QToolBox::tab:!selected:disabled { } QToolBox::tab:hover { - background-color: #f892ff ; + background-color: #f892ff; } QToolBox QScrollArea QWidget QWidget { @@ -2466,14 +2471,14 @@ QSplitter::handle:hover { background-image: url(qss:images_dark-light/splitter_horizontal_dark.svg); background-position: center center; background-repeat: none; - background-color: #f892ff ; + background-color: #f892ff; } /* QDateEdit, QDateTimeEdit ----------------------------------------------- --------------------------------------------------------------------------- */ QDateEdit, QDateTimeEdit { - selection-background-color: #f892ff ; + selection-background-color: #f892ff; border-style: solid; border: 1px solid #C1C1C1; border-radius: 1.9px; @@ -2487,7 +2492,7 @@ QDateEdit, QDateTimeEdit { } QDateEdit:on, QDateTimeEdit:on { - selection-background-color: #f892ff ; + selection-background-color: #f892ff; } QDateEdit::drop-down, QDateTimeEdit::drop-down { @@ -2511,19 +2516,19 @@ QDateEdit QAbstractItemView, QDateTimeEdit QAbstractItemView { background-color: #F6F6F6; border-radius: 2px; border: 1px solid #C1C1C1; - selection-background-color: #f892ff ; + selection-background-color: #f892ff; } /* QAbstractView ---------------------------------------------------------- --------------------------------------------------------------------------- */ QAbstractView:hover { - border: 1px solid #f892ff ; + border: 1px solid #f892ff; color: black; } QAbstractView:selected { - background: #f892ff ; + background: #f892ff; color: black; } diff --git a/src/Gui/Stylesheets/images_dark-light/checkbox_checked.png b/src/Gui/Stylesheets/images_dark-light/checkbox_checked.png deleted file mode 100644 index cbf06f6513d6b11721290c3f0f3be5bd2d157e84..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 263 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4u6ByT*@`3|I*ik&<|I5lYhrq4+ec# z+yBO~?Yr9HrFJEM@*55oe_nRScB?@5mA5a~+Dre>ztgEwn#&fj==0TE^WOLVUw)_h zGVAoH{kuQ@@2ZaH^Z#|}$Nuj}kALHrEm--ud-gxGfA5)Jz4-BC&-Z%fNmttYe61Zy zUiZ(w>|nOY<8OXM#j3ZbU$P1uSMYTF^L3AS_x^%bwsQt73{&s@xR6kvY6)~EgQu&X J%Q~loCIBeyblU&` diff --git a/src/Gui/Stylesheets/images_dark-light/checkbox_checked_disabled.svg b/src/Gui/Stylesheets/images_dark-light/checkbox_checked_disabled.svg new file mode 100644 index 0000000000..c62c4792cc --- /dev/null +++ b/src/Gui/Stylesheets/images_dark-light/checkbox_checked_disabled.svg @@ -0,0 +1,83 @@ + + + + + + + + + + image/svg+xml + + + + Pablo Gil + + + + + SVG + template + + + + + + + + + + + diff --git a/src/Gui/Stylesheets/images_dark-light/checkbox_checked_hover.png b/src/Gui/Stylesheets/images_dark-light/checkbox_checked_hover.png deleted file mode 100644 index fb4d4d3fdb8317007df5f7daef85d2047cc13b7f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 266 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4u6ByT*@`3|I*ik&<|I56=wwV&tDe6vI8>;8uqR`SNb(`&F`^W=K8{`%gCKdss(1#OB9JrCFf?Na3b0$s}B M>FVdQ&MBb@0BQJfRsaA1 diff --git a/src/Gui/Stylesheets/images_dark-light/checkbox_checked_pressed.png b/src/Gui/Stylesheets/images_dark-light/checkbox_checked_pressed.png deleted file mode 100644 index 852fcc0306cb561fcb1fea023a0888e9757283d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 425 zcmV;a0apHrP)S zm^Euw1rYxr0aq{piT|WxxTdwMRxRDQZr#+)8#eT8-L$EB`{vD6JGX8v+`VmE#-8ol z<92M`9FL)C(}oQbfQst(?ATFyVArnf!+ZB89y@R#eAm{kky9p3nz(u0xY^eci$OLML2Wkktdhue? z({Pb{Qm9Rsf!max&_tnb>8gRz6W>j*2d5@ zW7@QZAVtm1&A%5dS_HG<&(z726KP{ZgW3og1I6tzG?AJjNKShIu|2+c TpjXiK00000NkvXXu0mjfou0sg diff --git a/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked.png b/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked.png deleted file mode 100644 index 5f5465582a9a2e6a85adbe07a4a2da5e80b8b017..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 159 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 ZzL&^DNb*WPftlq3*5((@s!UN2{tF_yQN92G diff --git a/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_disabled.svg b/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_disabled.svg index 3037ff5e60..51935b024e 100644 --- a/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_disabled.svg +++ b/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_disabled.svg @@ -2,21 +2,22 @@ - + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + inkscape:current-layer="layer1" /> + + + + + image/svg+xml + + + + Pablo Gil + + + + + SVG + template + + + + + + id="layer1" + transform="translate(-1074.0663,-326.59799)"> + width="27.009174" + height="27.009172" + x="1075.5618" + y="328.09341" + ry="3.7735419" + rx="3.9316399" /> diff --git a/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_hover.png b/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_hover.png deleted file mode 100644 index 687364497ef12ee7a723c753e4b3e548856c00c6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 159 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4u6ByT*@`3|I*ik&<|I5IUdsxIlgV*+Y9Mh_d ze&+HU)fh?Yeck!Ep4sTn9mAF-AAWF$XFT9>W-y9iDs|;AJ_OXx;OXk;vd$@?2>@8t BF;V~k diff --git a/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_pressed.png b/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_pressed.png deleted file mode 100644 index 6a768c44de657b0ad4c15e21b1eb234b22725107..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uAB#T}@sR2?f#ZI0f96(URk`2Rz z=~sJu%M*$o9V~hAU;#Jl+;HoW&N@>rk{Wg#^)G3oasPh-VCTg&wSw*MWA zmDLXD{$0Vaa^Lx_hSj?^m|nAzyL-_6f1SMW3%%6M-#jZ`Z2J1Pmf_UJq~m#dFF`@T N;OXk;vd$@?2>?U5f5iX* diff --git a/src/Gui/Stylesheets/images_dark-light/radiobutton_checked.png b/src/Gui/Stylesheets/images_dark-light/radiobutton_checked.png deleted file mode 100644 index 8ab9157578050442b58d511ad791f9ba12d545d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 355 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uGBwbBK{D4$-fKQ0)|NsBH!Jx0NZ^DEL{r&yl zzkmPo`SXVlA3lBj_~y-Cq-Me$=&f|vGbIfCr&I_u;ApOLm;W$yAN*PesISQAlcK?17rZnLpydH+PU-a zu3cC8{cC~F&@2h^3ua(3ZlAyG#HrJ#&zw1X@zUk1H*Vd!efQqI`;VSHd;aFbr?20> z|NQyu*RQ{J+H607n({nd978ywWBVML4jM49Z1*%?v~=N;CN9^H|HZAoEPA$Yv$E&1 z9QoW#70=eQv5#l#-FBMvHk;wqJukIzpOBj;R1>yFGM&_9yK%4WwUpD97Y{%Ev*~}} xew1PP@9Z1S9YvgC?Vs~*ot^u6|Nd$B&*|^yWaplsV&_rt#@ByWiM}USFD4Mn^&lVpMOn_Jf(Vb~r7@Q$u zYGPcRoSt)Mdd|$fbCbzrZWe+dEF!iMaYXeyvtIP$X5au~9pQvSAzO?_ZxgcIj!Tkr zdUA4gba-fdp9lP;jRQewNwL_Yn$N$PhB0W?>)k8Ma?7RCIFnA_go42`FzZti2+N#6 zLRr^eT-UWd&ogH+e12|RUtSKBY}N*`Ks-s?T!|9~uG=K=bu_AVJDodb)}!IDVHw6y z62$^m-6AO-6U93;2LwFz`;MN?zU#T1$IP02r`habnh_2L_eiQH6NwHr@X)SS`v8BG z73GteHT&)R`%Y2QYRBPlaykhvwJ7?(Nw<#ERTbqNq@AgzGuTR(DEco=uj6sOR;jot zSx#fU&8d43XVO->MA3ftNNCx1PcIfN{9FQd>F1t!544po*^Nf;0UBp4dlS6{Kkf@f Wm-WvSU@v9>0000b2pSISvwVQFJ&VIe3;ihzg_3qfozrGmu5Ld3=@rGiaJ zCD3w#y|OIdKO2wtTb*pg&^b?h-(MdL25t}pIrdeWrhTQ<#ly+u){BjeHz=?PxSm4{ z^m@I=qtQsCQr2c%@H}<4+l`!+m3VS|d^al!w)Il7C9co_rUi78M0z&kP&sXi&>f~9mi7!Gk~!5xfEhmT9$Q%dtjg}3JriD9%66f z0+!3FDv;oy79z5Qh#|Wp(cCiZrMcEIXM|v>swzpwco5i*lou)?rhpXvgPwAwAHPpd zIu23DJ!F9K^SmH($+k6sJ%-S%!Wsz6I+U2h?lcUqo#}Mu-WjZkzIwjDgjpR#QS^nY zusyP@%c!(3Vdd@5FuY;9-9KfTPV=HroHfxpYQ!zz0C!i4Vb?!LZ0 zAo=Fa8zA@a;luat-TUz2!-541-oAYc6ghP0P=9~_ojZ4c>>e;snB5);G)JT)$S?Q= z!w2JbmNWD3T{`{z%&q&&F5mt6D?~Ft4JhyL>Eakt5f|DQ$<<&W;5>O|=IXm!zwck& z5i#StxRcm~D_7o4o1!A&(`P)tJwhR4>7%7$${|X2i!|Jh`^)cm7WVnjspzLqZRdZU fTX(+xqrE)4G}GhuCV>w?qZvG1{an^LB{Ts5Zwqe& diff --git a/src/Gui/Stylesheets/images_dark-light/radiobutton_unchecked_hover.png b/src/Gui/Stylesheets/images_dark-light/radiobutton_unchecked_hover.png deleted file mode 100644 index 666a3b0bdd4a41fad993b4f8ba9596daec337bfa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 492 zcmVh&+v zH1*YLrMR*ei~eh~X^F+64zNOgg2L1iRj^D`^8&6uZM(0^vMum@1+88XluGja8xE~q zfGb1O=BOrfEPG8*C!5JkX@-5!WIUc$%jNDp$7P*LNNGSr?}J8$F_T2`8PKIO(<5S~ zlxXN(!1r?5>$clwE}hP!y^xb0hEph3N{NR44-9mDUawYFd|ZI{XuBuc1I0=y>HYrv z9WxBk5>)`8@bP#Op3^^n1QvIO!!lwmKNSiu6-jEBM6rgJa;QMS2|Nc|$oucn9$>h^ iz&Yp&_aU4edVRm5PW-+l9wg2H0000QSK@^2&H=7tD5==S;F*X(^h>iFY#KuDG6bsQp!9qdpvRg*M2UrOTcG_qu`Ue#4 z1UnH0gCr)qBqrHMc4j9hkt2+n=GRzc@5g&4c$QqF6*>^Sb=xwifN-%M)yzQq|cNvQ1+ z@S=uS8c?MCs8=eb224&1pgB(M00Nl+yfZ~H=po)pg@PNBve?ezG#VXa8-gsMD1GGD z(1(X|xjfpfss#dE&m(hS`VDLvMh%ZJ1?ZW|J29)(3!kxXDMaDFnGOKp0_X*>46SI? z>0CB@T4ijqi!o{-ft}K}3_}2j!@LV!l0RrJE_W#KpKQi9usVnCu$M<11~Asja0MNa uJ%H$IAne0%i#Q8yLqpIj^aQQ`{(Cvx