start: fix filecard text visibility on classic theme also fixes hover and pressed states

This commit is contained in:
Alfredo Monclus
2025-02-26 15:17:46 -03:00
parent e4a14871f5
commit eae8aec93d
4 changed files with 71 additions and 127 deletions

View File

@@ -2860,17 +2860,17 @@ QTreeView::branch#groupsTreeView:has-siblings:!adjoins-item {
/*==================================================================================================
Start page
==================================================================================================*/
QWidget#thumbnailWidget {
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #333333, stop:1 #252525);
#thumbnailWidget {
background-color: #2f2f2f;
border-radius: 8px;
border: 1px solid #020202;
}
QWidget#thumbnailWidget[state="hovered"] {
#thumbnailWidget:hover {
border: 1px solid @ThemeAccentColor1;
}
QWidget#thumbnailWidget[state="pressed"] {
#thumbnailWidget:pressed {
border: 1px solid @ThemeAccentColor1;
}

View File

@@ -2865,17 +2865,17 @@ QTreeView::branch#groupsTreeView:has-siblings:!adjoins-item {
/*==================================================================================================
Start page
==================================================================================================*/
QWidget#thumbnailWidget {
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #f0f0f0, stop:1 #fdfdfd);
#thumbnailWidget {
background-color: #ededed;
border-radius: 8px;
border: 1px solid #ababab;
}
QWidget#thumbnailWidget[state="hovered"] {
#thumbnailWidget:hover {
border: 1px solid @ThemeAccentColor1;
}
QWidget#thumbnailWidget[state="pressed"] {
#thumbnailWidget:pressed {
border: 1px solid @ThemeAccentColor1;
}