diff options
author | Adasauce <adasauce@with.parts> | 2020-02-20 22:51:03 -0400 |
---|---|---|
committer | Adasauce <adasauce@with.parts> | 2020-02-20 22:51:03 -0400 |
commit | 5cdc5304ecfc6b4f038e71a75895fe0bd854fd6b (patch) | |
tree | af15c619c09408788568b4abd3bbde5737cf5c0e /resources/styles/system.qss | |
parent | cleanup, re-order, de-duplicate, re-dry qss for dark (diff) | |
download | nheko-5cdc5304ecfc6b4f038e71a75895fe0bd854fd6b.tar.xz |
clean up the light and system themes too
Diffstat (limited to '')
-rw-r--r-- | resources/styles/system.qss | 54 |
1 files changed, 18 insertions, 36 deletions
diff --git a/resources/styles/system.qss b/resources/styles/system.qss index b60b3776..2d4b2d8c 100644 --- a/resources/styles/system.qss +++ b/resources/styles/system.qss @@ -1,3 +1,16 @@ +#chatPage, +#chatPage > *, +CommunitiesList, +CommunitiesList > *, +RoomList, +RoomList > *, +TimelineView, +TimelineView > *, +UserMentionsWidget, +UserMentionsWidget > * { + border: none; +} + TypingDisplay { qproperty-textColor: palette(text); qproperty-backgroundColor: palette(window); @@ -7,31 +20,18 @@ TimelineItem { qproperty-backgroundColor: palette(window); } -TimelineView, -TimelineView > * { - border: none; -} - -UserMentionsWidget, -UserMentionsWidget > * { - border: none; -} - UserMentionsWidget > TimelineItem { qproperty-backgroundColor: palette(window); qproperty-hoverColor: palette(base); } +SideBarActions, TextInputWidget { border: none; border-top: 1px solid palette(mid); } -SideBarActions { - border: none; - border-top: 1px solid palette(mid); -} - +UserInfoWidget, TopRoomBar { border: none; border-bottom: 1px solid palette(mid); @@ -43,11 +43,6 @@ RoomList > * { border: none; } -UserInfoWidget { - border: none; - border-bottom: 1px solid palette(mid); -} - #sideBar { border: none; border-right: 1px solid palette(mid); @@ -67,18 +62,13 @@ FlatButton { qproperty-foregroundColor: palette(text); } +AudioItem, FileItem { qproperty-textColor: palette(text); qproperty-backgroundColor: palette(base); qproperty-iconColor: palette(window); } -AudioItem { - qproperty-textColor: palette(text); - qproperty-backgroundColor: palette(base); - qproperty-iconColor: palette(window); -} - RaisedButton { qproperty-foregroundColor: palette(buttonText); } @@ -95,7 +85,8 @@ QListWidget { background-color: palette(window); } -RoomInfoListItem, UserMentionsWidget { +RoomInfoListItem, +UserMentionsWidget { qproperty-mentionedColor: palette(alternate-base); qproperty-highlightedBackgroundColor: palette(highlight); qproperty-hoverBackgroundColor: palette(light); @@ -124,11 +115,6 @@ RoomInfoListItem, UserMentionsWidget { qproperty-bubbleFgColor: palette(text); } -CommunitiesList, -CommunitiesList > * { - border-style: none; -} - CommunitiesListItem { qproperty-highlightedBackgroundColor: palette(highlight); qproperty-hoverBackgroundColor: palette(light); @@ -172,10 +158,6 @@ SnackBar { qproperty-bgColor: palette(base); } -MemberItem { - background-color: palette(window); -} - Toggle { qproperty-activeColor: palette(highlight); qproperty-disabledColor: palette(dark); |