compass-ui 0.0.3
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.
- data/.gitignore +10 -0
- data/CHANGELOG.md +22 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +22 -0
- data/LICENSE.md +30 -0
- data/README.md +81 -0
- data/compass-ui.gemspec +23 -0
- data/demos/config.rb +26 -0
- data/demos/images/absolution/selector.png +0 -0
- data/demos/images/absolution/ui-icons_222222_256x240.png +0 -0
- data/demos/images/absolution/ui-icons_eeeeee_256x240.png +0 -0
- data/demos/images/absolution/ui-icons_ffffff_256x240.png +0 -0
- data/demos/images/dot-luv/ui-bg_diagonals-thick_15_0b3e6f_40x40.png +0 -0
- data/demos/images/dot-luv/ui-bg_dots-medium_30_0b58a2_4x4.png +0 -0
- data/demos/images/dot-luv/ui-bg_dots-small_20_333333_2x2.png +0 -0
- data/demos/images/dot-luv/ui-bg_dots-small_30_a32d00_2x2.png +0 -0
- data/demos/images/dot-luv/ui-bg_dots-small_40_00498f_2x2.png +0 -0
- data/demos/images/dot-luv/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/demos/images/dot-luv/ui-bg_flat_40_292929_40x100.png +0 -0
- data/demos/images/dot-luv/ui-bg_gloss-wave_20_111111_500x100.png +0 -0
- data/demos/images/dot-luv/ui-icons_00498f_256x240.png +0 -0
- data/demos/images/dot-luv/ui-icons_98d2fb_256x240.png +0 -0
- data/demos/images/dot-luv/ui-icons_9ccdfc_256x240.png +0 -0
- data/demos/images/dot-luv/ui-icons_ffffff_256x240.png +0 -0
- data/demos/images/jquery-ui-base/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/demos/images/jquery-ui-base/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/demos/images/jquery-ui-base/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/demos/images/jquery-ui-base/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/demos/images/jquery-ui-base/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/demos/images/jquery-ui-base/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/demos/images/jquery-ui-base/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/demos/images/jquery-ui-base/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/demos/images/jquery-ui-base/ui-icons_222222_256x240.png +0 -0
- data/demos/images/jquery-ui-base/ui-icons_2e83ff_256x240.png +0 -0
- data/demos/images/jquery-ui-base/ui-icons_454545_256x240.png +0 -0
- data/demos/images/jquery-ui-base/ui-icons_888888_256x240.png +0 -0
- data/demos/images/jquery-ui-base/ui-icons_cd0a0a_256x240.png +0 -0
- data/demos/index.html +65 -0
- data/demos/js/demo.js +189 -0
- data/demos/sass/_base.scss +5 -0
- data/demos/sass/_demo.scss +124 -0
- data/demos/sass/_normalize.scss +387 -0
- data/demos/sass/absolution.scss +3 -0
- data/demos/sass/color-test.scss +111 -0
- data/demos/sass/default.scss +3 -0
- data/demos/sass/dot-luv.scss +3 -0
- data/demos/sass/ie.scss +5 -0
- data/demos/sass/print.scss +3 -0
- data/demos/sass/smoothness.scss +3 -0
- data/demos/sections/accordion.html +56 -0
- data/demos/sections/autocomplete.html +6 -0
- data/demos/sections/buttons.html +19 -0
- data/demos/sections/combinations.html +41 -0
- data/demos/sections/datepicker.html +6 -0
- data/demos/sections/dialog.html +8 -0
- data/demos/sections/form.html +26 -0
- data/demos/sections/highlights.html +16 -0
- data/demos/sections/icons.html +219 -0
- data/demos/sections/overlay.html +14 -0
- data/demos/sections/progressbar.html +6 -0
- data/demos/sections/sliders.html +19 -0
- data/demos/sections/tabs.html +12 -0
- data/lib/compass-ui.rb +2 -0
- data/lib/compass-ui/compass_plugin.rb +5 -0
- data/lib/compass-ui/version.rb +3 -0
- data/stylesheets/_compass-ui.scss +1 -0
- data/stylesheets/compass-ui/_colors.scss +67 -0
- data/stylesheets/compass-ui/_jquery-ui.scss +13 -0
- data/stylesheets/compass-ui/jquery-ui/_accordion.scss +50 -0
- data/stylesheets/compass-ui/jquery-ui/_autocomplete.scss +56 -0
- data/stylesheets/compass-ui/jquery-ui/_button.scss +101 -0
- data/stylesheets/compass-ui/jquery-ui/_core.scss +89 -0
- data/stylesheets/compass-ui/jquery-ui/_datepicker.scss +167 -0
- data/stylesheets/compass-ui/jquery-ui/_dialog.scss +61 -0
- data/stylesheets/compass-ui/jquery-ui/_progressbar.scss +17 -0
- data/stylesheets/compass-ui/jquery-ui/_resizable.scss +78 -0
- data/stylesheets/compass-ui/jquery-ui/_selectable.scss +15 -0
- data/stylesheets/compass-ui/jquery-ui/_slider.scss +55 -0
- data/stylesheets/compass-ui/jquery-ui/_tabs.scss +53 -0
- data/stylesheets/compass-ui/jquery-ui/_theme.scss +796 -0
- data/stylesheets/compass-ui/theme/_absolution.scss +151 -0
- data/stylesheets/compass-ui/theme/_dot-luv.scss +115 -0
- data/stylesheets/compass-ui/theme/_jquery-ui-base.scss +160 -0
- data/stylesheets/compass-ui/theme/_smoothness.scss +35 -0
- data/stylesheets/compass-ui/theme/absolution/_accordion.scss +65 -0
- data/stylesheets/compass-ui/theme/absolution/_autocomplete.scss +41 -0
- data/stylesheets/compass-ui/theme/absolution/_datepicker.scss +149 -0
- data/stylesheets/compass-ui/theme/absolution/_dialog.scss +84 -0
- data/stylesheets/compass-ui/theme/absolution/_progressbar.scss +14 -0
- data/stylesheets/compass-ui/theme/absolution/_slider.scss +50 -0
- data/stylesheets/compass-ui/theme/absolution/_tabs.scss +68 -0
- data/templates/project/_compass-ui.scss +2 -0
- data/templates/project/manifest.rb +12 -0
- metadata +150 -0
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The Absolution Theme is based on
|
|
3
|
+
* Absolution by Michael Vanderheeren
|
|
4
|
+
* Copyright (c) 2010 Michael Vanderheeren
|
|
5
|
+
*
|
|
6
|
+
* Please follow the his Github project to stay up to date on that theme:
|
|
7
|
+
* https://github.com/michaelvanderheeren/Absolution
|
|
8
|
+
*/
|
|
9
|
+
@import "compass/css3/border-radius";
|
|
10
|
+
@import "compass/css3/images";
|
|
11
|
+
@import "compass/css3/opacity";
|
|
12
|
+
@import "compass/css3/box-shadow";
|
|
13
|
+
@import "compass/css3/text-shadow";
|
|
14
|
+
|
|
15
|
+
@import "compass-ui";
|
|
16
|
+
@import "absolution/progressbar";
|
|
17
|
+
@import "absolution/dialog";
|
|
18
|
+
@import "absolution/accordion";
|
|
19
|
+
@import "absolution/autocomplete";
|
|
20
|
+
@import "absolution/datepicker";
|
|
21
|
+
@import "absolution/slider";
|
|
22
|
+
@import "absolution/tabs";
|
|
23
|
+
|
|
24
|
+
// Theme mixin that calls the relevant jQuery and theme
|
|
25
|
+
// mixins when appropriate.
|
|
26
|
+
@mixin absolution-theme {
|
|
27
|
+
@include jquery-ui-theme;
|
|
28
|
+
@include absolution-dialog;
|
|
29
|
+
@include absolution-progressbar;
|
|
30
|
+
@include absolution-accordion;
|
|
31
|
+
@include absolution-autocomplete;
|
|
32
|
+
@include absolution-datepicker;
|
|
33
|
+
@include absolution-slider;
|
|
34
|
+
@include absolution-tabs;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// Default Radius
|
|
38
|
+
$ui-border-radius: 5px;
|
|
39
|
+
|
|
40
|
+
// Default Fonts
|
|
41
|
+
$ui-font-family: "Trebuchet MS", Tahoma, Verdana, Arial, sans-serif;
|
|
42
|
+
|
|
43
|
+
$ui-fixed-font-family: "andale mono", "lucida console", monospace;
|
|
44
|
+
|
|
45
|
+
$ui-font-size: 1.1em;
|
|
46
|
+
|
|
47
|
+
$ui-widget-font-size: 1em;
|
|
48
|
+
|
|
49
|
+
$ui-form-font-size: 1em;
|
|
50
|
+
|
|
51
|
+
$ui-header-font-weight: bold;
|
|
52
|
+
|
|
53
|
+
// ------------------------------------------
|
|
54
|
+
// Icon Images
|
|
55
|
+
// ------------------------------------------
|
|
56
|
+
$ui-images-url: "absolution/";
|
|
57
|
+
$ui-icons: "ui-icons_222222_256x240.png";
|
|
58
|
+
$ui-icons-content: $ui-icons;
|
|
59
|
+
$ui-icons-header: $ui-icons;
|
|
60
|
+
$ui-icons-default: $ui-icons;
|
|
61
|
+
$ui-icons-hover: "ui-icons_ffffff_256x240.png";
|
|
62
|
+
$ui-icons-focus: $ui-icons-hover;
|
|
63
|
+
$ui-icons-active: $ui-icons-hover;
|
|
64
|
+
$ui-icons-highlight: $ui-icons;
|
|
65
|
+
$ui-icons-error: $ui-icons;
|
|
66
|
+
|
|
67
|
+
// ------------------------------------------
|
|
68
|
+
// Color Scheme
|
|
69
|
+
// ------------------------------------------
|
|
70
|
+
|
|
71
|
+
// content
|
|
72
|
+
$ui-content-border-color: #a9a9a9;
|
|
73
|
+
$ui-content-color: #333333;
|
|
74
|
+
$ui-content-link-color: $ui-content-color;
|
|
75
|
+
$ui-content-background-color: #fdfdfd;
|
|
76
|
+
// If the background is flat, add a full background description:
|
|
77
|
+
// $ui-content-background: #ffffff url(...);
|
|
78
|
+
$ui-content-background: linear-gradient($ui-content-background-color,#ececec);
|
|
79
|
+
$ui-content-background-type: gradient;
|
|
80
|
+
|
|
81
|
+
// header
|
|
82
|
+
$ui-header-border-color: $ui-content-border-color;
|
|
83
|
+
$ui-header-color: $ui-content-color;
|
|
84
|
+
$ui-header-link-color: $ui-header-color;
|
|
85
|
+
$ui-header-background-color: $ui-content-background-color;
|
|
86
|
+
$ui-header-background: $ui-content-background;
|
|
87
|
+
|
|
88
|
+
// titlebar
|
|
89
|
+
$ui-titlebar-color: #ffffff;
|
|
90
|
+
$ui-titlebar-background-color: #4c4c4e;
|
|
91
|
+
$ui-titlebar-background: linear-gradient($ui-titlebar-background-color, #282425);
|
|
92
|
+
$ui-titlebar-background-type: gradient;
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
// state-default
|
|
96
|
+
$ui-default-border-color: #a9a9a9;
|
|
97
|
+
$ui-default-color: #333333;
|
|
98
|
+
$ui-default-background-color: #fdfdfd;
|
|
99
|
+
$ui-default-background: linear-gradient($ui-default-background-color,#ececec);
|
|
100
|
+
$ui-default-link-color: $ui-default-color;
|
|
101
|
+
|
|
102
|
+
// state-hover
|
|
103
|
+
$ui-hover-border-color: #2e63a5;
|
|
104
|
+
$ui-hover-color: #ffffff;
|
|
105
|
+
$ui-hover-background-color: #5e9ae2;
|
|
106
|
+
$ui-hover-background: linear-gradient($ui-hover-background-color,#3570b8);
|
|
107
|
+
$ui-hover-link-color: $ui-hover-color;
|
|
108
|
+
|
|
109
|
+
// state-active
|
|
110
|
+
$ui-active-border-color: #2e63a5;
|
|
111
|
+
$ui-active-color: #ffffff;
|
|
112
|
+
$ui-active-background-color: #3570b8;
|
|
113
|
+
$ui-active-background: linear-gradient($ui-active-background-color,#5e9ae2);
|
|
114
|
+
$ui-active-link-color: $ui-active-color;
|
|
115
|
+
|
|
116
|
+
// state-highlight
|
|
117
|
+
$ui-highlight-border-color: #8b9fc2;
|
|
118
|
+
$ui-highlight-color: #363636;
|
|
119
|
+
$ui-highlight-background-color: #7cc5e3;
|
|
120
|
+
$ui-highlight-background: $ui-highlight-background-color;
|
|
121
|
+
$ui-highlight-background-type: flat;
|
|
122
|
+
$ui-highlight-link-color: $ui-highlight-color;
|
|
123
|
+
|
|
124
|
+
// state-error
|
|
125
|
+
$ui-error-border-color: #953737;
|
|
126
|
+
$ui-error-color: #363636;
|
|
127
|
+
$ui-error-background-color: #f35757;
|
|
128
|
+
$ui-error-background: $ui-error-background-color;
|
|
129
|
+
$ui-error-background-type: flat;
|
|
130
|
+
$ui-error-link-color: $ui-error-color;
|
|
131
|
+
|
|
132
|
+
// state-primary
|
|
133
|
+
|
|
134
|
+
// priority-secondary
|
|
135
|
+
$ui-priority-secondary-opacity: .7;
|
|
136
|
+
|
|
137
|
+
// state-disabled
|
|
138
|
+
$ui-disabled-opacity: .35;
|
|
139
|
+
|
|
140
|
+
// overlay
|
|
141
|
+
$ui-overlay-opacity: .3;
|
|
142
|
+
$ui-overlay-background-color: #aaaaaa;
|
|
143
|
+
$ui-overlay-background: linear-gradient($ui-overlay-background-color,adjust-lightness($ui-overlay-background-color, -5));
|
|
144
|
+
$ui-overlay-background-type: gradient;
|
|
145
|
+
|
|
146
|
+
// shadow
|
|
147
|
+
$ui-shadow-opacity: .3;
|
|
148
|
+
$ui-shadow-background-color: #aaaaaa;
|
|
149
|
+
$ui-shadow-background: linear-gradient($ui-shadow-background-color,adjust-lightness($ui-shadow-background-color, -5));
|
|
150
|
+
$ui-shadow-background-type: gradient;
|
|
151
|
+
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
@import "compass/css3/border-radius";
|
|
2
|
+
@import "compass/css3/images";
|
|
3
|
+
@import "compass/css3/opacity";
|
|
4
|
+
@import "compass-ui";
|
|
5
|
+
|
|
6
|
+
// Theme mixin that calls the relevant jQuery and theme mixins when appropriate.
|
|
7
|
+
@mixin dot-luv-theme {
|
|
8
|
+
@include jquery-ui-theme;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
// Default Radius
|
|
12
|
+
$ui-border-radius: 4px;
|
|
13
|
+
|
|
14
|
+
// Default Fonts
|
|
15
|
+
$ui-font-family: Arial, sans-serif;
|
|
16
|
+
|
|
17
|
+
$ui-font-size: 1.3em;
|
|
18
|
+
|
|
19
|
+
$ui-font-color: #d9d9d9;
|
|
20
|
+
|
|
21
|
+
// ------------------------------------------
|
|
22
|
+
// Icon Images
|
|
23
|
+
// ------------------------------------------
|
|
24
|
+
|
|
25
|
+
$ui-images-url: "dot-luv/";
|
|
26
|
+
$ui-icons: "ui-icons_9ccdfc_256x240.png";
|
|
27
|
+
$ui-icons-content: $ui-icons;
|
|
28
|
+
$ui-icons-header: "ui-icons_98d2fb_256x240.png";
|
|
29
|
+
$ui-icons-default: $ui-icons;
|
|
30
|
+
$ui-icons-hover: "ui-icons_ffffff_256x240.png";
|
|
31
|
+
$ui-icons-focus: $ui-icons-hover;
|
|
32
|
+
$ui-icons-active: "ui-icons_00498f_256x240.png";
|
|
33
|
+
$ui-icons-highlight: $ui-icons-hover;
|
|
34
|
+
$ui-icons-error: $ui-icons-hover;
|
|
35
|
+
|
|
36
|
+
// ------------------------------------------
|
|
37
|
+
// Color Scheme
|
|
38
|
+
// ------------------------------------------
|
|
39
|
+
|
|
40
|
+
// Content
|
|
41
|
+
$ui-content-border-color: #000000;
|
|
42
|
+
$ui-content-color: $ui-font-color;
|
|
43
|
+
$ui-content-background-color: #111111;
|
|
44
|
+
$ui-content-background: #111111 image-url("#{$ui-images-url}ui-bg_gloss-wave_20_111111_500x100.png") 50% top repeat-x;
|
|
45
|
+
$ui-content-background-type: flat;
|
|
46
|
+
$ui-content-link-color: $ui-content-color;
|
|
47
|
+
|
|
48
|
+
// Header
|
|
49
|
+
$ui-header-border-color: #0b3e6f;
|
|
50
|
+
$ui-header-color: #f6f6f6;
|
|
51
|
+
$ui-header-background-color: #0b3e6f;
|
|
52
|
+
$ui-header-background: #0b3e6f image-url("#{$ui-images-url}ui-bg_diagonals-thick_15_0b3e6f_40x40.png") 50% 50% repeat;
|
|
53
|
+
$ui-header-background-type: flat;
|
|
54
|
+
$ui-header-link-color: $ui-header-color;
|
|
55
|
+
|
|
56
|
+
// State-Default
|
|
57
|
+
$ui-default-border-color: #333333;
|
|
58
|
+
$ui-default-color: #ffffff;
|
|
59
|
+
$ui-default-background-color: #333333;
|
|
60
|
+
$ui-default-background: #333333 image-url("#{$ui-images-url}ui-bg_dots-small_20_333333_2x2.png") 50% 50% repeat;
|
|
61
|
+
$ui-default-background-type: flat;
|
|
62
|
+
$ui-default-link-color: $ui-default-color;
|
|
63
|
+
|
|
64
|
+
// State-Hover
|
|
65
|
+
$ui-hover-border-color: #222222;
|
|
66
|
+
$ui-hover-color: #ffffff;
|
|
67
|
+
$ui-hover-background-color: #00498f;
|
|
68
|
+
$ui-hover-background: #00498f image-url("#{$ui-images-url}ui-bg_dots-small_40_00498f_2x2.png") 50% 50% repeat;
|
|
69
|
+
$ui-hover-background-type: flat;
|
|
70
|
+
$ui-hover-link-color: $ui-hover-color;
|
|
71
|
+
|
|
72
|
+
// State-Active
|
|
73
|
+
$ui-active-border-color: #096ac8;
|
|
74
|
+
$ui-active-color: #75abff;
|
|
75
|
+
$ui-active-background-color: #292929;
|
|
76
|
+
$ui-active-background: #292929 image-url("#{$ui-images-url}ui-bg_flat_40_292929_40x100.png") 50% 50% repeat-x;
|
|
77
|
+
$ui-active-background-type: flat;
|
|
78
|
+
$ui-active-link-color: $ui-active-color;
|
|
79
|
+
|
|
80
|
+
// State-Highlight
|
|
81
|
+
$ui-highlight-border-color: #052f57;
|
|
82
|
+
$ui-highlight-color: #ffffff;
|
|
83
|
+
$ui-highlight-background-color: #0b58a2;
|
|
84
|
+
$ui-highlight-background: #0b58a2 image-url("#{$ui-images-url}ui-bg_dots-medium_30_0b58a2_4x4.png") 50% 50% repeat;
|
|
85
|
+
$ui-highlight-background-type: flat;
|
|
86
|
+
$ui-highlight-link-color: $ui-highlight-color;
|
|
87
|
+
|
|
88
|
+
// State-Error
|
|
89
|
+
$ui-error-border-color: #cd0a0a;
|
|
90
|
+
$ui-error-color: #ffffff;
|
|
91
|
+
$ui-error-background-color: #a32d00;
|
|
92
|
+
$ui-error-background: #a32d00 image-url("#{$ui-images-url}ui-bg_dots-small_30_a32d00_2x2.png") 50% 50% repeat;
|
|
93
|
+
$ui-error-background-type: flat;
|
|
94
|
+
$ui-error-link-color: $ui-default-color;
|
|
95
|
+
|
|
96
|
+
// State-Primary
|
|
97
|
+
|
|
98
|
+
// Priority-Secondary
|
|
99
|
+
$ui-priority-secondary-opacity: .7;
|
|
100
|
+
|
|
101
|
+
// State-Disabled
|
|
102
|
+
$ui-disabled-opacity: .35;
|
|
103
|
+
|
|
104
|
+
// Overlay
|
|
105
|
+
$ui-overlay-opacity: .3;
|
|
106
|
+
$ui-overlay-background-color: #aaaaaa;
|
|
107
|
+
$ui-overlay-background: $ui-overlay-background-color;
|
|
108
|
+
$ui-overlay-background-type: flat;
|
|
109
|
+
|
|
110
|
+
// Shadow
|
|
111
|
+
$ui-shadow-opacity: .3;
|
|
112
|
+
$ui-shadow-background-color: #aaaaaa;
|
|
113
|
+
$ui-shadow-background: $ui-shadow-background-color;
|
|
114
|
+
$ui-shadow-background-type: flat;
|
|
115
|
+
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
@import "compass-ui/colors";
|
|
2
|
+
@import "compass-ui/jquery-ui";
|
|
3
|
+
@import "compass/css3/border-radius";
|
|
4
|
+
@import "compass/css3/images";
|
|
5
|
+
@import "compass/css3/opacity";
|
|
6
|
+
|
|
7
|
+
// Theme mixin that calls the relevant jQuery and theme mixins when appropriate.
|
|
8
|
+
@mixin jquery-ui-base-theme {
|
|
9
|
+
@include jquery-ui-theme;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
// Default Radius
|
|
13
|
+
$ui-border-radius: 5px !default;
|
|
14
|
+
|
|
15
|
+
// Default Fonts
|
|
16
|
+
$ui-font-family: Verdana, Arial, sans-serif !default;
|
|
17
|
+
|
|
18
|
+
$ui-fixed-font-family: "andale mono", "lucida console", monospace !default;
|
|
19
|
+
|
|
20
|
+
$ui-font-size: 1.1em !default;
|
|
21
|
+
|
|
22
|
+
$ui-widget-font-size: 1em !default;
|
|
23
|
+
|
|
24
|
+
$ui-form-font-size: 1em !default;
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
$ui-font-color: #222222 !default;
|
|
28
|
+
|
|
29
|
+
// ------------------------------------------
|
|
30
|
+
// Icon Images
|
|
31
|
+
// ------------------------------------------
|
|
32
|
+
|
|
33
|
+
// Location of the icons and other them related images. Note that this
|
|
34
|
+
// is relative to the images directory as defined in the compass config.rb file.
|
|
35
|
+
$ui-images-url: "jquery-ui-base/" !default;
|
|
36
|
+
|
|
37
|
+
// Individual icon images that relate to each of the jQuery UI states
|
|
38
|
+
$ui-icons: "ui-icons_222222_256x240.png" !default;
|
|
39
|
+
$ui-icons-content: $ui-icons !default;
|
|
40
|
+
$ui-icons-header: $ui-icons !default;
|
|
41
|
+
$ui-icons-default: "ui-icons_888888_256x240.png" !default;
|
|
42
|
+
$ui-icons-hover: "ui-icons_454545_256x240.png" !default;
|
|
43
|
+
$ui-icons-focus: $ui-icons-hover !default;
|
|
44
|
+
$ui-icons-active: "ui-icons_454545_256x240.png" !default;
|
|
45
|
+
$ui-icons-highlight: "ui-icons_2e83ff_256x240.png" !default;
|
|
46
|
+
$ui-icons-error: "ui-icons_cd0a0a_256x240.png" !default;
|
|
47
|
+
|
|
48
|
+
// ------------------------------------------
|
|
49
|
+
// Color Scheme
|
|
50
|
+
// ------------------------------------------
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
// Content
|
|
54
|
+
$ui-content-border-width: 1px !default;
|
|
55
|
+
$ui-content-border-style: solid !default;
|
|
56
|
+
$ui-content-border-color: #aaaaaa !default;
|
|
57
|
+
$ui-content-color: $ui-font-color !default;
|
|
58
|
+
$ui-content-background-color: $ui-white !default;
|
|
59
|
+
$ui-content-background: $ui-white !default;
|
|
60
|
+
$ui-content-background-type: flat !default;
|
|
61
|
+
$ui-content-link-color: $ui-content-color !default;
|
|
62
|
+
|
|
63
|
+
// Header
|
|
64
|
+
$ui-header-border-width: 1px !default;
|
|
65
|
+
$ui-header-border-style: solid !default;
|
|
66
|
+
$ui-header-border-color: #aaaaaa !default;
|
|
67
|
+
$ui-header-color: $ui-font-color !default;
|
|
68
|
+
$ui-header-link-color: $ui-header-color !default;
|
|
69
|
+
$ui-header-font-weight: bold !default;
|
|
70
|
+
$ui-header-background-color: #cccccc !default;
|
|
71
|
+
$ui-header-background: linear-gradient(#e2e2e2,#cccccc) !default;
|
|
72
|
+
$ui-header-background-type: gradient !default;
|
|
73
|
+
|
|
74
|
+
// State-Default
|
|
75
|
+
$ui-default-border-width: 1px !default;
|
|
76
|
+
$ui-default-border-style: solid !default;
|
|
77
|
+
$ui-default-border-color: #d3d3d3 !default;
|
|
78
|
+
$ui-default-color: #555555 !default;
|
|
79
|
+
$ui-default-link-color: $ui-default-color !default;
|
|
80
|
+
$ui-default-font-weight: normal !default;
|
|
81
|
+
$ui-default-background-color: #e6e6e6 !default;
|
|
82
|
+
$ui-default-background: linear-gradient(#ededed,#f1f1f1) !default;
|
|
83
|
+
$ui-default-background-type: gradient !default;
|
|
84
|
+
|
|
85
|
+
// State-Hover
|
|
86
|
+
$ui-hover-border-width: 1px !default;
|
|
87
|
+
$ui-hover-border-style: solid !default;
|
|
88
|
+
$ui-hover-border-color: #999999 !default;
|
|
89
|
+
$ui-hover-color: #212121 !default;
|
|
90
|
+
$ui-hover-link-color: $ui-hover-color !default;
|
|
91
|
+
$ui-hover-font-weight: normal !default;
|
|
92
|
+
$ui-hover-background-color: #dadada !default;
|
|
93
|
+
$ui-hover-background: linear-gradient(#e4e4e4,#eaeaea) !default;
|
|
94
|
+
$ui-hover-background-type: gradient !default;
|
|
95
|
+
|
|
96
|
+
// State-Focus
|
|
97
|
+
$ui-focus-border-width: 1px !default;
|
|
98
|
+
$ui-focus-border-style: solid !default;
|
|
99
|
+
$ui-focus-border-color: #999999 !default;
|
|
100
|
+
$ui-focus-color: #212121 !default;
|
|
101
|
+
$ui-focus-link-color: $ui-hover-color !default;
|
|
102
|
+
$ui-focus-font-weight: normal !default;
|
|
103
|
+
$ui-focus-background-color: #dadada !default;
|
|
104
|
+
$ui-focus-background: linear-gradient(#e4e4e4,#eaeaea) !default;
|
|
105
|
+
$ui-focus-background-type: gradient !default;
|
|
106
|
+
|
|
107
|
+
// State-Active
|
|
108
|
+
$ui-active-border-width: 1px !default;
|
|
109
|
+
$ui-active-border-style: solid !default;
|
|
110
|
+
$ui-active-border-color: #aaaaaa !default;
|
|
111
|
+
$ui-active-color: #212121 !default;
|
|
112
|
+
$ui-active-link-color: $ui-active-color !default;
|
|
113
|
+
$ui-active-font-weight: normal !default;
|
|
114
|
+
$ui-active-background-color: #ffffff !default;
|
|
115
|
+
$ui-active-background: linear-gradient(#fefefe,#ffffff) !default;
|
|
116
|
+
$ui-active-background-type: gradient !default;
|
|
117
|
+
|
|
118
|
+
// State-Highlight
|
|
119
|
+
$ui-highlight-border-width: 1px !default;
|
|
120
|
+
$ui-highlight-border-style: solid !default;
|
|
121
|
+
$ui-highlight-border-color: #fcefa1 !default;
|
|
122
|
+
$ui-highlight-color: #363636 !default;
|
|
123
|
+
$ui-highlight-link-color: $ui-highlight-color !default;
|
|
124
|
+
$ui-highlight-background-color: #fbf9ee !default;
|
|
125
|
+
$ui-highlight-background: linear-gradient(#fcfaf1, #fbfaf3) !default;
|
|
126
|
+
$ui-highlight-background-type: gradient !default;
|
|
127
|
+
|
|
128
|
+
// State-Error
|
|
129
|
+
$ui-error-border-width: 1px !default;
|
|
130
|
+
$ui-error-border-style: solid !default;
|
|
131
|
+
$ui-error-border-color: #cd0a0a !default;
|
|
132
|
+
$ui-error-color: #cd0a0a !default;
|
|
133
|
+
$ui-error-link-color: $ui-default-color !default;
|
|
134
|
+
$ui-error-background-color: #fef1ec !default;
|
|
135
|
+
$ui-error-background: linear-gradient(#fef6f3, #fef8f6) !default;
|
|
136
|
+
$ui-error-background-type: gradient !default;
|
|
137
|
+
|
|
138
|
+
// State-Primary
|
|
139
|
+
$ui-priority-font-weight: bold !default;
|
|
140
|
+
|
|
141
|
+
// Priority-Secondary
|
|
142
|
+
$ui-priority-secondary-opacity: .7 !default;
|
|
143
|
+
$ui-priority-secondary-font-weight: normal !default;
|
|
144
|
+
|
|
145
|
+
// State-Disabled
|
|
146
|
+
$ui-disabled-opacity: .35 !default;
|
|
147
|
+
|
|
148
|
+
// Overlay
|
|
149
|
+
$ui-overlay-opacity: .3 !default;
|
|
150
|
+
$ui-overlay-background-color: #aaaaaa !default;
|
|
151
|
+
$ui-overlay-background: $ui-overlay-background-color !default;
|
|
152
|
+
$ui-overlay-background-type: flat !default;
|
|
153
|
+
|
|
154
|
+
// Shadow
|
|
155
|
+
$ui-shadow-opacity: .3 !default;
|
|
156
|
+
$ui-shadow-background-color: #aaaaaa !default;
|
|
157
|
+
$ui-shadow-background: $ui-shadow-background-color !default;
|
|
158
|
+
$ui-shadow-background-type: flat !default;
|
|
159
|
+
|
|
160
|
+
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
@import "compass/css3/border-radius";
|
|
2
|
+
@import "compass/css3/images";
|
|
3
|
+
@import "compass/css3/opacity";
|
|
4
|
+
@import "compass-ui";
|
|
5
|
+
|
|
6
|
+
// Theme mixin that calls the relevant jQuery and theme mixins when appropriate.
|
|
7
|
+
@mixin smoothness-theme {
|
|
8
|
+
@include jquery-ui-theme;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
// // Header
|
|
13
|
+
$ui-header-background: #cccccc image-url("#{$ui-images-url}ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
|
|
14
|
+
$ui-header-background-type: flat;
|
|
15
|
+
|
|
16
|
+
// State-Default
|
|
17
|
+
$ui-default-background: $ui-default-background-color image-url("#{$ui-images-url}ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
|
|
18
|
+
$ui-default-background-type: flat;
|
|
19
|
+
|
|
20
|
+
// State-Hover
|
|
21
|
+
$ui-hover-background: $ui-hover-background-color image-url("#{$ui-images-url}ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
|
|
22
|
+
$ui-hover-background-type: flat;
|
|
23
|
+
|
|
24
|
+
// State-Active
|
|
25
|
+
$ui-active-background: #ffffff image-url("#{$ui-images-url}ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
|
|
26
|
+
$ui-active-background-type: flat;
|
|
27
|
+
|
|
28
|
+
// State-Highlight
|
|
29
|
+
$ui-highlight-background: #fbf9ee image-url("#{$ui-images-url}ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
|
|
30
|
+
$ui-highlight-background-type: flat;
|
|
31
|
+
|
|
32
|
+
// State-Error
|
|
33
|
+
$ui-error-background: #fef1ec image-url("#{$ui-images-url}ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
|
|
34
|
+
$ui-error-background-type: flat;
|
|
35
|
+
|