1
0
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:
ezavod 2017-05-01 11:52:59 +02:00
parent 77aa2e9252
commit f35103e547
No known key found for this signature in database
GPG Key ID: 5DFDD9A0D8E5A9B6
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ QRadioButton::indicator
height: 10px;
}
QRadioButton::indicator::unchecked
QRadioButton::indicator:unchecked
{
image: url(:/ui/emoticonWidget/dot_page.svg);
}
@ -28,7 +28,7 @@ QRadioButton::indicator:unchecked:pressed
image: url(:/ui/emoticonWidget/dot_page_hover.svg);
}
QRadioButton::indicator::checked
QRadioButton::indicator:checked
{
image: url(:/ui/emoticonWidget/dot_page_current.svg);
}

View File

@ -53,6 +53,6 @@ QLabel, QCheckBox, QProgressBar {
color: black;
}
QCheckBox::disabled {
QCheckBox:disabled {
color: gray;
}