Source

Target

Commits (2)
Showing with 8 additions and 8 deletions
......@@ -142,7 +142,7 @@ T.ComboBox {
}
background: Rectangle {
radius: 3
radius: 2
color: control.Material.dialogColor
layer.enabled: control.enabled
......
......@@ -53,7 +53,7 @@ T.Frame {
contentItem: Item { }
background: Rectangle {
radius: 3
radius: 2
color: control.Material.elevation > 0 ? control.Material.backgroundColor : "transparent"
border.color: control.Material.frameColor
......
......@@ -73,7 +73,7 @@ T.GroupBox {
width: parent.width
height: parent.height - control.topPadding + control.padding
radius: 3
radius: 2
color: control.Material.elevation > 0 ? control.Material.backgroundColor : "transparent"
border.color: control.Material.frameColor
......
......@@ -54,7 +54,7 @@ T.Pane {
background: Rectangle {
color: control.Material.backgroundColor
radius: control.Material.elevation > 0 ? 3 : 0
radius: control.Material.elevation > 0 ? 2 : 0
layer.enabled: control.enabled && control.Material.elevation > 0
layer.effect: ElevationEffect {
......
......@@ -69,7 +69,7 @@ T.Popup {
contentItem: Item { }
background: Rectangle {
radius: 3
radius: 2
color: control.Material.dialogColor
layer.enabled: control.Material.elevation > 0
......
......@@ -111,7 +111,7 @@ T.SpinBox {
height: parent.height
width: height
padding: control.spacing
radius: 3
radius: 2
color: Qt.tint(Qt.tint(control.Material.buttonColor,
control.activeFocus ? control.Material.buttonHoverColor : "transparent"),
control.up.pressed ? control.Material.buttonPressColor: "transparent")
......@@ -139,7 +139,7 @@ T.SpinBox {
height: parent.height
width: height
padding: control.spacing
radius: 3
radius: 2
color: Qt.tint(Qt.tint(control.Material.buttonColor,
control.activeFocus ? control.Material.buttonHoverColor : "transparent"),
control.down.pressed ? control.Material.buttonPressColor : "transparent")
......
......@@ -64,7 +64,7 @@ T.Dial {
radius: width / 2
color: !control.enabled ? control.Universal.baseLowColor :
control.down ? control.Universal.baseMediumColor : control.Universal.baseMediumHighColor
control.pressed ? control.Universal.baseMediumColor : control.Universal.baseMediumHighColor
transform: [
Translate {
......