Browse Source

fix(ui): fixed typos of pseudo-states in stylesheets

Some pseudo-states were wrongly addressed with `::` instead of `:` in
stylesheets.
reviewable/pr4356/r1
ezavod 9 years ago
parent
commit
f35103e547
No known key found for this signature in database
GPG Key ID: 5DFDD9A0D8E5A9B6
  1. 4
      ui/emoticonWidget/emoticonWidget.css
  2. 2
      ui/loginScreen/loginScreen.css

4
ui/emoticonWidget/emoticonWidget.css

@ -13,7 +13,7 @@ QRadioButton::indicator @@ -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 @@ -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);
}

2
ui/loginScreen/loginScreen.css

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

Loading…
Cancel
Save