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