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