1/*--------------------------------------------
2Tool Button Black CSS
3--------------------------------------------*/
4QToolButton {
5    color: rgba(255, 255, 255, 50%);
6    background: #008ac8;
7    border: 0px solid transparent;
8    border-radius: 0px;
9    padding: 6px 20px 6px 6px;
10    text-align: right;
11}
12QToolButton:pressed, QToolButton:hover:pressed, QToolButton:checked {
13    color: rgba(255, 255, 255, 90%);
14    background: #008ac8;
15    background-image: url(":/styles/theme1/app-icons/toolbutton_right_arrow");
16    background-position: center right;
17    background-repeat: no-repeat;
18}
19QToolButton:hover:!checked {
20    color: rgba(255, 255, 255, 70%);
21    background: #008ac8;
22}
23QToolButton:disabled {
24    color: rgba(255, 255, 255, 10%);
25    background: rgba(0, 138, 200, 40%);
26}
27