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 cbf06f6513..0000000000
Binary files a/src/Gui/Stylesheets/images_dark-light/checkbox_checked.png and /dev/null differ
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 @@
+
+
+
+
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 fb4d4d3fdb..0000000000
Binary files a/src/Gui/Stylesheets/images_dark-light/checkbox_checked_hover.png and /dev/null differ
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 852fcc0306..0000000000
Binary files a/src/Gui/Stylesheets/images_dark-light/checkbox_checked_pressed.png and /dev/null differ
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 5f5465582a..0000000000
Binary files a/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked.png and /dev/null differ
diff --git a/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_disabled.png b/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_disabled.png
deleted file mode 100644
index bf38d8a4fa..0000000000
Binary files a/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_disabled.png and /dev/null differ
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 @@
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 687364497e..0000000000
Binary files a/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_hover.png and /dev/null differ
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 6a768c44de..0000000000
Binary files a/src/Gui/Stylesheets/images_dark-light/checkbox_unchecked_pressed.png and /dev/null differ
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 8ab9157578..0000000000
Binary files a/src/Gui/Stylesheets/images_dark-light/radiobutton_checked.png and /dev/null differ
diff --git a/src/Gui/Stylesheets/images_dark-light/radiobutton_checked_hover.png b/src/Gui/Stylesheets/images_dark-light/radiobutton_checked_hover.png
deleted file mode 100644
index d68cb009a7..0000000000
Binary files a/src/Gui/Stylesheets/images_dark-light/radiobutton_checked_hover.png and /dev/null differ
diff --git a/src/Gui/Stylesheets/images_dark-light/radiobutton_checked_pressed.png b/src/Gui/Stylesheets/images_dark-light/radiobutton_checked_pressed.png
deleted file mode 100644
index e3cd5a59e4..0000000000
Binary files a/src/Gui/Stylesheets/images_dark-light/radiobutton_checked_pressed.png and /dev/null differ
diff --git a/src/Gui/Stylesheets/images_dark-light/radiobutton_unchecked.png b/src/Gui/Stylesheets/images_dark-light/radiobutton_unchecked.png
deleted file mode 100644
index 321a9a1558..0000000000
Binary files a/src/Gui/Stylesheets/images_dark-light/radiobutton_unchecked.png and /dev/null differ
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 666a3b0bdd..0000000000
Binary files a/src/Gui/Stylesheets/images_dark-light/radiobutton_unchecked_hover.png and /dev/null differ
diff --git a/src/Gui/Stylesheets/images_dark-light/radiobutton_unchecked_pressed.png b/src/Gui/Stylesheets/images_dark-light/radiobutton_unchecked_pressed.png
deleted file mode 100644
index c4b0567aa9..0000000000
Binary files a/src/Gui/Stylesheets/images_dark-light/radiobutton_unchecked_pressed.png and /dev/null differ