1QFrame
2{
3    background-color: rgba(50, 50, 50, 0.6);
4    border-radius: 20px;
5}
6
7QAbstractButton
8{
9    background-color: transparent;
10    background-repeat: none;
11    background-position: center;
12    border: none;
13    border-radius: 5px;
14}
15
16QAbstractButton:hover
17{
18    background-color: rgba(255,255,255, 0.2);
19}
20
21QAbstractButton:pressed
22{
23    background-color: rgba(0,0,0, 0.2);
24}
25
26QAbstractButton#volButtonFullScreen
27{
28    background-image: url("@getImagePath(chatForm/volButton.svg)");
29    width: 11px;
30    height: 9px;
31    padding: 12px;
32}
33
34QAbstractButton#micButtonFullScreen
35{
36    background-image: url("@getImagePath(chatForm/micButton.svg)");
37    width: 11px;
38    height: 9px;
39    padding: 12px;
40}
41
42QAbstractButton#videoButtonFullScreen
43{
44    background-image: url("@getImagePath(chatForm/videoButtonRed.svg)");
45    width: 37px;
46    height: 33px;
47}
48
49QAbstractButton#videoPreviewButton
50{
51    background-image: url("@getImagePath(chatForm/videoPreview.svg)");
52    width: 13px;
53    height: 13px;
54    padding: 10px;
55}
56
57QAbstractButton#exitFullScreenButton
58{
59    background-image: url("@getImagePath(chatForm/exitFullScreenButton.svg)");
60    width: 30px;
61    height: 30px;
62    padding: 1px;
63}
64
65QAbstractButton#volButtonFullScreen[state="red"]
66{
67    background-image: url("@getImagePath(chatForm/volButtonRed.svg)");
68}
69
70QAbstractButton#micButtonFullScreen[state="red"]
71{
72    background-image: url("@getImagePath(chatForm/micButtonRed.svg)");
73}
74
75QAbstractButton#videoPreviewButton[state="red"]
76{
77    background-image: url("@getImagePath(chatForm/videoPreviewRed.svg)");
78}
79