Skip to content

Commit ef4bafc

Browse files
authored
Merge pull request #63 from notwindstone/main
fix: fix instance renaming styles for Fluent-Dark and Borest themes
2 parents 41862fe + 1217390 commit ef4bafc

File tree

2 files changed

+12
-20
lines changed

2 files changed

+12
-20
lines changed

themes/Borest/themeStyle.css

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -814,25 +814,21 @@ QTextEdit,
814814
QPlainTextEdit {
815815
background-color: rgba(255, 255, 255, 16);
816816
border: 1px solid rgba(255, 255, 255, 5);
817-
border-radius: 7px;
818817
border-bottom: 1px solid #9ab8e6;
819-
padding: 5px;
820818
}
821819

822820
QTextEdit:hover,
823821
QPlainTextEdit:hover {
824-
background-color: rgba(255, 255, 255, 20);
825-
border: 1px solid rgba(255, 255, 255, 10);
826-
border-bottom: 1px solid #9ab8e6;
822+
background-color: rgba(0, 0, 0, 255);
827823
}
828824

829825
QTextEdit:focus,
830826
QPlainTextEdit:focus {
831-
border-bottom: 2px solid #60cdff;
832-
background-color: rgba(255, 255, 255, 5);
833-
border-top: 1px solid rgba(255, 255, 255, 7);
834-
border-left: 1px solid rgba(255, 255, 255, 7);
835-
border-right: 1px solid rgba(255, 255, 255, 7);
827+
border-bottom: 1px solid #60cdff;
828+
background-color: rgba(0, 0, 0, 255);
829+
border-top: 1px solid #60cdff;
830+
border-left: 1px solid #60cdff;
831+
border-right: 1px solid #60cdff;
836832
}
837833

838834
QTextEdit:disabled,

themes/Fluent-Dark/themeStyle.css

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -812,25 +812,21 @@ QTextEdit,
812812
QPlainTextEdit {
813813
background-color: rgba(255, 255, 255, 16);
814814
border: 1px solid rgba(255, 255, 255, 5);
815-
border-radius: 7px;
816815
border-bottom: 1px solid #707070;
817-
padding: 5px;
818816
}
819817

820818
QTextEdit:hover,
821819
QPlainTextEdit:hover {
822-
background-color: rgba(255, 255, 255, 20);
823-
border: 1px solid rgba(255, 255, 255, 10);
824-
border-bottom: 1px solid #707070;
820+
background-color: rgba(0, 0, 0, 255);
825821
}
826822

827823
QTextEdit:focus,
828824
QPlainTextEdit:focus {
829-
border-bottom: 2px solid #60cdff;
830-
background-color: rgba(255, 255, 255, 5);
831-
border-top: 1px solid rgba(255, 255, 255, 7);
832-
border-left: 1px solid rgba(255, 255, 255, 7);
833-
border-right: 1px solid rgba(255, 255, 255, 7);
825+
border-bottom: 1px solid #60cdff;
826+
background-color: rgba(0, 0, 0, 255);
827+
border-top: 1px solid #60cdff;
828+
border-left: 1px solid #60cdff;
829+
border-right: 1px solid #60cdff;
834830
}
835831

836832
QTextEdit:disabled,

0 commit comments

Comments
 (0)