~wesley/qashflow/dev

« back to all changes in this revision

Viewing changes to src/style.qss

  • Committer: Wesley Stessens
  • Date: 2007-06-19 10:35:29 UTC
  • Revision ID: wesley@ubuntu.com-20070619103529-v7q2oz2kwdb7onq0
InitialĀ upload

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
QMenuBar {
 
2
  background-color: #09479c;
 
3
  color: white;
 
4
  margin: 0px;
 
5
  spacing: 0px;
 
6
  padding: 0px;
 
7
}
 
8
 
 
9
QMenuBar:hover {
 
10
  background-color: #5179af;
 
11
  color: white;
 
12
  margin: 0px;
 
13
  spacing: 0px;
 
14
  padding: 0px;
 
15
}
 
16
 
 
17
QFrame {
 
18
  background-color: #f7faff;
 
19
  border-width: 2px;
 
20
  border-color: #cfdcff;
 
21
  border-style: solid;
 
22
}
 
23
 
 
24
QFrame:hover {
 
25
  background-color: #e6edf8
 
26
}
 
27
 
 
28
QPushButton {
 
29
  background: #f7faff url(img/tbg.png);
 
30
  background-repeat: repeat-x;
 
31
  border-width: 2px;
 
32
  border-color: #cfdcff;
 
33
  border-style: solid;
 
34
  color: #000000;
 
35
  font: bold 11px;
 
36
  padding: 3px;
 
37
  min-width: 6em;
 
38
}
 
39
 
 
40
QPushButton::disabled {
 
41
  background-color: #f7faff;
 
42
  border-color: #dddddd;
 
43
  border-width: 2px;
 
44
  border-style: solid;
 
45
  color: #cccccc;
 
46
}
 
47
 
 
48
QPushButton::enabled:hover {
 
49
  background: #95add6 url(img/2bg.png);
 
50
  color: white;
 
51
  border-color: #b8c7f0;
 
52
}
 
53
 
 
54
QPushButton::enabled:pressed {
 
55
  background: #4e6487;
 
56
  color: white;
 
57
  border-color: #b8c7f0;
 
58
}
 
59
 
 
60
QLineEdit {
 
61
  background: white;
 
62
  background-repeat: repeat-x;
 
63
  border-width: 2px;
 
64
  border-color: #cfdcff;
 
65
  border-style: solid;
 
66
  color: #000000;
 
67
  font: bold 11px;
 
68
  padding: 3px;
 
69
  min-width: 6em;
 
70
}
 
71
 
 
72
QLineEdit::enabled:hover {
 
73
  background: #f7faff;
 
74
  border-color: #b8c7f0;
 
75
}
 
76
 
 
77
QComboBox {
 
78
  background: white;
 
79
  border-width: 2px;
 
80
  border-color: #cfdcff;
 
81
  border-style: solid;
 
82
  color: #000000;
 
83
  font: bold 11px;
 
84
  padding: 3px;
 
85
  min-width: 6em;
 
86
}
 
87
 
 
88
QComboBox::drop-down {
 
89
  background: none;
 
90
  border-style: none;
 
91
  color: #000000;
 
92
  font: bold 11px;
 
93
  padding: 3px;
 
94
}
 
95
 
 
96
QComboBox::down-arrow {
 
97
  image: url(img/find-next.png);
 
98
}
 
99
 
 
100
QComboBox::enabled:hover {
 
101
  background: #f7faff;
 
102
  border-color: #b8c7f0;
 
103
}
 
104
 
 
105
QFileDialog {
 
106
  background: white;
 
107
}