source: trunk/demos/embedded/styledemo/files/blue.qss@ 561

Last change on this file since 561 was 561, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.6.1 sources.

  • Property svn:eol-style set to native
File size: 697 bytes
Line 
1*
2{
3 color: beige;
4}
5
6QLabel, QAbstractButton
7{
8 font: bold;
9 color: yellow;
10}
11
12QFrame
13{
14 background-color: rgba(96,96,255,60%);
15 border-color: rgb(32,32,196);
16 border-width: 3px;
17 border-style: solid;
18 border-radius: 5;
19 padding: 3px;
20}
21
22QAbstractButton
23{
24 background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
25 stop:0 lightblue, stop:0.5 darkblue);
26 border-width: 3px;
27 border-color: darkblue;
28 border-style: solid;
29 border-radius: 5;
30 padding: 3px;
31}
32
33QAbstractButton:pressed
34{
35 background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
36 stop:0.5 darkblue, stop:1 lightblue);
37 border-color: beige;
38}
Note: See TracBrowser for help on using the repository browser.