Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed issue with light red theme and updated documentation for alt themes #114

Merged
merged 2 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ Example user interface using the Breeze and BreezeDark stylesheets side-by-side.
</tbody>
</table>

Alternative themes - Change QTableWidget hover behavior to highlight whole row, instead of individual cells.
### Alternative themes

Change QTableWidget hover behavior to highlight whole row, instead of individual cells.
Also changes background color of light themes to a light gray and applies theme color to radio buttons and checkboxes.

<table cellspacing="0" cellpadding="0">
<tbody>
Expand All @@ -57,6 +60,15 @@ Alternative themes - Change QTableWidget hover behavior to highlight whole row,
</tbody>
</table>

<table cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td><img src="./assets/light-blue.png" alt="Light blue standard demo" ></td>
<td><img src="./assets/light-blue-alt.png" alt="Light blue alt demo" ></td>
</tr>
</tbody>
</table>

For an extensive view of screenshots of the theme, see the [gallery](assets/gallery.md).

## Getting Started
Expand Down Expand Up @@ -570,9 +582,7 @@ Unless you explicitly state otherwise, any contribution intentionally submitted

BreezeStyleSheets is a fork of [QDarkStyleSheet](https://github.com/ColinDuquesnoy/QDarkStyleSheet). Some of the icons are modified from [Material UI](https://github.com/google/material-design-icons) and [Material Design Icons](https://materialdesignicons.com/) (both of which use an Apache 2.0 [license](/MaterialUi.LICENSE)), and are redistributed under the MIT license.

PyQtBreezeStyleSheets is a further fork of [BreezeStyleSheets](https://github.com/Alexhuszagh/BreezeStyleSheets).

Major contributions to the project have made by:
Major contributions to the project have been made by:
- [Inverted-E](https://github.com/Inverted-E/)

## Contact
Expand Down
Binary file added assets/light-blue-alt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/light-blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions theme/light-red.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"view:header": "#eff0f1",
"view:header:border": "#bab9b8",
"view:border": "#bab9b8",
"view:background": "#cecece",
"text:background": "#cecece",
"view:background": "#eff0f1",
"text:background": "#eff0f1",
"tab:background:selected": "#eff0f1",
"tab:background": "#d9d8d7",
"tree": "#4b4b4b",
Expand Down
Loading