~elementary-os/egtk/deb-packaging-luna

« back to all changes in this revision

Viewing changes to gtk-3.0/scale.css

  • Committer: Sergey "Shnatsel" Davidoff
  • Date: 2012-04-06 09:15:16 UTC
  • Revision ID: shnatsel@gmail.com-20120406091516-ojmhcq7wiy1fbqbh
nuked everything but packaging
bumped version to 3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/************
2
 
 * GtkScale *
3
 
 ************/
4
 
GtkScale {
5
 
    border-width:               1;
6
 
    -GtkScale-slider-length:     16;
7
 
    -GtkRange-slider-width:     14;
8
 
    -GtkRange-trough-border:    -3;
9
 
}
10
 
 
11
 
GtkScale.slider {
12
 
    border-radius:      0;
13
 
 
14
 
    -unico-outer-stroke-gradient: -gtk-gradient (linear,
15
 
                left top, left bottom,
16
 
                from (alpha (#000, 0.00)),
17
 
                to (alpha (#000, 0.10)));
18
 
}
19
 
 
20
 
GtkScale.slider:insensitive {
21
 
}
22
 
 
23
 
GtkScale.scale-has-marks-below.slider.horizontal {
24
 
}
25
 
 
26
 
GtkScale.scale-has-marks-below.slider.vertical {
27
 
}
28
 
 
29
 
GtkScale.scale-has-marks-above.slider.horizontal {
30
 
}
31
 
 
32
 
GtkScale.scale-has-marks-above.slider.vertical {
33
 
}
34
 
 
35
 
GtkScale.trough {
36
 
    border-radius:  10;
37
 
 
38
 
    background-image: -gtk-gradient (linear,
39
 
                                     left top,
40
 
                                     left bottom,
41
 
                                     from (shade (@bg_color, 0.75)),
42
 
                                     to (shade (@bg_color, 0.90)));
43
 
 
44
 
    -unico-border-gradient: -gtk-gradient (linear,
45
 
                     left top, left bottom,
46
 
                     from (shade (@bg_color, 0.46)),
47
 
                     to (shade (@bg_color, 0.58)));
48
 
 
49
 
    -unico-inner-stroke-gradient: -gtk-gradient (linear,
50
 
                    left top, left bottom,
51
 
                    from (alpha (#000, 0.12)),
52
 
                    to (alpha (#000, 0.06)));
53
 
 
54
 
    -unico-outer-stroke-gradient: -gtk-gradient (linear,
55
 
                     left top, left bottom,
56
 
                     from (alpha (#fff, 0.00)),
57
 
                     color-stop (0.50, alpha (#fff, 0.00)),
58
 
                     to (alpha (#fff, 0.40)));
59
 
}
60
 
 
61
 
GtkScale.trough:insensitive {
62
 
    background-color: shade (@theme_bg_color, 1.20);
63
 
    border-color: shade (@inactive_frame_color, 0.845);
64
 
}
65
 
 
66
 
GtkScale.trough.horizontal {
67
 
}
68
 
 
69
 
GtkScale.trough.vertical {
70
 
    background-image: -gtk-gradient (linear,
71
 
                                     left top,
72
 
                                     right top,
73
 
                                     from (shade (@bg_color, 0.75)),
74
 
                                     to (shade (@bg_color, 0.90)));
75
 
 
76
 
    -unico-border-gradient: -gtk-gradient (linear,
77
 
                     left top,
78
 
                     right top,
79
 
                     from (shade (@bg_color, 0.46)),
80
 
                     to (shade (@bg_color, 0.58)));
81
 
 
82
 
    -unico-inner-stroke-gradient: -gtk-gradient (linear,
83
 
                    left top,
84
 
                    right top,
85
 
                    from (alpha (#000, 0.12)),
86
 
                    to (alpha (#000, 0.06)));
87
 
 
88
 
    -unico-outer-stroke-gradient: -gtk-gradient (linear,
89
 
                     left top,
90
 
                     right top,
91
 
                     from (alpha (#fff, 0.00)),
92
 
                     color-stop (0.50, alpha (#fff, 0.00)),
93
 
                     to (alpha (#fff, 0.40)));
94
 
}
95
 
 
96
 
GtkScale.progressbar {
97
 
}
98
 
 
99
 
GtkScale.mark {
100
 
    background-color: shade (@bg_color, 0.56);
101
 
}
102
 
 
103
 
GtkFrame,
104
 
GtkCalendar {
105
 
    padding: 2;
106
 
}
107
 
 
108
 
.frame {
109
 
    color: lighter (@theme_fg_color);
110
 
    border-style: none;
111
 
    border-width: 0;
112
 
}
113