compass-jquery-mobile-plugin 0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. data/README.markdown +48 -0
  2. data/lib/compass-jquery-mobile-plugin.rb +1 -0
  3. data/stylesheets/_button.scss +118 -0
  4. data/stylesheets/_collapsible.scss +45 -0
  5. data/stylesheets/_controlgroup.scss +69 -0
  6. data/stylesheets/_core.scss +158 -0
  7. data/stylesheets/_dialog.scss +15 -0
  8. data/stylesheets/_forms.checkboxradio.scss +37 -0
  9. data/stylesheets/_forms.fieldcontain.scss +20 -0
  10. data/stylesheets/_forms.select.scss +72 -0
  11. data/stylesheets/_forms.slider.scss +104 -0
  12. data/stylesheets/_forms.textinput.scss +72 -0
  13. data/stylesheets/_grids.scss +31 -0
  14. data/stylesheets/_headerfooter.scss +33 -0
  15. data/stylesheets/_jquery-mobile.scss +39 -0
  16. data/stylesheets/_listview.scss +170 -0
  17. data/stylesheets/_navbar.scss +103 -0
  18. data/stylesheets/_theme.scss +128 -0
  19. data/stylesheets/_transitions.scss +217 -0
  20. data/stylesheets/helpers/_mixins.scss +21 -0
  21. data/stylesheets/themes/_a.scss +116 -0
  22. data/stylesheets/themes/_b.scss +115 -0
  23. data/stylesheets/themes/_c.scss +105 -0
  24. data/stylesheets/themes/_d.scss +114 -0
  25. data/stylesheets/themes/_e.scss +114 -0
  26. data/stylesheets/themes/wyke/_a.scss +106 -0
  27. data/stylesheets/themes/wyke/_b.scss +105 -0
  28. data/stylesheets/themes/wyke/_c.scss +95 -0
  29. data/stylesheets/themes/wyke/_d.scss +104 -0
  30. data/stylesheets/themes/wyke/_e.scss +104 -0
  31. data/templates/project/jquery-mobile/ajax-loader.png +0 -0
  32. data/templates/project/jquery-mobile/form-check-off.png +0 -0
  33. data/templates/project/jquery-mobile/form-check-on.png +0 -0
  34. data/templates/project/jquery-mobile/form-radio-off.png +0 -0
  35. data/templates/project/jquery-mobile/form-radio-on.png +0 -0
  36. data/templates/project/jquery-mobile/icon-search-black.png +0 -0
  37. data/templates/project/jquery-mobile/icons-18-black.png +0 -0
  38. data/templates/project/jquery-mobile/icons-18-white.png +0 -0
  39. data/templates/project/jquery-mobile/icons-36-black.png +0 -0
  40. data/templates/project/jquery-mobile/icons-36-white.png +0 -0
  41. data/templates/project/jquery.mobile-1.0a2.min.js +99 -0
  42. data/templates/project/manifest.rb +1 -0
  43. metadata +123 -0
