removed png files changed the background of Qtableview and Qlistview.

removed png files changed the background of Qtableview and Qlistview.
This commit is contained in:
Haas
2023-06-06 19:33:54 +02:00
parent 99d8c818a6
commit e025f2f7a7
36 changed files with 543 additions and 277 deletions

59
CMakePresets.json Normal file
View File

@@ -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" }
}
]
}

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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;
}

View File

@@ -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;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 263 B

View File

@@ -0,0 +1,83 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="30"
height="30"
id="svg2"
version="1.1"
viewBox="0 0 30 29.999999"
sodipodi:docname="checkbox_checked_disabled.svg"
inkscape:version="1.2-beta (1b65182ce9, 2022-04-05)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
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/">
<sodipodi:namedview
id="namedview294"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:pageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="14.116667"
inkscape:cx="5.0649349"
inkscape:cy="16.399055"
inkscape:window-width="1920"
inkscape:window-height="1028"
inkscape:window-x="2553"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs4" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:creator>
<cc:Agent>
<dc:title>Pablo Gil</dc:title>
</cc:Agent>
</dc:creator>
<dc:subject>
<rdf:Bag>
<rdf:li>SVG</rdf:li>
<rdf:li>template</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(-1074.0663,-326.59799)">
<path
id="path8685"
d="m 1081.0663,345.09799 3.9999,4 12.0001,-12"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:0.60093898;stroke:#1b0909;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.11764706" />
<path
style="opacity:0.5;vector-effect:none;fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1081.0663,342.59799 3.9999,4 12.0001,-12"
id="path7899" />
<rect
style="fill:none;stroke:#000000;stroke-width:2.99083;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:128.504;opacity:0.5"
id="rect354"
width="27.009174"
height="27.009172"
x="1075.5618"
y="328.09341"
ry="3.7735419"
rx="3.9316399" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 425 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

View File

@@ -2,21 +2,22 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="30"
height="30"
id="svg2"
version="1.1"
id="svg132"
width="255.26054"
height="255.00217"
viewBox="0 0 255.26054 255.00217"
viewBox="0 0 30 29.999999"
sodipodi:docname="checkbox_unchecked_disabled.svg"
inkscape:version="1.2-beta (1b65182ce9, 2022-04-05)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs136" />
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/">
<sodipodi:namedview
id="namedview134"
id="namedview294"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
@@ -25,28 +26,50 @@
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="2.2836029"
inkscape:cx="135.96935"
inkscape:cy="121.95641"
inkscape:zoom="14.116667"
inkscape:cx="5.0649349"
inkscape:cy="16.399055"
inkscape:window-width="1920"
inkscape:window-height="1028"
inkscape:window-x="1913"
inkscape:window-x="2553"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="g138" />
inkscape:current-layer="layer1" />
<defs
id="defs4" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:creator>
<cc:Agent>
<dc:title>Pablo Gil</dc:title>
</cc:Agent>
</dc:creator>
<dc:subject>
<rdf:Bag>
<rdf:li>SVG</rdf:li>
<rdf:li>template</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g138"
transform="translate(35.460644,-48.814133)">
id="layer1"
transform="translate(-1074.0663,-326.59799)">
<rect
style="fill:none;stroke:#808080;stroke-width:20;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:128.504"
style="fill:none;stroke:#000000;stroke-width:2.99083;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:128.504;opacity:0.5"
id="rect354"
width="235.26054"
height="235.00217"
x="-25.460644"
y="58.814133"
ry="35.984451"
rx="35.984451" />
width="27.009174"
height="27.009172"
x="1075.5618"
y="328.09341"
ry="3.7735419"
rx="3.9316399" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 320 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 355 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 532 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 599 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 240 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 492 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 556 B