Skip to content

Commit

Permalink
[Stylesheets] fix selection background color for Darker theme
Browse files Browse the repository at this point in the history
  • Loading branch information
pgilfernandez authored and wwmayer committed Jan 15, 2020
1 parent 88405ae commit e52bd17
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/Gui/Stylesheets/Darker-blue.qss
@@ -1,7 +1,7 @@
/*
ABOUT
============================================================================================================
version 2.21
version 2.22
Qt theme (stylesheet) specially developed for FreeCAD (https://www.freecadweb.org/).
It might work with other software that uses Qt styling.

Expand Down Expand Up @@ -1165,8 +1165,8 @@ QDateEdit,
QDateTimeEdit {
color: #bebebe;
background-color: #2a2a2a;
selection-color: #cbd8e6;
selection-background-color: #2053c0;
selection-color: white;
selection-background-color: #1b3774 ;
border: 1px solid #2a2a2a;
border-radius: 3px;
min-width: 50px; /* it ensures the default value is correctly displayed */
Expand Down
6 changes: 3 additions & 3 deletions src/Gui/Stylesheets/Darker-green.qss
@@ -1,7 +1,7 @@
/*
ABOUT
============================================================================================================
version 2.21
version 2.22
Qt theme (stylesheet) specially developed for FreeCAD (https://www.freecadweb.org/).
It might work with other software that uses Qt styling.

Expand Down Expand Up @@ -1165,8 +1165,8 @@ QDateEdit,
QDateTimeEdit {
color: #bebebe;
background-color: #2a2a2a;
selection-color: #dadfc5;
selection-background-color: #74831d;
selection-color: white;
selection-background-color: #566214 ;
border: 1px solid #2a2a2a;
border-radius: 3px;
min-width: 50px; /* it ensures the default value is correctly displayed */
Expand Down
6 changes: 3 additions & 3 deletions src/Gui/Stylesheets/Darker-orange.qss
@@ -1,7 +1,7 @@
/*
ABOUT
============================================================================================================
version 2.21
version 2.22
Qt theme (stylesheet) specially developed for FreeCAD (https://www.freecadweb.org/).
It might work with other software that uses Qt styling.

Expand Down Expand Up @@ -1165,8 +1165,8 @@ QDateEdit,
QDateTimeEdit {
color: #bebebe;
background-color: #2a2a2a;
selection-color: #e3d8b9;
selection-background-color: #b28416;
selection-color: white;
selection-background-color: #624b14 ;
border: 1px solid #2a2a2a;
border-radius: 3px;
min-width: 50px; /* it ensures the default value is correctly displayed */
Expand Down

0 comments on commit e52bd17

Please sign in to comment.