1QPushButton
2{
3    background-color: transparent;
4    background-repeat: none;
5    border: none;
6    width: 24px;
7    height: 24px;
8}
9
10QRadioButton::indicator
11{
12     width: 10px;
13     height: 10px;
14}
15
16QRadioButton::indicator:unchecked
17{
18     image: url(@getImagePath(emoticonWidget/dot_page.svg));
19}
20
21QRadioButton::indicator:unchecked:hover
22{
23     image: url(@getImagePath(emoticonWidget/dot_page_hover.svg));
24}
25
26QRadioButton::indicator:unchecked:pressed
27{
28     image: url(@getImagePath(emoticonWidget/dot_page_hover.svg));
29}
30
31QRadioButton::indicator:checked
32{
33     image: url(@getImagePath(emoticonWidget/dot_page_current.svg));
34}
35
36QMenu
37{
38     background-color: @statusActive; /* sets background of the menu */
39     border: 0px solid;
40}
41