Skip to content
Snippets Groups Projects
Commit 1efbc083 authored by Mikhail Svechnikov's avatar Mikhail Svechnikov
Browse files

select only text input widgets

parent 29ad2f5d
No related branches found
No related tags found
1 merge request!2140Highlight only text input widgets on focus
Pipeline #120250 passed
......@@ -10,12 +10,6 @@
background-color: palette(base);
}
/* Highlight border of focused controls with system highlight color. */
::focus
{
border: 2px solid palette(highlight);
}
/* ------------------------------------------------------------------------------- */
QWidget#GroupBoxToggler
{
......@@ -509,6 +503,16 @@ QComboBox
border-color: rgba(100, 100, 100, 25%);
}
/* Highlight border of focused controls with system highlight color. */
QLineEdit::focus,
QTextEdit::focus,
QSpinBox::focus,
QDoubleSpinBox::focus,
ScientificSpinBox::focus
{
border: 2px solid palette(highlight);
}
/* ------------------------------------------------------------------------------- */
QComboBox::drop-down
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment