re-do squares

square-messages
expectocode 2019-05-19 19:24:36 +01:00
parent dfdad76d97
commit d78dc69247
3 changed files with 8 additions and 60 deletions

View File

@ -96,60 +96,8 @@ RowLayout {
} }
background: Rectangle { background: Rectangle {
color: MPalette.background color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent
radius: 18 radius: 2
Rectangle {
anchors.top: parent.top
anchors.left: parent.left
width: parent.width / 2
height: parent.height / 2
visible: true
color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent
radius: 5
}
Rectangle {
anchors.top: parent.top
anchors.right: parent.right
width: parent.width / 2
height: parent.height / 2
visible: true
color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent
radius: 5
}
Rectangle {
anchors.bottom: parent.bottom
anchors.left: parent.left
width: parent.width / 2
height: parent.height / 2
visible: true
color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent
radius: 5
}
Rectangle {
anchors.bottom: parent.bottom
anchors.right: parent.right
width: parent.width / 2
height: parent.height / 2
visible: true
color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent
radius: 5
}
AutoMouseArea { AutoMouseArea {
anchors.fill: parent anchors.fill: parent

View File

@ -91,7 +91,7 @@ RowLayout {
maskSource: Rectangle { maskSource: Rectangle {
width: img.width width: img.width
height: img.height height: img.height
radius: 5 radius: 2
} }
} }

View File

@ -131,11 +131,11 @@ ColumnLayout {
Control { Control {
Layout.fillWidth: true Layout.fillWidth: true
Layout.topMargin: 8 Layout.topMargin: 4
Layout.leftMargin: 8 Layout.leftMargin: 4
Layout.rightMargin: 8 Layout.rightMargin: 4
padding: 4 padding: 8
rightPadding: 12 rightPadding: 12
visible: replyVisible visible: replyVisible
@ -171,7 +171,7 @@ ColumnLayout {
background: Rectangle { background: Rectangle {
color: sentByMe ? MPalette.accent : MPalette.background color: sentByMe ? MPalette.accent : MPalette.background
radius: 18 radius: 0
AutoMouseArea { AutoMouseArea {
anchors.fill: parent anchors.fill: parent