1#search, QToolButton {
2  color: white;
3  font-weight: bold;
4  font-size: 7.5pt;
5}
6
7#search:disabled {
8  color: rgba(255, 255, 255, 75%);
9}
10
11#search {
12  border: 1px groove rgb(100, 100, 100);
13  border-radius: 4px 4px;
14  background-color: rgba(0, 0, 0, 20%);
15}
16
17QToolButton {
18  font-weight: normal;
19  font-weight: bold;
20  color: rgba(255, 255, 255, 50%);
21  border-radius: 3px;
22}
23
24QToolButton:hover {
25  background-color: rgb(64, 64, 64);
26  border: 1px solid rgba(255, 255, 255, 20%);
27}
28
29QToolButton:pressed {
30  background-color: rgb(64, 64, 64);
31  border: 1px solid rgba(255, 255, 255, 50%);
32}
33