mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
fix(ui): fixed typos of pseudo-states in stylesheets
Some pseudo-states were wrongly addressed with `::` instead of `:` in stylesheets.
This commit is contained in:
parent
77aa2e9252
commit
f35103e547
|
@ -13,7 +13,7 @@ QRadioButton::indicator
|
||||||
height: 10px;
|
height: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
QRadioButton::indicator::unchecked
|
QRadioButton::indicator:unchecked
|
||||||
{
|
{
|
||||||
image: url(:/ui/emoticonWidget/dot_page.svg);
|
image: url(:/ui/emoticonWidget/dot_page.svg);
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@ QRadioButton::indicator:unchecked:pressed
|
||||||
image: url(:/ui/emoticonWidget/dot_page_hover.svg);
|
image: url(:/ui/emoticonWidget/dot_page_hover.svg);
|
||||||
}
|
}
|
||||||
|
|
||||||
QRadioButton::indicator::checked
|
QRadioButton::indicator:checked
|
||||||
{
|
{
|
||||||
image: url(:/ui/emoticonWidget/dot_page_current.svg);
|
image: url(:/ui/emoticonWidget/dot_page_current.svg);
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,6 +53,6 @@ QLabel, QCheckBox, QProgressBar {
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
QCheckBox::disabled {
|
QCheckBox:disabled {
|
||||||
color: gray;
|
color: gray;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user