Skip to content

Commit

Permalink
Merge pull request #63 from notwindstone/main
Browse files Browse the repository at this point in the history
fix: fix instance renaming styles for Fluent-Dark and Borest themes
  • Loading branch information
Scrumplex authored Jan 6, 2025
2 parents 41862fe + 1217390 commit ef4bafc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 20 deletions.
16 changes: 6 additions & 10 deletions themes/Borest/themeStyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -814,25 +814,21 @@ QTextEdit,
QPlainTextEdit {
background-color: rgba(255, 255, 255, 16);
border: 1px solid rgba(255, 255, 255, 5);
border-radius: 7px;
border-bottom: 1px solid #9ab8e6;
padding: 5px;
}

QTextEdit:hover,
QPlainTextEdit:hover {
background-color: rgba(255, 255, 255, 20);
border: 1px solid rgba(255, 255, 255, 10);
border-bottom: 1px solid #9ab8e6;
background-color: rgba(0, 0, 0, 255);
}

QTextEdit:focus,
QPlainTextEdit:focus {
border-bottom: 2px solid #60cdff;
background-color: rgba(255, 255, 255, 5);
border-top: 1px solid rgba(255, 255, 255, 7);
border-left: 1px solid rgba(255, 255, 255, 7);
border-right: 1px solid rgba(255, 255, 255, 7);
border-bottom: 1px solid #60cdff;
background-color: rgba(0, 0, 0, 255);
border-top: 1px solid #60cdff;
border-left: 1px solid #60cdff;
border-right: 1px solid #60cdff;
}

QTextEdit:disabled,
Expand Down
16 changes: 6 additions & 10 deletions themes/Fluent-Dark/themeStyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -812,25 +812,21 @@ QTextEdit,
QPlainTextEdit {
background-color: rgba(255, 255, 255, 16);
border: 1px solid rgba(255, 255, 255, 5);
border-radius: 7px;
border-bottom: 1px solid #707070;
padding: 5px;
}

QTextEdit:hover,
QPlainTextEdit:hover {
background-color: rgba(255, 255, 255, 20);
border: 1px solid rgba(255, 255, 255, 10);
border-bottom: 1px solid #707070;
background-color: rgba(0, 0, 0, 255);
}

QTextEdit:focus,
QPlainTextEdit:focus {
border-bottom: 2px solid #60cdff;
background-color: rgba(255, 255, 255, 5);
border-top: 1px solid rgba(255, 255, 255, 7);
border-left: 1px solid rgba(255, 255, 255, 7);
border-right: 1px solid rgba(255, 255, 255, 7);
border-bottom: 1px solid #60cdff;
background-color: rgba(0, 0, 0, 255);
border-top: 1px solid #60cdff;
border-left: 1px solid #60cdff;
border-right: 1px solid #60cdff;
}

QTextEdit:disabled,
Expand Down

0 comments on commit ef4bafc

Please sign in to comment.