2019-03-22 14:28:14 +11:00
|
|
|
import QtQuick 2.7
|
2019-03-26 20:52:43 +11:00
|
|
|
import "../base" as Base
|
2019-03-22 14:28:14 +11:00
|
|
|
|
2019-03-26 20:52:43 +11:00
|
|
|
Base.HLabel {
|
2019-03-22 14:28:14 +11:00
|
|
|
text: date_time.toLocaleDateString()
|
|
|
|
width: rootCol.width
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
2019-04-18 06:43:18 +10:00
|
|
|
topPadding: rootCol.isFirstMessage ? 0 : rootCol.standardSpacing
|
|
|
|
bottomPadding: rootCol.standardSpacing
|
2019-03-22 14:28:14 +11:00
|
|
|
font.pixelSize: normalSize * 1.1
|
|
|
|
color: "darkolivegreen"
|
|
|
|
}
|