~mir-team/mir/mirqt

« back to all changes in this revision

Viewing changes to qml/mirqt/custom-theme.qmltheme

  • Committer: Robert Carr
  • Date: 2013-04-30 21:52:58 UTC
  • Revision ID: robert.carr@canonical.com-20130430215258-d2djab9phr23fba5
Add qml

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 
 
3
    The theme redefines the .Button and .button colors as well as
 
4
    defines delegate for .frame
 
5
*/
 
6
 
 
7
@import url("system:Ambiance/qmltheme/default.qmltheme");
 
8
 
 
9
.button {
 
10
    color: item.hovered ? "tan" : "lightgray";
 
11
}
 
12
 
 
13
.custom-button {
 
14
    color: item.hovered ? "#cccccc" : "#a3e5e8";
 
15
}
 
16
 
 
17
.button#custom-name {
 
18
    color: item.hovered ? "brown" : "tan"
 
19
}
 
20
 
 
21
.frame {
 
22
    color: "tan";
 
23
}
 
24