summary refs log tree commit diff
path: root/resources/styles
diff options
context:
space:
mode:
authorMax Sandholm <max@sandholm.org>2018-01-09 15:07:32 +0200
committermujx <mujx@users.noreply.github.com>2018-01-09 15:07:32 +0200
commit312df6f3bbcba0ad502864b13f9c51b4854ea2ce (patch)
treed43396836cb2ba21b13f218a6d25a7c82049338b /resources/styles
parentMake usernames in timeline less bold (diff)
downloadnheko-312df6f3bbcba0ad502864b13f9c51b4854ea2ce.tar.xz
Communities (#195)
Diffstat (limited to 'resources/styles')
-rw-r--r--resources/styles/nheko-dark.qss10
-rw-r--r--resources/styles/nheko.qss11
-rw-r--r--resources/styles/system.qss6
3 files changed, 27 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss

index a78fb612..26425590 100644 --- a/resources/styles/nheko-dark.qss +++ b/resources/styles/nheko-dark.qss
@@ -17,6 +17,10 @@ RoomList > * { background-color: #383c4a; } +CommunitiesList, +CommunitiesList > * { + background-color: #383c4a; +} FlatButton { qproperty-foregroundColor: #caccd1; qproperty-backgroundColor: #333; @@ -54,6 +58,12 @@ RoomInfoListItem { qproperty-btnTextColor: white; } +CommunitiesListItem { + qproperty-highlightedBackgroundColor: #5294e2; + qproperty-hoverBackgroundColor: #39679e; + qproperty-backgroundColor: #383c4a; +} + LoadingIndicator { qproperty-color: #caccd1; } diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index ce86e212..c135c12a 100644 --- a/resources/styles/nheko.qss +++ b/resources/styles/nheko.qss
@@ -17,6 +17,11 @@ RoomList > * { background-color: white; } +CommunitiesList, +CommunitiesList > * { + background-color: white; +} + FlatButton { qproperty-foregroundColor: #333; } @@ -52,6 +57,12 @@ RoomInfoListItem { qproperty-btnTextColor: #333; } +CommunitiesListItem { + qproperty-highlightedBackgroundColor: #38A3D8; + qproperty-hoverBackgroundColor: rgba(200, 200, 200, 128); + qproperty-backgroundColor: white; +} + #ChatPageLoadSpinner { qproperty-color: #acc7dc; } diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index afb2ad26..42aba09d 100644 --- a/resources/styles/system.qss +++ b/resources/styles/system.qss
@@ -60,6 +60,12 @@ RoomInfoListItem { qproperty-btnTextColor: palette(text); } +CommunitiesListItem { + qproperty-highlightedBackgroundColor: palette(highlight); + qproperty-hoverBackgroundColor: palette(mid); + qproperty-backgroundColor: palette(window); +} + LoadingIndicator { qproperty-color: palette(highlight); }