diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-01-15 21:04:49 +0200 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-01-15 21:04:49 +0200 |
commit | af5663b6bc5de95ad4e15bcc40231e0094a9889c (patch) | |
tree | 8ef0a99ae53a5be665226a1aa8e3a0636b764cae /resources | |
parent | Change cache format to not allow duplicate receipts (diff) | |
download | nheko-af5663b6bc5de95ad4e15bcc40231e0094a9889c.tar.xz |
Add borders
Diffstat (limited to 'resources')
-rw-r--r-- | resources/styles/nheko-dark.qss | 20 | ||||
-rw-r--r-- | resources/styles/nheko.qss | 20 | ||||
-rw-r--r-- | resources/styles/system.qss | 20 |
3 files changed, 60 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss index 88631858..584b2389 100644 --- a/resources/styles/nheko-dark.qss +++ b/resources/styles/nheko-dark.qss @@ -7,6 +7,11 @@ QLabel { background-color: #383c4a; } +#sideBar { + border: none; + border-right: 1px solid #414A59; +} + TimelineView, TimelineView > * { background-color: #383c4a; @@ -73,6 +78,11 @@ UserInfoWidget, UserInfoWidget > * { color: #b0b3ba; } +UserInfoWidget { + border: none; + border-bottom: 1px solid #414A59; +} + UserSettingsPage { background-color: #383c4a; } @@ -142,3 +152,13 @@ ScrollBar { qproperty-handleColor: #caccd1; qproperty-backgroundColor: #383c4e; } + +SideBarActions { + border: none; + border-top: 1px solid #414A59; +} + +TopRoomBar { + border: none; + border-bottom: 1px solid #414A59; +} diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss index a5f99353..1e300494 100644 --- a/resources/styles/nheko.qss +++ b/resources/styles/nheko.qss @@ -7,6 +7,11 @@ QLabel { background-color: white; } +#sideBar { + border: none; + border-right: 1px solid #dcdcdc; +} + TimelineView, TimelineView > * { background-color: white; @@ -76,6 +81,11 @@ UserInfoWidget, UserInfoWidget > * { color: #ebebeb; } +UserInfoWidget { + border: none; + border-bottom: 1px solid #dcdcdc; +} + UserSettingsPage { background-color: white; } @@ -139,3 +149,13 @@ ScrollBar { qproperty-handleColor: #ccc; qproperty-backgroundColor: #efefef; } + +SideBarActions { + border: none; + border-top: 1px solid #dcdcdc; +} + +TopRoomBar { + border: none; + border-bottom: 1px solid #dcdcdc; +} diff --git a/resources/styles/system.qss b/resources/styles/system.qss index 42aba09d..ab9dcd8e 100644 --- a/resources/styles/system.qss +++ b/resources/styles/system.qss @@ -8,6 +8,11 @@ OverlayWidget > * { background-color: palette(window); } +#sideBar { + border: none; + border-right: 1px solid palette(text); +} + TimelineView, TimelineView > *, TimelineItem, @@ -79,6 +84,11 @@ UserInfoWidget > * { background-color: palette(window); } +UserInfoWidget { + border: none; + border-bottom: 1px solid palette(text); +} + emoji--Category, emoji--Category > * { background-color: palette(window); @@ -108,3 +118,13 @@ QListWidget { background-color: palette(window); color: palette(text); } + +SideBarActions { + border: none; + border-top: 1px solid palette(text); +} + +TopRoomBar { + border: none; + border-bottom: 1px solid palette(text); +} |