aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qmldesigner/propertyeditor/Qt/layoutWidget.css
blob: ce857900b8766020c551f4bb60927a191c4a8f2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
QPushButton::checked
 {
     border-radius: 4px;
     border: 4px solid #4f4f41;
     border-image: none;
     background-color: #9a9b9e;
 } 

 QPushButton:pressed 
 {
     border: 1px solid #5f5f51;
     background-color: #dadbde;
     background: none;
     color: white;
 }

 QPushButton:flat {
     border: 1px solid #5f5f51;
     background-color: #eadbde;
     color: white;
 }

 QPushButton:default {
     border-color: 1px solid black;
     background-color: #eadbde;
     color: white;
 }


QFrame{
     border: 2px solid black;
     border-radius: 4px;
     padding: 2px;
     background: #aaabae;
 }