@@ -0,0 +1,114 @@
1
+ /* The naming convention for all the theme elements are taken directly from the
2
+ jQuery Mobile themes
3
+
4
+ - swatch "e" is an accent swatch
5
+ */
6
+
7
+ // Colors
8
+ $e-bar-background-color: #fadb4e;
9
+ $e-bar-border-color: #F7C942;
10
+ $e-bar-foreground-color: #333;
11
+ $e-bar-link-color: #2489CE;
12
+ $e-bar-text-shadow-color: #fff;
13
+ $e-bar-gradient-start-background-color: #fceda7;
14
+ $e-bar-gradient-end-background-color: #fadb4e;
15
+
16
+ $e-body-background-color: #faeb9e;
17
+ $e-body-border-color: #F7C942;
18
+ $e-body-foreground-color: #333;
19
+ $e-body-link-color: #2489CE;
20
+ $e-body-text-shadow-color: #fff;
21
+ $e-body-gradient-start-background-color: #fff;
22
+ $e-body-gradient-end-background-color: #faeb9e;
23
+
24
+ $e-btn-up-background-color: #fadb4e;
25
+ $e-btn-up-border-color: #F7C942;
26
+ $e-btn-up-foreground-color: #333;
27
+ $e-btn-up-link-color: #333;
28
+ $e-btn-up-text-shadow-color: #fff;
29
+ $e-btn-up-gradient-start-background-color: #fceda7;
30
+ $e-btn-up-gradient-end-background-color: #fadb4e;
31
+
32
+ $e-btn-hover-background-color: #fbe26f;
33
+ $e-btn-hover-border-color: #e79952;
34
+ $e-btn-hover-foreground-color: #111;
35
+ $e-btn-hover-link-color: #333;
36
+ $e-btn-hover-text-shadow-color: #fff;
37
+ $e-btn-hover-gradient-start-background-color: #fcf0b5;
38
+ $e-btn-hover-gradient-end-background-color: #fbe26f;
39
+
40
+ $e-btn-down-background-color: #fceda7;
41
+ $e-btn-down-border-color: #F7C942;
42
+ $e-btn-down-foreground-color: #111;
43
+ $e-btn-down-link-color: #333;
44
+ $e-btn-down-text-shadow-color: #fff;
45
+ $e-btn-down-gradient-start-background-color: #fadb4e;
46
+ $e-btn-down-gradient-end-background-color: #fceda7;
47
+
48
+ // fonts
49
+ $e-font-family: $base-font-family;
50
+
51
+ // Bar styling
52
+ .ui-bar-e{
53
+ @include ui-bar-body($e-bar-border-color, $e-bar-background-color, $e-bar-foreground-color, 0 1px 0 $e-bar-text-shadow-color, $e-bar-gradient-start-background-color, $e-bar-gradient-end-background-color);
54
+ }
55
+
56
+ .ui-bar-e,.ui-bar-e input,.ui-bar-e select,.ui-bar-e textarea,.ui-bar-d button{
57
+ font-family: $e-font-family;
58
+ }
59
+
60
+ .ui-bar-e .ui-link-inherit{
61
+ color: $e-bar-foreground-color;
62
+ }
63
+
64
+ .ui-bar-e .ui-link{
65
+ color: $e-bar-link-color;
66
+ font-weight: 700;
67
+ }
68
+
69
+ // Body styling
70
+ .ui-body-e{
71
+ @include ui-bar-body($e-body-border-color, $e-body-background-color, $e-body-foreground-color, 0 1px 0 $e-body-text-shadow-color, $e-body-gradient-start-background-color, $e-body-gradient-end-background-color);
72
+ }
73
+
74
+ .ui-body-e,.ui-body-e input,.ui-body-e select,.ui-body-e textarea,.ui-body-e button{
75
+ font-family: $e-font-family;
76
+ }
77
+
78
+ .ui-body-e .ui-link-inherit{
79
+ color: $e-body-foreground-color;
80
+ }
81
+
82
+ .ui-body-e .ui-link{
83
+ color: $e-body-link-color;
84
+ font-weight: 700;
85
+ }
86
+
87
+ // Button styling
88
+ .ui-btn-up-e{
89
+ @include ui-button($e-btn-up-border-color, $e-btn-up-background-color, $e-btn-up-foreground-color, 0 1px 0 $e-btn-up-text-shadow-color, $e-btn-up-gradient-start-background-color, $e-btn-up-gradient-end-background-color, 700);
90
+ }
91
+
92
+ .ui-btn-up-e a.ui-link-inherit{
93
+ color: $e-btn-up-link-color;
94
+ }
95
+
96
+ .ui-btn-hover-e{
97
+ @include ui-button($e-btn-hover-border-color, $e-btn-hover-background-color, $e-btn-hover-foreground-color, 0 1px 1px $e-btn-up-text-shadow-color, $e-btn-hover-gradient-start-background-color, $e-btn-hover-gradient-end-background-color, 700);
98
+ }
99
+
100
+ .ui-btn-hover-e a.ui-link-inherit{
101
+ color: $e-btn-hover-link-color;
102
+ }
103
+
104
+ .ui-btn-down-e{
105
+ @include ui-button($e-btn-down-border-color, $e-btn-down-background-color, $e-btn-down-foreground-color, 0 1px 1px $e-btn-down-text-shadow-color, $e-btn-down-gradient-start-background-color, $e-btn-down-gradient-end-background-color, 700);
106
+ }
107
+
108
+ .ui-btn-down-e a.ui-link-inherit{
109
+ color: $e-btn-down-link-color;
110
+ }
111
+
112
+ .ui-btn-up-e,.ui-btn-hover-e,.ui-btn-down-e{
113
+ font-family: $e-font-family;
114
+ }
@@ -0,0 +1,106 @@
1
+ /* The naming convention for all the theme elements are taken directly from the
2
+ jQuery Mobile themes
3
+
4
+ - swatch "a" is the highest level of visual priority (black in the default theme)
5
+ */
6
+
7
+ // Colors
8
+ $a-bar-background-color: #111;
9
+ $a-bar-border-color: #2A2A2A;
10
+ $a-bar-foreground-color: #fff;
11
+ $a-bar-link-color: #7cc4e7;
12
+ $a-bar-text-shadow-color: #000;
13
+
14
+ $a-body-background-color: #222;
15
+ $a-body-border-color: #2A2A2A;
16
+ $a-body-foreground-color: #fff;
17
+ $a-body-link-color: #2489CE;
18
+ $a-body-text-shadow-color: #000;
19
+
20
+ $a-btn-up-background-color: #333;
21
+ $a-btn-up-border-color: #222;
22
+ $a-btn-up-foreground-color: #fff;
23
+ $a-btn-up-link-color: #fff;
24
+ $a-btn-up-text-shadow-color: #000;
25
+
26
+ $a-btn-hover-background-color: #444;
27
+ $a-btn-hover-border-color: #000;
28
+ $a-btn-hover-foreground-color: #fff;
29
+ $a-btn-hover-link-color: #fff;
30
+ $a-btn-hover-text-shadow-color: #000;
31
+
32
+ $a-btn-down-background-color: #444;
33
+ $a-btn-down-border-color: #000;
34
+ $a-btn-down-foreground-color: #fff;
35
+ $a-btn-down-link-color: #fff;
36
+ $a-btn-down-text-shadow-color: #000;
37
+
38
+ // fonts
39
+ $a-font-family: $base-font-family;
40
+
41
+ // Bar styling
42
+ .ui-bar-a{
43
+ @include ui-bar-body($a-bar-border-color, $a-bar-background-color, $a-bar-foreground-color, 0 -1px 1px $a-bar-text-shadow-color, #3c3c3c, #111111, bold);
44
+ }
45
+
46
+ .ui-bar-a,.ui-bar-a input,.ui-bar-a select,.ui-bar-a textarea,.ui-bar-a button{
47
+ font-family: $a-font-family;
48
+ }
49
+
50
+ .ui-bar-a .ui-link-inherit{
51
+ color: $a-bar-foreground-color;
52
+ }
53
+
54
+ .ui-bar-a .ui-link{
55
+ color: $a-bar-link-color;
56
+ font-weight: 700;
57
+ }
58
+
59
+ // Body styling
60
+ .ui-body-a{
61
+ @include ui-bar-body($a-body-border-color, $a-body-background-color, $a-body-foreground-color, 0 1px 0 $a-body-text-shadow-color, #666666, #222222, 400);
62
+ }
63
+
64
+ .ui-body-a,.ui-body-a input,.ui-body-a select,.ui-body-a textarea,.ui-body-a button{
65
+ font-family: $a-font-family;
66
+ }
67
+
68
+ .ui-body-a .ui-link-inherit{
69
+ color: $a-body-foreground-color;
70
+ }
71
+
72
+ .ui-body-a .ui-link{
73
+ color: $a-body-link-color;
74
+ font-weight: 700;
75
+ }
76
+
77
+ // Button styling
78
+ .ui-btn-up-a{
79
+ @include ui-button($a-btn-up-border-color, $a-btn-up-background-color, $a-btn-up-foreground-color, 0 -1px 1px $a-btn-up-text-shadow-color, #555, #333, 700);
80
+ }
81
+
82
+ .ui-btn-up-a a.ui-link-inherit{
83
+ color: $a-btn-up-link-color;
84
+ }
85
+
86
+ .ui-btn-hover-a{
87
+ @include ui-button($a-btn-hover-border-color, $a-btn-hover-background-color, $a-btn-hover-foreground-color, 0 -1px 1px $a-btn-hover-text-shadow-color, #666, #444, 700);
88
+ }
89
+
90
+ .ui-btn-hover-a a.ui-link-inherit{
91
+ color: $a-btn-hover-link-color;
92
+ }
93
+
94
+ .ui-btn-down-a{
95
+ @include ui-button($a-btn-down-border-color, $a-btn-down-background-color, $a-btn-down-foreground-color, 0 -1px 1px $a-btn-down-text-shadow-color, #333, #5a5a5a, 700);
96
+ }
97
+
98
+ .ui-btn-down-a a.ui-link-inherit{
99
+ color: $a-btn-down-link-color;
100
+ }
101
+
102
+ .ui-btn-up-a,.ui-btn-hover-a,.ui-btn-down-a{
103
+ font-family: $a-font-family;
104
+ }
105
+
106
+
@@ -0,0 +1,105 @@
1
+ /* The naming convention for all the theme elements are taken directly from the
2
+ jQuery Mobile themes
3
+
4
+ - swatch "b" is secondary level (blue in the default theme)
5
+ */
6
+
7
+ // Colors
8
+ $b-bar-background-color: #5e87b0;
9
+ $b-bar-foreground-color: #fff;
10
+ $b-bar-border-color: #456f9a;
11
+ $b-bar-link-color: #7cc4e7;
12
+ $b-bar-text-shadow-color: #254f7a;
13
+
14
+ $b-body-background-color: #ccc;
15
+ $b-body-foreground-color: #333;
16
+ $b-body-border-color: #C6C6C6;
17
+ $b-body-link-color: #2489CE;
18
+ $b-body-text-shadow-color: #fff;
19
+
20
+ $b-btn-up-background-color: #2567ab;
21
+ $b-btn-up-border-color: #145072;
22
+ $b-btn-up-foreground-color: #fff;
23
+ $b-btn-up-link-color: #fff;
24
+ $b-btn-up-text-shadow-color: #145072;
25
+
26
+ $b-btn-hover-background-color: #5397d5;
27
+ $b-btn-hover-border-color: #397cbe;
28
+ $b-btn-hover-foreground-color: #fff;
29
+ $b-btn-hover-link-color: #fff;
30
+ $b-btn-hover-text-shadow-color: #014D68;
31
+
32
+ $b-btn-down-background-color: #4e89c5;
33
+ $b-btn-down-border-color: #225377;
34
+ $b-btn-down-foreground-color: #fff;
35
+ $b-btn-down-link-color: #fff;
36
+ $b-btn-down-text-shadow-color: #225377;
37
+
38
+ // fonts
39
+ $b-font-family: $base-font-family;
40
+
41
+ // Bar styling
42
+ .ui-bar-b{
43
+ @include ui-bar-body($b-bar-border-color, $b-bar-background-color, $b-bar-foreground-color, 0 -1px 1px $b-bar-text-shadow-color, #81a8ce, #5e87b0, bold);
44
+ }
45
+
46
+ .ui-bar-b,.ui-bar-b input,.ui-bar-b select,.ui-bar-b textarea,.ui-bar-b button{
47
+ font-family: $b-font-family;
48
+ }
49
+
50
+ .ui-bar-b .ui-link-inherit{
51
+ color: $b-bar-foreground-color;
52
+ }
53
+
54
+ .ui-bar-b .ui-link{
55
+ color: $b-bar-link-color;
56
+ font-weight: 700;
57
+ }
58
+
59
+ // Body styling
60
+ .ui-body-b{
61
+ @include ui-bar-body($b-body-border-color, $b-body-background-color, $b-body-foreground-color, 0 1px 0 $b-body-text-shadow-color, #e6e6e6, #ccc, 400);
62
+ }
63
+
64
+ .ui-body-b,.ui-body-b input,.ui-body-b select,.ui-body-b textarea,.ui-body-b button{
65
+ font-family: $b-font-family;
66
+ }
67
+
68
+ .ui-body-b .ui-link-inherit{
69
+ color: $b-body-foreground-color;
70
+ }
71
+
72
+ .ui-body-b .ui-link{
73
+ color: $b-body-link-color;
74
+ font-weight: 700;
75
+ }
76
+
77
+
78
+ // Button styling
79
+ .ui-btn-up-b{
80
+ @include ui-button($b-btn-up-border-color, $b-btn-up-background-color, $b-btn-up-foreground-color, 0 -1px 1px $b-btn-up-text-shadow-color, #4e89c5, #2567ab, 700);
81
+ }
82
+
83
+ .ui-btn-up-b a.ui-link-inherit{
84
+ color: $b-btn-up-link-color;
85
+ }
86
+
87
+ .ui-btn-hover-b{
88
+ @include ui-button($b-btn-hover-border-color, $b-btn-hover-background-color, $b-btn-hover-foreground-color, 0 -1px 1px $b-btn-hover-text-shadow-color, #71a2d0, #397cbe, 700);
89
+ }
90
+
91
+ .ui-btn-hover-b a.ui-link-inherit{
92
+ color: $b-btn-hover-link-color;
93
+ }
94
+
95
+ .ui-btn-down-b{
96
+ @include ui-button($b-btn-down-border-color, $b-btn-down-background-color, $b-btn-down-foreground-color, 0 -1px 1px $b-btn-down-text-shadow-color, #396b9e, #4e89c5, 700);
97
+ }
98
+
99
+ .ui-btn-down-b a.ui-link-inherit{
100
+ color: $b-btn-down-link-color;
101
+ }
102
+
103
+ .ui-btn-up-b,.ui-btn-hover-b,.ui-btn-down-b{
104
+ font-family: $b-font-family;
105
+ }
@@ -0,0 +1,95 @@
1
+ /* The naming convention for all the theme elements are taken directly from the
2
+ jQuery Mobile themes
3
+
4
+ - swatch "c" is the baseline level (gray in the default theme)
5
+ */
6
+
7
+ // Colors
8
+ $c-bar-background-color: #e9eaeb;
9
+ $c-bar-border-color: #B3B3B3;
10
+ $c-bar-foreground-color: #3E3E3E;
11
+ $c-bar-link-color: #7cc4e7;
12
+ $c-bar-text-shadow-color: #fff;
13
+
14
+ $c-body-background-color: #f0f0f0;
15
+ $c-body-border-color: #B3B3B3;
16
+ $c-body-foreground-color: #333;
17
+ $c-body-link-color: #2489CE;
18
+ $c-body-text-shadow-color: #fff;
19
+
20
+ $c-btn-up-background-color: #eee;
21
+ $c-btn-up-border-color: #ccc;
22
+ $c-btn-up-foreground-color: #444;
23
+ $c-btn-up-link-color: #2F3E46;
24
+ $c-btn-up-text-shadow-color: #f6f6f6;
25
+
26
+ $c-btn-hover-background-color: #f5f5f5;
27
+ $c-btn-hover-border-color: #aaa;
28
+ $c-btn-hover-foreground-color: #111;
29
+ $c-btn-hover-link-color: #2F3E46;
30
+ $c-btn-hover-text-shadow-color: #fff;
31
+
32
+ $c-btn-down-background-color: #fdfdfd;
33
+ $c-btn-down-border-color: gray;
34
+ $c-btn-down-foreground-color: #111;
35
+ $c-btn-down-link-color: #2F3E46;
36
+ $c-btn-down-text-shadow-color: #fff;
37
+
38
+ // fonts
39
+ $c-font-family: $base-font-family;
40
+
41
+ // Bar styling
42
+ .ui-bar-c{
43
+ @include ui-bar-body($c-bar-border-color, $c-bar-background-color, $c-bar-foreground-color, 0 1px 1px $c-bar-text-shadow-color, #f0f0f0, #e9eaeb, bold);
44
+ }
45
+
46
+ .ui-bar-c,.ui-bar-c input,.ui-bar-c select,.ui-bar-c textarea,.ui-bar-c button{
47
+ font-family: $c-font-family;
48
+ }
49
+
50
+ // Body styling
51
+ .ui-body-c{
52
+ @include ui-bar-body($c-body-border-color, $c-body-background-color, $c-body-foreground-color, 0 1px 0 $c-body-text-shadow-color, #fff, #f0f0f0);
53
+ }
54
+
55
+ .ui-body-c,.ui-body-c input,.ui-body-c select,.ui-body-c textarea,.ui-body-c button{
56
+ font-family: $c-font-family;
57
+ }
58
+
59
+ .ui-body-c .ui-link-inherit{
60
+ color: $c-body-foreground-color;
61
+ }
62
+
63
+ .ui-body-c .ui-link{
64
+ color: $c-body-link-color;
65
+ font-weight: 700;
66
+ }
67
+
68
+ // Button styling
69
+ .ui-btn-up-c{
70
+ @include ui-button($c-btn-up-border-color, $c-btn-up-background-color, $c-btn-up-foreground-color, 0 1px 1px $c-btn-up-text-shadow-color, #59B4E3, #0088ce, 700);
71
+ }
72
+
73
+ .ui-btn-up-c a.ui-link-inherit{
74
+ color: $c-btn-up-link-color;
75
+ }
76
+
77
+ .ui-btn-hover-c{
78
+ @include ui-button($c-btn-hover-border-color, $c-btn-hover-background-color, $c-btn-hover-foreground-color, 0 1px 1px $c-btn-hover-text-shadow-color, #fff, #f5f5f5, 700);
79
+ }
80
+
81
+ .ui-btn-hover-c a.ui-link-inherit{
82
+ color: $c-btn-hover-link-color;
83
+ }
84
+
85
+ .ui-btn-down-c{
86
+ @include ui-button($c-btn-down-border-color, $c-btn-down-background-color, $c-btn-down-foreground-color, 0 1px 1px $c-btn-down-text-shadow-color, #eee, #fdfdfd, 700);
87
+ }
88
+
89
+ .ui-btn-down-c a.ui-link-inherit{
90
+ color: $c-btn-down-link-color;
91
+ }
92
+
93
+ .ui-btn-up-c,.ui-btn-hover-c,.ui-btn-down-c{
94
+ font-family: $c-font-family;
95
+ }
@@ -0,0 +1,104 @@
1
+ /* The naming convention for all the theme elements are taken directly from the
2
+ jQuery Mobile themes
3
+
4
+ - swatch "d" for an alternate secondary level
5
+ */
6
+
7
+ // Colors
8
+ $d-bar-background-color: #bbb;
9
+ $d-bar-border-color: #ccc;
10
+ $d-bar-foreground-color: #333;
11
+ $d-bar-link-color: #2489CE;
12
+ $d-bar-text-shadow-color: #eee;
13
+
14
+ $d-body-background-color: #fff;
15
+ $d-body-border-color: #ccc;
16
+ $d-body-foreground-color: #333;
17
+ $d-body-link-color: #2489CE;
18
+ $d-body-text-shadow-color: #fff;
19
+
20
+ $d-btn-up-background-color: #fff;
21
+ $d-btn-up-border-color: #ccc;
22
+ $d-btn-up-foreground-color: #444;
23
+ $d-btn-up-link-color: #333;
24
+ $d-btn-up-text-shadow-color: #fff;
25
+
26
+ $d-btn-hover-background-color: #eee;
27
+ $d-btn-hover-border-color: #aaa;
28
+ $d-btn-hover-foreground-color: #222;
29
+ $d-btn-hover-link-color: #222;
30
+ $d-btn-hover-text-shadow-color: #fff;
31
+
32
+ $d-btn-down-background-color: #fff;
33
+ $d-btn-down-border-color: #aaa;
34
+ $d-btn-down-foreground-color: #111;
35
+ $d-btn-down-link-color: #111;
36
+ $d-btn-down-text-shadow-color: #fff;
37
+
38
+ // fonts
39
+ $d-font-family: $base-font-family;
40
+
41
+ // Bar styling
42
+ .ui-bar-d{
43
+ @include ui-bar-body($d-bar-border-color, $d-bar-background-color, $d-bar-foreground-color, 0 1px 0 $d-bar-text-shadow-color, #ddd, #bbb);
44
+ }
45
+
46
+ .ui-bar-d,.ui-bar-d input,.ui-bar-d select,.ui-bar-d textarea,.ui-bar-d button{
47
+ font-family: $d-font-family;
48
+ }
49
+
50
+ .ui-bar-d .ui-link-inherit{
51
+ color: $d-bar-foreground-color;
52
+ }
53
+
54
+ .ui-bar-d .ui-link{
55
+ color: $d-bar-link-color;
56
+ font-weight: 700;
57
+ }
58
+
59
+ // Body styling
60
+ .ui-body-d{
61
+ @include ui-bar-body($d-body-border-color, $d-body-background-color, $d-body-foreground-color, 0 1px 0 $d-body-text-shadow-color);
62
+ }
63
+
64
+ .ui-body-d,.ui-body-d input,.ui-body-d select,.ui-body-d textarea,.ui-body-d button{
65
+ font-family: $d-font-family;
66
+ }
67
+
68
+ .ui-body-d .ui-link-inherit{
69
+ color: $d-body-foreground-color;
70
+ }
71
+
72
+ .ui-body-d .ui-link{
73
+ color: $d-body-link-color;
74
+ font-weight: 700;
75
+ }
76
+
77
+ // Button styling
78
+ .ui-btn-up-d{
79
+ @include ui-button($d-btn-up-border-color, $d-btn-up-background-color, $d-btn-up-foreground-color, 0 1px 1px $d-btn-up-text-shadow-color, nil, nil, 700);
80
+ }
81
+
82
+ .ui-btn-up-d a.ui-link-inherit{
83
+ color: $d-btn-up-link-color;
84
+ }
85
+
86
+ .ui-btn-hover-d{
87
+ @include ui-button($d-btn-hover-border-color, $d-btn-hover-background-color, $d-btn-hover-foreground-color, 0 1px 1px $d-btn-hover-text-shadow-color, #fdfdfd, #eee, 700);
88
+ }
89
+
90
+ .ui-btn-hover-d a.ui-link-inherit{
91
+ color: $d-btn-hover-link-color;
92
+ }
93
+
94
+ .ui-btn-down-d{
95
+ @include ui-button($d-btn-down-border-color, $d-btn-down-background-color, $d-btn-down-foreground-color, 0 1px 1px $d-btn-down-text-shadow-color, #eee, #fff, 700);
96
+ }
97
+
98
+ .ui-btn-down-d a.ui-link-inherit{
99
+ @include ui-button(gray, #ced0d2, $d-btn-down-link-color, none, #ccc, #eee, 700);
100
+ }
101
+
102
+ .ui-btn-up-d,.ui-btn-hover-d,.ui-btn-down-d{
103
+ font-family: $d-font-family;
104
+ }