Nicer padding

This commit is contained in:
Loren Burkholder 2021-11-13 14:38:22 -05:00
parent f095352a2c
commit e09af0b101
3 changed files with 9 additions and 6 deletions

View File

@ -98,14 +98,13 @@ ApplicationWindow {
Layout.fillWidth: true
Layout.fillHeight: true
model: invitees
spacing: Nheko.paddingMedium
delegate: ItemDelegate {
id: del
hoverEnabled: true
width: ListView.view.width
height: layout.implicitHeight
height: layout.implicitHeight + Nheko.paddingSmall * 2
onClicked: TimelineManager.openGlobalUserProfile(model.mxid)
background: Rectangle {
color: del.hovered ? Nheko.colors.dark : inviteDialogRoot.color
@ -115,6 +114,8 @@ ApplicationWindow {
id: layout
spacing: Nheko.paddingMedium
anchors.verticalCenter: parent.verticalCenter
x: parent.x + Nheko.paddingSmall
Avatar {
width: Nheko.avatarSize

View File

@ -54,7 +54,6 @@ ApplicationWindow {
id: readReceiptsList
clip: true
spacing: Nheko.paddingMedium
boundsBehavior: Flickable.StopAtBounds
model: readReceipts
@ -64,7 +63,7 @@ ApplicationWindow {
onClicked: room.openUserProfile(model.mxid)
padding: Nheko.paddingMedium
width: ListView.view.width
height: receiptLayout.implicitHeight
height: receiptLayout.implicitHeight + Nheko.paddingSmall * 2
hoverEnabled: true
ToolTip.visible: hovered
ToolTip.text: model.mxid
@ -76,6 +75,8 @@ ApplicationWindow {
id: receiptLayout
spacing: Nheko.paddingMedium
anchors.verticalCenter: parent.verticalCenter
x: parent.x + Nheko.paddingSmall
Avatar {
width: Nheko.avatarSize

View File

@ -75,7 +75,6 @@ ApplicationWindow {
id: memberList
clip: true
spacing: Nheko.paddingMedium
boundsBehavior: Flickable.StopAtBounds
model: members
@ -91,7 +90,7 @@ ApplicationWindow {
onClicked: Rooms.currentRoom.openUserProfile(model.mxid)
padding: Nheko.paddingMedium
width: ListView.view.width
height: memberLayout.implicitHeight
height: memberLayout.implicitHeight + Nheko.paddingSmall * 2
hoverEnabled: true
background: Rectangle {
color: del.hovered ? Nheko.colors.dark : roomMembersRoot.color
@ -101,6 +100,8 @@ ApplicationWindow {
id: memberLayout
spacing: Nheko.paddingMedium
anchors.verticalCenter: parent.verticalCenter
x: parent.x + Nheko.paddingSmall
Avatar {
id: avatar