Index: sources/gui/qml/components/ReviewContainer.qml =================================================================== diff -u -rabb959f145f8af64bab3b8f24314bf0ba8f3bb0e -rcbe04ec89eb7261a6950871dc89a3eb7f18ce9fc --- sources/gui/qml/components/ReviewContainer.qml (.../ReviewContainer.qml) (revision abb959f145f8af64bab3b8f24314bf0ba8f3bb0e) +++ sources/gui/qml/components/ReviewContainer.qml (.../ReviewContainer.qml) (revision cbe04ec89eb7261a6950871dc89a3eb7f18ce9fc) @@ -17,6 +17,8 @@ property int cellHeight : Variables.createRxLabelUnitContainerHeight property int valuePixelSize : Fonts.fontPixelValueControl + property color headerColor : Colors.panelBackgroundColor + property int delegateFontWeight : Font.Normal height : _column.implicitHeight + 10 width : parent.width @@ -33,12 +35,12 @@ Rectangle { id: _header width : _root.width height : _root.cellHeight - color : Colors.panelBackgroundColor + color : _root.headerColor radius : _root.radius border { - width: 1 - color: Colors.panelBorderColor + width: _root.border.width + color: _root.border.color } Text { id: _title @@ -61,12 +63,13 @@ width : delegate.implicitWidth delegate : LabelUnitContainer { id: _delegate - text : modelData - color : Colors.transparent - width : parent.width - height : _root.cellHeight - unitText : _root.units[index] - border.width: 0 + text : modelData + color : Colors.transparent + width : parent.width + height : _root.cellHeight + unitText : _root.units[index] + border.width : 0 + titleFontWeight : _root.delegateFontWeight contentItem : Item { id: _contentItem Row { id: _row