Index: sources/gui/qml/components/RangeSlider.qml =================================================================== diff -u -r74fa9686a916c53d1549fa3733d200edb9df9d3b -r874a982c1983fea20307a031e09f90a91ca34d75 --- sources/gui/qml/components/RangeSlider.qml (.../RangeSlider.qml) (revision 74fa9686a916c53d1549fa3733d200edb9df9d3b) +++ sources/gui/qml/components/RangeSlider.qml (.../RangeSlider.qml) (revision 874a982c1983fea20307a031e09f90a91ca34d75) @@ -74,7 +74,8 @@ property bool isRoundedEnds : true property bool hasBorder : true - property color borderColor : Colors.borderDisableButton + property color disabledBorderColor : Colors.borderDisableButton + property color enabledBorderColor : Colors.borderButton onHasAdjustChanged : { setAdjusted() @@ -97,7 +98,7 @@ radius : _root.isRoundedEnds ? (height/2) : Variables.rangeRectRadius border.width: _root.hasBorder ? Variables.rangeRectBorderWidth : 0 - border.color: (_root.minAdjusted && _root.maxAdjusted) ? Colors.borderButton : Colors.borderDisableButton + border.color: (_root.minAdjusted && _root.maxAdjusted) ? enabledBorderColor : disabledBorderColor minimum : 0 maximum : 0 Index: sources/gui/qml/compounds/PressureRangeSlider.qml =================================================================== diff -u -r74fa9686a916c53d1549fa3733d200edb9df9d3b -r874a982c1983fea20307a031e09f90a91ca34d75 --- sources/gui/qml/compounds/PressureRangeSlider.qml (.../PressureRangeSlider.qml) (revision 74fa9686a916c53d1549fa3733d200edb9df9d3b) +++ sources/gui/qml/compounds/PressureRangeSlider.qml (.../PressureRangeSlider.qml) (revision 874a982c1983fea20307a031e09f90a91ca34d75) @@ -161,6 +161,7 @@ decimal : 1 bgColor : Colors.pressuresOutOfRangeBg + enabledBorderColor: Colors.pressureBorderActive hasAdjust : true // imply that both handle need to be adjusted to mark as active Index: sources/gui/qml/globals/Colors.qml =================================================================== diff -u -r3bf1c89cba7851e7658d4a7f2e7054ee6a4ff000 -r874a982c1983fea20307a031e09f90a91ca34d75 --- sources/gui/qml/globals/Colors.qml (.../Colors.qml) (revision 3bf1c89cba7851e7658d4a7f2e7054ee6a4ff000) +++ sources/gui/qml/globals/Colors.qml (.../Colors.qml) (revision 874a982c1983fea20307a031e09f90a91ca34d75) @@ -83,6 +83,7 @@ readonly property color pressuresArterialBar : "#31bcdb" readonly property color pressuresVenousBar : "#c568ed" readonly property color pressuresOutOfRangeBg : red + readonly property color pressureBorderActive : "#cccccc" // this is the active border around the red readonly property color fluidText : white readonly property color fluidValue : white Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentPressuresLimits.qml =================================================================== diff -u -r74fa9686a916c53d1549fa3733d200edb9df9d3b -r874a982c1983fea20307a031e09f90a91ca34d75 --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentPressuresLimits.qml (.../TreatmentAdjustmentPressuresLimits.qml) (revision 74fa9686a916c53d1549fa3733d200edb9df9d3b) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentPressuresLimits.qml (.../TreatmentAdjustmentPressuresLimits.qml) (revision 874a982c1983fea20307a031e09f90a91ca34d75) @@ -62,7 +62,7 @@ step : arterialPressureStep ticksVisible : true anchors.top:parent.top - anchors.topMargin: 200 + anchors.topMargin: 125 anchors.left : parent.left }