2018-09-19 21:42:26 +02:00
|
|
|
TypingDisplay {
|
|
|
|
qproperty-textColor: palette(text);
|
|
|
|
qproperty-backgroundColor: palette(window);
|
2017-11-16 15:33:52 +01:00
|
|
|
}
|
|
|
|
|
2019-01-18 18:17:25 +01:00
|
|
|
TimelineItem {
|
|
|
|
qproperty-backgroundColor: palette(window);
|
|
|
|
}
|
|
|
|
|
2018-09-19 21:42:26 +02:00
|
|
|
TimelineView,
|
|
|
|
TimelineView > * {
|
|
|
|
border: none;
|
2017-11-16 15:33:52 +01:00
|
|
|
}
|
|
|
|
|
2019-08-30 00:01:20 +02:00
|
|
|
UserMentionsWidget,
|
|
|
|
UserMentionsWidget > * {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
UserMentionsWidget > TimelineItem {
|
|
|
|
qproperty-backgroundColor: palette(window);
|
|
|
|
qproperty-hoverColor: palette(base);
|
|
|
|
}
|
|
|
|
|
2018-09-19 21:42:26 +02:00
|
|
|
TextInputWidget {
|
2018-01-15 20:04:49 +01:00
|
|
|
border: none;
|
2018-09-19 21:42:26 +02:00
|
|
|
border-top: 1px solid palette(mid);
|
|
|
|
}
|
|
|
|
|
|
|
|
SideBarActions {
|
|
|
|
border: none;
|
|
|
|
border-top: 1px solid palette(mid);
|
2018-01-15 20:04:49 +01:00
|
|
|
}
|
|
|
|
|
2018-07-25 22:07:56 +02:00
|
|
|
TopRoomBar {
|
|
|
|
border: none;
|
2018-09-19 21:42:26 +02:00
|
|
|
border-bottom: 1px solid palette(mid);
|
2018-07-25 22:07:56 +02:00
|
|
|
}
|
|
|
|
|
2018-09-19 21:42:26 +02:00
|
|
|
RoomList,
|
|
|
|
RoomList > * {
|
2017-11-25 14:14:37 +01:00
|
|
|
background-color: palette(window);
|
2018-07-25 17:48:11 +02:00
|
|
|
border: none;
|
2017-11-16 15:33:52 +01:00
|
|
|
}
|
|
|
|
|
2018-09-19 21:42:26 +02:00
|
|
|
UserInfoWidget {
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid palette(mid);
|
2018-03-22 08:16:17 +01:00
|
|
|
}
|
|
|
|
|
2018-09-19 21:42:26 +02:00
|
|
|
#sideBar {
|
|
|
|
border: none;
|
|
|
|
border-right: 1px solid palette(mid);
|
|
|
|
border-left: 1px solid palette(mid);
|
2018-08-08 11:51:40 +02:00
|
|
|
}
|
|
|
|
|
2018-07-07 12:39:53 +02:00
|
|
|
InfoMessage {
|
2018-04-25 14:37:43 +02:00
|
|
|
qproperty-textColor: palette(text);
|
2018-09-19 21:42:26 +02:00
|
|
|
qproperty-boxColor: palette(base);
|
2018-04-24 15:03:50 +02:00
|
|
|
}
|
|
|
|
|
2018-03-24 22:16:15 +01:00
|
|
|
PopupItem {
|
2018-09-19 21:42:26 +02:00
|
|
|
qproperty-hoverColor: palette(base);
|
2018-03-24 22:16:15 +01:00
|
|
|
}
|
|
|
|
|
2017-11-16 15:33:52 +01:00
|
|
|
FlatButton {
|
2017-11-23 15:25:58 +01:00
|
|
|
qproperty-foregroundColor: palette(text);
|
2017-11-16 15:33:52 +01:00
|
|
|
}
|
|
|
|
|
2017-11-28 01:01:37 +01:00
|
|
|
FileItem {
|
|
|
|
qproperty-textColor: palette(text);
|
|
|
|
qproperty-backgroundColor: palette(base);
|
|
|
|
qproperty-iconColor: palette(window);
|
2017-12-01 16:33:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioItem {
|
|
|
|
qproperty-textColor: palette(text);
|
|
|
|
qproperty-backgroundColor: palette(base);
|
|
|
|
qproperty-iconColor: palette(window);
|
2017-11-28 01:01:37 +01:00
|
|
|
}
|
|
|
|
|
2017-11-25 14:14:37 +01:00
|
|
|
RaisedButton {
|
2018-07-15 20:38:47 +02:00
|
|
|
qproperty-foregroundColor: palette(buttonText);
|
2017-11-25 14:14:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TextField {
|
|
|
|
qproperty-backgroundColor: palette(window);
|
|
|
|
}
|
|
|
|
|
2018-09-19 21:42:26 +02:00
|
|
|
QTextEdit,
|
|
|
|
ReceiptItem,
|
|
|
|
MemberItem,
|
|
|
|
QLineEdit,
|
|
|
|
QListWidget {
|
2017-11-25 14:14:37 +01:00
|
|
|
background-color: palette(window);
|
|
|
|
}
|
|
|
|
|
2019-07-25 11:40:18 +02:00
|
|
|
RoomInfoListItem, UserMentionsWidget {
|
2019-01-25 03:43:54 +01:00
|
|
|
qproperty-mentionedColor: palette(alternate-base);
|
2017-11-23 15:25:58 +01:00
|
|
|
qproperty-highlightedBackgroundColor: palette(highlight);
|
2019-07-25 11:40:18 +02:00
|
|
|
qproperty-hoverBackgroundColor: palette(light);
|
2017-11-23 15:25:58 +01:00
|
|
|
qproperty-backgroundColor: palette(window);
|
2017-11-16 15:33:52 +01:00
|
|
|
|
2017-11-23 15:25:58 +01:00
|
|
|
qproperty-titleColor: palette(text);
|
|
|
|
qproperty-subtitleColor: palette(text);
|
2017-11-16 15:33:52 +01:00
|
|
|
|
2018-09-19 21:42:26 +02:00
|
|
|
qproperty-highlightedTitleColor: palette(highlightedtext);
|
|
|
|
qproperty-highlightedSubtitleColor: palette(highlightedtext);
|
2017-12-19 21:36:12 +01:00
|
|
|
|
2019-01-12 23:03:25 +01:00
|
|
|
qproperty-hoverTitleColor: palette(highlightedtext);
|
|
|
|
qproperty-hoverSubtitleColor: palette(highlightedtext);
|
|
|
|
|
2018-09-19 21:42:26 +02:00
|
|
|
qproperty-btnColor: palette(button);
|
|
|
|
qproperty-btnTextColor: palette(buttonText);
|
2018-03-18 22:38:04 +01:00
|
|
|
|
|
|
|
qproperty-timestampColor: palette(text);
|
2018-09-19 21:42:26 +02:00
|
|
|
qproperty-highlightedTimestampColor: palette(highlightedtext);
|
2019-01-12 23:03:25 +01:00
|
|
|
qproperty-hoverTimestampColor: palette(highlightedtext);
|
2018-03-22 08:16:17 +01:00
|
|
|
|
2018-09-19 21:42:26 +02:00
|
|
|
qproperty-avatarBgColor: palette(base);
|
2018-03-22 08:16:17 +01:00
|
|
|
qproperty-avatarFgColor: palette(text);
|
|
|
|
|
2018-09-19 21:42:26 +02:00
|
|
|
qproperty-bubbleBgColor: palette(base);
|
2018-03-22 08:16:17 +01:00
|
|
|
qproperty-bubbleFgColor: palette(text);
|
2017-11-16 15:33:52 +01:00
|
|
|
}
|
|
|
|
|
2020-02-20 20:51:07 +01:00
|
|
|
CommunitiesList,
|
|
|
|
CommunitiesList > * {
|
|
|
|
border-style: none;
|
|
|
|
}
|
|
|
|
|
2018-01-09 14:07:32 +01:00
|
|
|
CommunitiesListItem {
|
|
|
|
qproperty-highlightedBackgroundColor: palette(highlight);
|
2019-07-25 11:40:18 +02:00
|
|
|
qproperty-hoverBackgroundColor: palette(light);
|
2018-01-09 14:07:32 +01:00
|
|
|
qproperty-backgroundColor: palette(window);
|
2018-04-28 14:27:12 +02:00
|
|
|
|
2018-09-19 21:42:26 +02:00
|
|
|
qproperty-avatarBgColor: palette(base);
|
2018-04-28 14:27:12 +02:00
|
|
|
qproperty-avatarFgColor: palette(text);
|
2018-01-09 14:07:32 +01:00
|
|
|
}
|
|
|
|
|
2017-11-16 15:33:52 +01:00
|
|
|
LoadingIndicator {
|
2017-11-25 14:14:37 +01:00
|
|
|
qproperty-color: palette(highlight);
|
2017-11-16 15:33:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ChatPageLoadSpinner {
|
2017-11-25 14:14:37 +01:00
|
|
|
qproperty-color: palette(light);
|
2017-11-16 15:33:52 +01:00
|
|
|
}
|
|
|
|
|
2019-07-25 11:40:18 +02:00
|
|
|
emoji--Panel,
|
|
|
|
emoji--Panel > * {
|
|
|
|
background-color: palette(base);
|
|
|
|
color: palette(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
emoji--Category {
|
|
|
|
qproperty-hoverBackgroundColor: palette(highlight);
|
|
|
|
}
|
|
|
|
|
|
|
|
emoji--Category,
|
|
|
|
emoji--Category > * {
|
|
|
|
background-color: palette(window);
|
|
|
|
color: palette(text);
|
|
|
|
}
|
|
|
|
|
2017-12-11 12:45:37 +01:00
|
|
|
FloatingButton {
|
2018-09-19 21:42:26 +02:00
|
|
|
qproperty-backgroundColor: palette(base);
|
2017-12-11 12:45:37 +01:00
|
|
|
qproperty-foregroundColor: palette(text);
|
|
|
|
}
|
|
|
|
|
2018-07-25 22:07:56 +02:00
|
|
|
SnackBar {
|
|
|
|
qproperty-textColor: palette(text);
|
|
|
|
qproperty-bgColor: palette(base);
|
|
|
|
}
|
2018-09-19 21:42:26 +02:00
|
|
|
|
|
|
|
MemberItem {
|
|
|
|
background-color: palette(window);
|
|
|
|
}
|
|
|
|
|
|
|
|
Toggle {
|
|
|
|
qproperty-activeColor: palette(highlight);
|
|
|
|
qproperty-disabledColor: palette(dark);
|
|
|
|
qproperty-inactiveColor: palette(mid);
|
|
|
|
qproperty-trackColor: palette(base);
|
|
|
|
}
|