-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Performance update 1.2.0: Updated listing widgets for Device List & F…
…ile List. Changed with QListView[with QAbstractListModel, QStyledItemDelegate], was QScrollArea with QWidgets
- Loading branch information
Showing
17 changed files
with
544 additions
and
559 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
QListView { | ||
outline: 0; | ||
background-color: #FAFAFA; | ||
} | ||
|
||
QListView::item{ | ||
background-color: #E6E6E6; | ||
} | ||
|
||
QListView::item:hover{ | ||
background-color: #D6D6D6; | ||
} | ||
|
||
QListView::item:active:selected{ | ||
color: black; | ||
background-color: #C1C1C1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
QListView { | ||
outline: 0; | ||
background-color: #FAFAFA; | ||
} | ||
|
||
QListView::item{ | ||
background-color: #E6E6E6; | ||
} | ||
|
||
QListView::item:hover{ | ||
background-color: #D6D6D6; | ||
} | ||
|
||
QListView::item:active:selected{ | ||
color: black; | ||
background-color: #C1C1C1; | ||
border: 1px solid #666666; | ||
} | ||
|
||
QListView::item:active:!selected{ | ||
border: 1px solid #AAAAAA; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
QWidget { | ||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; | ||
font-family: url("-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.