Launcher styling tweaks
This commit is contained in:
parent
ea5608b769
commit
6535846732
4 changed files with 9 additions and 3 deletions
|
@ -76,7 +76,7 @@ Item {
|
||||||
id: choicesRepeater
|
id: choicesRepeater
|
||||||
model: root.model
|
model: root.model
|
||||||
delegate:
|
delegate:
|
||||||
Text {
|
StyledText {
|
||||||
id: choiceText
|
id: choiceText
|
||||||
|
|
||||||
// Taken from TableViewItemDelegateLoader.qml to follow QML role conventions
|
// Taken from TableViewItemDelegateLoader.qml to follow QML role conventions
|
||||||
|
|
|
@ -52,6 +52,7 @@ FocusScope
|
||||||
|
|
||||||
color: Style.baseTextColor
|
color: Style.baseTextColor
|
||||||
focus: true
|
focus: true
|
||||||
|
font.pixelSize: Style.baseFontPixelSize
|
||||||
|
|
||||||
onTextChanged: {
|
onTextChanged: {
|
||||||
if (root.autoSubmit) {
|
if (root.autoSubmit) {
|
||||||
|
|
|
@ -79,12 +79,15 @@ SettingControl {
|
||||||
font.family: "Courier"
|
font.family: "Courier"
|
||||||
selectByMouse: true
|
selectByMouse: true
|
||||||
wrapMode: TextEdit.WordWrap
|
wrapMode: TextEdit.WordWrap
|
||||||
|
font.pixelSize: Style.baseFontPixelSize
|
||||||
|
color: Style.baseTextColor
|
||||||
|
|
||||||
Text {
|
StyledText {
|
||||||
id: placeholder
|
id: placeholder
|
||||||
visible: (edit.text.length == 0) && !edit.activeFocus
|
visible: (edit.text.length == 0) && !edit.activeFocus
|
||||||
text: root.placeholder
|
text: root.placeholder
|
||||||
color: Style.baseTextColor
|
font.family: "Courier"
|
||||||
|
color: Style.disabledTextColor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,6 +26,8 @@ Item {
|
||||||
readOnly: true
|
readOnly: true
|
||||||
|
|
||||||
wrapMode: TextEdit.Wrap
|
wrapMode: TextEdit.Wrap
|
||||||
|
font.pixelSize: Style.baseFontPixelSize
|
||||||
|
color: Style.baseTextColor
|
||||||
|
|
||||||
text: _config.htmlForCommandLine();
|
text: _config.htmlForCommandLine();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue