Skip to content

Commit

Permalink
Update channel style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy-JL committed Oct 16, 2024
1 parent f113ef9 commit 0d22c8a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions application/components/ChannelDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ItemDelegate {

TextLabel {
text: control.text
font.capitalization: Font.Capitalize
color: control.down ? Theme.color.darkorange1 : control.hovered ? Theme.color.lightorange1 : Theme.color.lightorange2
Layout.fillWidth: true
}
Expand Down
2 changes: 1 addition & 1 deletion application/components/DeveloperActions.qml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import QFlipper 1.0
Item {
id: container

implicitWidth: 318
implicitWidth: 360
implicitHeight: control.implicitHeight + verticalPadding * 2

readonly property int horizontalPadding: Math.floor((container.implicitWidth - control.implicitWidth) / 2)
Expand Down
2 changes: 1 addition & 1 deletion application/components/DeviceActions.qml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Item {
property alias reinstallAction: reinstallAction
property alias selfUpdateAction: selfUpdateAction

implicitWidth: 318
implicitWidth: 360
implicitHeight: control.implicitHeight + verticalPadding * 2

readonly property int horizontalPadding: Math.floor((container.implicitWidth - control.implicitWidth) / 2)
Expand Down
2 changes: 1 addition & 1 deletion application/components/DeviceInfo.qml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Theme 1.0
Item {
id: container

implicitWidth: 318
implicitWidth: 360
implicitHeight: control.implicitHeight + verticalPadding * 2

readonly property int horizontalPadding: Math.floor((container.implicitWidth - control.implicitWidth) / 2)
Expand Down
2 changes: 1 addition & 1 deletion application/styles/DefaultAmber/ComboBox.qml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ T.ComboBox {

font.pixelSize: 32
font.family: "HaxrCorp 4089"
font.capitalization: Font.AllUppercase
font.capitalization: Font.Capitalize

implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
implicitContentWidth + leftPadding + rightPadding)
Expand Down

0 comments on commit 0d22c8a

Please sign in to comment.