Add basic support for username auto-completion

fixes #40
This commit is contained in:
Konstantinos Sideris 2018-03-24 23:16:15 +02:00
parent 2054aad975
commit 553a97c8bb
12 changed files with 412 additions and 0 deletions

View file

@ -22,6 +22,11 @@ QuickSwitcher {
background-color: #202228;
}
PopupItem {
background-color: #202228;
qproperty-hoverColor: rgba(45, 49, 57, 120);
}
RoomList,
RoomList > * {
background-color: #2d3139;

View file

@ -22,6 +22,11 @@ QuickSwitcher {
background-color: white;
}
PopupItem {
background-color: white;
qproperty-hoverColor: rgba(192, 193, 195, 120);
}
RoomList,
RoomList > * {
background-color: white;

View file

@ -25,6 +25,11 @@ QuickSwitcher {
background-color: palette(window);
}
PopupItem {
background-color: palette(window);
qproperty-hoverColor: rgba(192, 193, 195, 120);
}
FlatButton {
qproperty-foregroundColor: palette(text);
}