compass 0.10.2 → 0.10.3.pre.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +2 -1
- data/frameworks/blueprint/stylesheets/blueprint/_colors.scss +1 -0
- data/frameworks/blueprint/stylesheets/blueprint/_form.scss +3 -1
- data/frameworks/blueprint/stylesheets/blueprint/_liquid.scss +1 -0
- data/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss +1 -0
- data/frameworks/blueprint/stylesheets/blueprint/_typography.scss +3 -3
- data/frameworks/compass/stylesheets/compass/css3/_border-radius.scss +63 -3
- data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +19 -7
- data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +11 -12
- data/frameworks/compass/stylesheets/compass/css3/_gradient.scss +3 -1
- data/frameworks/compass/stylesheets/compass/css3/_opacity.scss +1 -9
- data/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss +1 -4
- data/frameworks/compass/stylesheets/compass/utilities/lists/_horizontal-list.scss +10 -9
- data/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss +10 -10
- data/frameworks/rails/stylesheets/_rails.scss +1 -0
- data/frameworks/rails/stylesheets/rails/_pagination.scss +1 -0
- data/frameworks/rails/stylesheets/rails/_scaffolding.scss +56 -0
- data/lib/compass/app_integration/rails.rb +7 -0
- data/lib/compass/app_integration/rails/installer.rb +13 -16
- data/lib/compass/commands/create_project.rb +5 -0
- data/lib/compass/commands/project_stats.rb +3 -2
- data/lib/compass/commands/stamp_pattern.rb +1 -1
- data/lib/compass/exec/project_options_parser.rb +4 -4
- data/lib/compass/installers/base.rb +16 -3
- data/lib/compass/installers/manifest.rb +1 -0
- data/lib/compass/installers/manifest_installer.rb +5 -3
- data/lib/compass/sass_extensions/functions.rb +7 -1
- data/lib/compass/sass_extensions/functions/constants.rb +17 -0
- data/lib/compass/sass_extensions/functions/gradient_support.rb +0 -16
- data/lib/compass/sass_extensions/functions/inline_image.rb +3 -5
- data/lib/compass/sass_extensions/functions/lists.rb +9 -0
- data/lib/compass/sass_extensions/functions/urls.rb +6 -2
- data/test/fixtures/stylesheets/blueprint/config.rb +5 -0
- data/test/fixtures/stylesheets/blueprint/css/screen.css +5 -5
- data/test/fixtures/stylesheets/blueprint/css/single-imports/buttons.css +56 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/colors.css +80 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +2 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css +30 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/form.css +40 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/grid.css +437 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/ie.css +60 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css +43 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css +40 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css +653 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/print.css +60 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css +116 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/reset.css +66 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css +439 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css +45 -0
- data/test/fixtures/stylesheets/blueprint/css/{typography.css → single-imports/typography.css} +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/doc.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/email.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/external.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/feed.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/im.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/visited.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/xls.png +0 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss +4 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss +34 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss +3 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss +3 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss +5 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss +3 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss +3 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss +3 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss +13 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss +3 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss +5 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss +5 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss +1 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss +3 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss +5 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss +3 -0
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/utilities.scss +3 -0
- data/test/fixtures/stylesheets/compass/config.rb +5 -0
- data/test/fixtures/stylesheets/compass/css/border_radius.css +23 -0
- data/test/fixtures/stylesheets/compass/css/gradients.css +38 -19
- data/test/fixtures/stylesheets/compass/css/images.css +8 -0
- data/test/fixtures/stylesheets/compass/css/lists.css +100 -0
- data/test/fixtures/stylesheets/compass/css/utilities.css +1 -1
- data/test/fixtures/stylesheets/compass/images/4x6.png +0 -0
- data/test/fixtures/stylesheets/compass/sass/border_radius.scss +5 -0
- data/test/fixtures/stylesheets/compass/sass/images.scss +9 -0
- data/test/fixtures/stylesheets/compass/sass/lists.scss +9 -0
- metadata +112 -13
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/utilities.sass +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/typography.sass +0 -3
@@ -0,0 +1,45 @@
|
|
1
|
+
.box {
|
2
|
+
padding: 1.5em;
|
3
|
+
margin-bottom: 1.5em;
|
4
|
+
background: #e5ecf9; }
|
5
|
+
|
6
|
+
div.border {
|
7
|
+
padding-right: 4px;
|
8
|
+
margin-right: 5px;
|
9
|
+
border-right: 1px solid #eeeeee; }
|
10
|
+
|
11
|
+
div.colborder {
|
12
|
+
padding-right: 24px;
|
13
|
+
margin-right: 25px;
|
14
|
+
border-right: 1px solid #eeeeee; }
|
15
|
+
|
16
|
+
hr {
|
17
|
+
background: #dddddd;
|
18
|
+
color: #dddddd;
|
19
|
+
clear: both;
|
20
|
+
float: none;
|
21
|
+
width: 100%;
|
22
|
+
height: 0.1em;
|
23
|
+
margin: 0 0 1.45em;
|
24
|
+
border: none; }
|
25
|
+
|
26
|
+
hr.space {
|
27
|
+
background: #dddddd;
|
28
|
+
color: #dddddd;
|
29
|
+
clear: both;
|
30
|
+
float: none;
|
31
|
+
width: 100%;
|
32
|
+
height: 0.1em;
|
33
|
+
margin: 0 0 1.45em;
|
34
|
+
border: none;
|
35
|
+
background: white;
|
36
|
+
color: white;
|
37
|
+
visibility: hidden; }
|
38
|
+
|
39
|
+
form.inline {
|
40
|
+
line-height: 3; }
|
41
|
+
form.inline p {
|
42
|
+
margin-bottom: 0; }
|
43
|
+
|
44
|
+
body {
|
45
|
+
margin: 1.5em 0; }
|
data/test/fixtures/stylesheets/blueprint/css/{typography.css → single-imports/typography.css}
RENAMED
File without changes
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,34 @@
|
|
1
|
+
@import "blueprint/colors";
|
2
|
+
|
3
|
+
.font-color { color: $font-color; }
|
4
|
+
.quiet-color { color: $quiet-color; }
|
5
|
+
.loud-color { color: $loud-color; }
|
6
|
+
.header-color { color: $header-color; }
|
7
|
+
.alt-text-color { color: $alt-text-color; }
|
8
|
+
|
9
|
+
.link-color { color: $link-color; }
|
10
|
+
.link-hover-color { color: $link-hover-color; }
|
11
|
+
.link-focus-color { color: $link-focus-color; }
|
12
|
+
.link-active-color { color: $link-active-color; }
|
13
|
+
.link-visited-color { color: $link-visited-color; }
|
14
|
+
|
15
|
+
.feedback-border-color { color: $feedback-border-color; }
|
16
|
+
.success-color { color: $success-color; }
|
17
|
+
.success-bg-color { color: $success-bg-color; }
|
18
|
+
.success-border-color { color: $success-border-color; }
|
19
|
+
.notice-color { color: $notice-color; }
|
20
|
+
.notice-bg-color { color: $notice-bg-color; }
|
21
|
+
.notice-border-color { color: $notice-border-color; }
|
22
|
+
.error-color { color: $error-color; }
|
23
|
+
.error-bg-color { color: $error-bg-color; }
|
24
|
+
.error-border-color { color: $error-border-color; }
|
25
|
+
|
26
|
+
.highlight-color { color: $highlight-color; }
|
27
|
+
.added-color { color: $added-color; }
|
28
|
+
.added-bg-color { color: $added-bg-color; }
|
29
|
+
.removed-color { color: $removed-color; }
|
30
|
+
.removed-bg-color { color: $removed-bg-color; }
|
31
|
+
|
32
|
+
.blueprint-table-header-color { color: $blueprint-table-header-color; }
|
33
|
+
.blueprint-table-stripe-color { color: $blueprint-table-stripe-color; }
|
34
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
@import "blueprint/link-icons";
|
2
|
+
|
3
|
+
// This turns link icons on for all links. You can change the scoping selector from
|
4
|
+
// body to something more specific if you prefer.
|
5
|
+
body {
|
6
|
+
@include link-icons;
|
7
|
+
// Use this class if a link gets an icon when it shouldn't.
|
8
|
+
a.noicon {
|
9
|
+
@include no-link-icon; }
|
10
|
+
// Not all links have a url structure that can be detected,
|
11
|
+
// So you can set them explicitly yourself like so:
|
12
|
+
a#this-is-a-pdf-link {
|
13
|
+
@include link-icon("pdf.png"); } }
|
@@ -0,0 +1 @@
|
|
1
|
+
@import "blueprint/reset";
|
@@ -0,0 +1,23 @@
|
|
1
|
+
.simple {
|
2
|
+
-webkit-border-radius: 4px 4px;
|
3
|
+
-moz-border-radius: 4px / 4px;
|
4
|
+
-o-border-radius: 4px / 4px;
|
5
|
+
-ms-border-radius: 4px / 4px;
|
6
|
+
-khtml-border-radius: 4px / 4px;
|
7
|
+
border-radius: 4px / 4px; }
|
8
|
+
|
9
|
+
.compound {
|
10
|
+
-webkit-border-radius: 2px 3px;
|
11
|
+
-moz-border-radius: 2px 5px / 3px 6px;
|
12
|
+
-o-border-radius: 2px 5px / 3px 6px;
|
13
|
+
-ms-border-radius: 2px 5px / 3px 6px;
|
14
|
+
-khtml-border-radius: 2px 5px / 3px 6px;
|
15
|
+
border-radius: 2px 5px / 3px 6px; }
|
16
|
+
|
17
|
+
.crazy {
|
18
|
+
-webkit-border-radius: 1px 2px;
|
19
|
+
-moz-border-radius: 1px 3px 5px 7px / 2px 4px 6px 8px;
|
20
|
+
-o-border-radius: 1px 3px 5px 7px / 2px 4px 6px 8px;
|
21
|
+
-ms-border-radius: 1px 3px 5px 7px / 2px 4px 6px 8px;
|
22
|
+
-khtml-border-radius: 1px 3px 5px 7px / 2px 4px 6px 8px;
|
23
|
+
border-radius: 1px 3px 5px 7px / 2px 4px 6px 8px; }
|
@@ -1,75 +1,94 @@
|
|
1
1
|
.linear-1 {
|
2
2
|
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #dddddd), color-stop(100%, #aaaaaa));
|
3
|
-
background-image: -moz-linear-gradient(top, #dddddd 0%, #aaaaaa 100%);
|
3
|
+
background-image: -moz-linear-gradient(top, #dddddd 0%, #aaaaaa 100%);
|
4
|
+
background-image: linear-gradient(top, #dddddd 0%, #aaaaaa 100%); }
|
4
5
|
|
5
6
|
.linear-2 {
|
6
7
|
background-image: -webkit-gradient(linear, 0% 0%, 100% 0%, color-stop(0%, #dddddd), color-stop(100%, #aaaaaa));
|
7
|
-
background-image: -moz-linear-gradient(left, #dddddd 0%, #aaaaaa 100%);
|
8
|
+
background-image: -moz-linear-gradient(left, #dddddd 0%, #aaaaaa 100%);
|
9
|
+
background-image: linear-gradient(left, #dddddd 0%, #aaaaaa 100%); }
|
8
10
|
|
9
11
|
.linear-3 {
|
10
12
|
background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0%, #dddddd), color-stop(100%, #aaaaaa));
|
11
|
-
background-image: -moz-linear-gradient(top left, #dddddd 0%, #aaaaaa 100%);
|
13
|
+
background-image: -moz-linear-gradient(top left, #dddddd 0%, #aaaaaa 100%);
|
14
|
+
background-image: linear-gradient(top left, #dddddd 0%, #aaaaaa 100%); }
|
12
15
|
|
13
16
|
.linear-4 {
|
14
17
|
background-image: -webkit-gradient(linear, 100% 0%, 0% 100%, color-stop(0%, #dddddd), color-stop(100%, #aaaaaa));
|
15
|
-
background-image: -moz-linear-gradient(top right, #dddddd 0%, #aaaaaa 100%);
|
18
|
+
background-image: -moz-linear-gradient(top right, #dddddd 0%, #aaaaaa 100%);
|
19
|
+
background-image: linear-gradient(top right, #dddddd 0%, #aaaaaa 100%); }
|
16
20
|
|
17
21
|
.linear-5 {
|
18
22
|
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #dddddd), color-stop(50%, #cccccc), color-stop(100%, #aaaaaa));
|
19
|
-
background-image: -moz-linear-gradient(top, #dddddd 0%, #cccccc 50%, #aaaaaa 100%);
|
23
|
+
background-image: -moz-linear-gradient(top, #dddddd 0%, #cccccc 50%, #aaaaaa 100%);
|
24
|
+
background-image: linear-gradient(top, #dddddd 0%, #cccccc 50%, #aaaaaa 100%); }
|
20
25
|
|
21
26
|
.linear-6 {
|
22
27
|
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #dddddd), color-stop(20%, #cccccc), color-stop(100%, #aaaaaa));
|
23
|
-
background-image: -moz-linear-gradient(top, #dddddd 0%, #cccccc 20%, #aaaaaa 100%);
|
28
|
+
background-image: -moz-linear-gradient(top, #dddddd 0%, #cccccc 20%, #aaaaaa 100%);
|
29
|
+
background-image: linear-gradient(top, #dddddd 0%, #cccccc 20%, #aaaaaa 100%); }
|
24
30
|
|
25
31
|
.linear-7 {
|
26
32
|
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #dddddd), color-stop(20%, #cccccc), color-stop(60%, #eeeeee), color-stop(100%, #aaaaaa));
|
27
|
-
background-image: -moz-linear-gradient(top, #dddddd 0%, #cccccc 20%, #eeeeee 60%, #aaaaaa 100%);
|
33
|
+
background-image: -moz-linear-gradient(top, #dddddd 0%, #cccccc 20%, #eeeeee 60%, #aaaaaa 100%);
|
34
|
+
background-image: linear-gradient(top, #dddddd 0%, #cccccc 20%, #eeeeee 60%, #aaaaaa 100%); }
|
28
35
|
|
29
36
|
.linear-8 {
|
30
37
|
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(80%, #dddddd), color-stop(100%, #aaaaaa));
|
31
|
-
background-image: -moz-linear-gradient(top, #dddddd 80%, #aaaaaa 100%);
|
38
|
+
background-image: -moz-linear-gradient(top, #dddddd 80%, #aaaaaa 100%);
|
39
|
+
background-image: linear-gradient(top, #dddddd 80%, #aaaaaa 100%); }
|
32
40
|
|
33
41
|
.linear-9 {
|
34
42
|
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #dddddd), color-stop(100%, #aaaaaa));
|
35
|
-
background-image: -moz-linear-gradient(top, #dddddd 0%, #aaaaaa 20%);
|
43
|
+
background-image: -moz-linear-gradient(top, #dddddd 0%, #aaaaaa 20%);
|
44
|
+
background-image: linear-gradient(top, #dddddd 0%, #aaaaaa 20%); }
|
36
45
|
|
37
46
|
.linear-10 {
|
38
47
|
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(80%, #dddddd), color-stop(100%, #aaaaaa));
|
39
|
-
background-image: -moz-linear-gradient(top, #dddddd 40%, #aaaaaa 50%);
|
48
|
+
background-image: -moz-linear-gradient(top, #dddddd 40%, #aaaaaa 50%);
|
49
|
+
background-image: linear-gradient(top, #dddddd 40%, #aaaaaa 50%); }
|
40
50
|
|
41
51
|
.linear-11 {
|
42
52
|
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(80%, #dddddd), color-stop(90%, #000000), color-stop(100%, #aaaaaa));
|
43
|
-
background-image: -moz-linear-gradient(top, #dddddd 40%, #000000 45%, #aaaaaa 50%);
|
53
|
+
background-image: -moz-linear-gradient(top, #dddddd 40%, #000000 45%, #aaaaaa 50%);
|
54
|
+
background-image: linear-gradient(top, #dddddd 40%, #000000 45%, #aaaaaa 50%); }
|
44
55
|
|
45
56
|
.radial-1 {
|
46
57
|
background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, color-stop(0%, #dddddd), color-stop(100%, #aaaaaa));
|
47
|
-
background-image: -moz-radial-gradient(center center, circle, #dddddd 0%, #aaaaaa 100%);
|
58
|
+
background-image: -moz-radial-gradient(center center, circle, #dddddd 0%, #aaaaaa 100%);
|
59
|
+
background-image: radial-gradient(center center, circle, #dddddd 0%, #aaaaaa 100%); }
|
48
60
|
|
49
61
|
.radial-2 {
|
50
62
|
background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, color-stop(0%, #dddddd), color-stop(100%, #aaaaaa));
|
51
|
-
background-image: -moz-radial-gradient(center center, circle, #dddddd 0%, #aaaaaa 100%);
|
63
|
+
background-image: -moz-radial-gradient(center center, circle, #dddddd 0%, #aaaaaa 100%);
|
64
|
+
background-image: radial-gradient(center center, circle, #dddddd 0%, #aaaaaa 100%); }
|
52
65
|
|
53
66
|
.radial-3 {
|
54
67
|
background-image: -webkit-gradient(radial, 50% 0%, 0, 50% 0%, 100, color-stop(0%, #dddddd), color-stop(100%, #aaaaaa));
|
55
|
-
background-image: -moz-radial-gradient(top center, circle, #dddddd 0%, #aaaaaa 100%);
|
68
|
+
background-image: -moz-radial-gradient(top center, circle, #dddddd 0%, #aaaaaa 100%);
|
69
|
+
background-image: radial-gradient(top center, circle, #dddddd 0%, #aaaaaa 100%); }
|
56
70
|
|
57
71
|
.radial-4 {
|
58
72
|
background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, color-stop(0%, #dddddd), color-stop(100%, #aaaaaa));
|
59
|
-
background-image: -moz-radial-gradient(center center, circle, #dddddd 0%, #aaaaaa 100%);
|
73
|
+
background-image: -moz-radial-gradient(center center, circle, #dddddd 0%, #aaaaaa 100%);
|
74
|
+
background-image: radial-gradient(center center, circle, #dddddd 0%, #aaaaaa 100%); }
|
60
75
|
|
61
76
|
.radial-5 {
|
62
77
|
background-image: -webkit-gradient(radial, 50% 0%, 0, 50% 0%, 100, color-stop(0%, #dddddd), color-stop(100%, #aaaaaa));
|
63
|
-
background-image: -moz-radial-gradient(top center, circle, #dddddd 0%, #aaaaaa 100%);
|
78
|
+
background-image: -moz-radial-gradient(top center, circle, #dddddd 0%, #aaaaaa 100%);
|
79
|
+
background-image: radial-gradient(top center, circle, #dddddd 0%, #aaaaaa 100%); }
|
64
80
|
|
65
81
|
.radial-6 {
|
66
82
|
background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 50, color-stop(40%, #dddddd), color-stop(100%, #aaaaaa));
|
67
|
-
background-image: -moz-radial-gradient(center center, circle, #dddddd 20px, #aaaaaa 50px);
|
83
|
+
background-image: -moz-radial-gradient(center center, circle, #dddddd 20px, #aaaaaa 50px);
|
84
|
+
background-image: radial-gradient(center center, circle, #dddddd 20px, #aaaaaa 50px); }
|
68
85
|
|
69
86
|
.radial-7 {
|
70
87
|
background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 50, color-stop(20%, #dddddd), color-stop(100%, #aaaaaa));
|
71
|
-
background-image: -moz-radial-gradient(center center, circle, #dddddd 20%, #aaaaaa 50px);
|
88
|
+
background-image: -moz-radial-gradient(center center, circle, #dddddd 20%, #aaaaaa 50px);
|
89
|
+
background-image: radial-gradient(center center, circle, #dddddd 20%, #aaaaaa 50px); }
|
72
90
|
|
73
91
|
.alpha-linear {
|
74
92
|
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(80%, rgba(255, 255, 255, 0)), color-stop(90%, rgba(255, 127, 127, 0.5)), color-stop(100%, #ffffff));
|
75
|
-
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 40%, rgba(255, 127, 127, 0.5) 45%, #ffffff 50%);
|
93
|
+
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 40%, rgba(255, 127, 127, 0.5) 45%, #ffffff 50%);
|
94
|
+
background-image: linear-gradient(top, rgba(255, 255, 255, 0) 40%, rgba(255, 127, 127, 0.5) 45%, #ffffff 50%); }
|
@@ -0,0 +1,100 @@
|
|
1
|
+
ul.horizontal {
|
2
|
+
margin: 0;
|
3
|
+
padding: 0;
|
4
|
+
border: 0;
|
5
|
+
outline: 0;
|
6
|
+
overflow: hidden;
|
7
|
+
display: inline-block; }
|
8
|
+
ul.horizontal {
|
9
|
+
display: block; }
|
10
|
+
ul.horizontal li {
|
11
|
+
list-style-image: none;
|
12
|
+
list-style-type: none;
|
13
|
+
margin-left: 0px;
|
14
|
+
white-space: nowrap;
|
15
|
+
display: inline;
|
16
|
+
float: left;
|
17
|
+
padding-left: 4px;
|
18
|
+
padding-right: 4px; }
|
19
|
+
ul.horizontal li:first-child, ul.horizontal li.first {
|
20
|
+
padding-left: 0px; }
|
21
|
+
ul.horizontal li:last-child, ul.horizontal li.last {
|
22
|
+
padding-right: 0px; }
|
23
|
+
|
24
|
+
ul.wide-horizontal {
|
25
|
+
margin: 0;
|
26
|
+
padding: 0;
|
27
|
+
border: 0;
|
28
|
+
outline: 0;
|
29
|
+
overflow: hidden;
|
30
|
+
display: inline-block; }
|
31
|
+
ul.wide-horizontal {
|
32
|
+
display: block; }
|
33
|
+
ul.wide-horizontal li {
|
34
|
+
list-style-image: none;
|
35
|
+
list-style-type: none;
|
36
|
+
margin-left: 0px;
|
37
|
+
white-space: nowrap;
|
38
|
+
display: inline;
|
39
|
+
float: left;
|
40
|
+
padding-left: 10px;
|
41
|
+
padding-right: 10px; }
|
42
|
+
ul.wide-horizontal li:first-child, ul.wide-horizontal li.first {
|
43
|
+
padding-left: 0px; }
|
44
|
+
ul.wide-horizontal li:last-child, ul.wide-horizontal li.last {
|
45
|
+
padding-right: 0px; }
|
46
|
+
|
47
|
+
ul.right-horizontal {
|
48
|
+
margin: 0;
|
49
|
+
padding: 0;
|
50
|
+
border: 0;
|
51
|
+
outline: 0;
|
52
|
+
overflow: hidden;
|
53
|
+
display: inline-block; }
|
54
|
+
ul.right-horizontal {
|
55
|
+
display: block; }
|
56
|
+
ul.right-horizontal li {
|
57
|
+
list-style-image: none;
|
58
|
+
list-style-type: none;
|
59
|
+
margin-left: 0px;
|
60
|
+
white-space: nowrap;
|
61
|
+
display: inline;
|
62
|
+
float: right;
|
63
|
+
padding-left: 4px;
|
64
|
+
padding-right: 4px; }
|
65
|
+
ul.right-horizontal li:first-child, ul.right-horizontal li.first {
|
66
|
+
padding-right: 0px; }
|
67
|
+
ul.right-horizontal li:last-child, ul.right-horizontal li.last {
|
68
|
+
padding-left: 0px; }
|
69
|
+
|
70
|
+
ul.inline {
|
71
|
+
list-style-type: none; }
|
72
|
+
ul.inline, ul.inline li {
|
73
|
+
margin: 0px;
|
74
|
+
padding: 0px;
|
75
|
+
display: inline; }
|
76
|
+
|
77
|
+
ul.comma {
|
78
|
+
list-style-type: none; }
|
79
|
+
ul.comma, ul.comma li {
|
80
|
+
margin: 0px;
|
81
|
+
padding: 0px;
|
82
|
+
display: inline; }
|
83
|
+
ul.comma li:after {
|
84
|
+
content: ", "; }
|
85
|
+
ul.comma li:last-child:after, ul.comma li.last:after {
|
86
|
+
content: ""; }
|
87
|
+
|
88
|
+
ul.no-bullets {
|
89
|
+
list-style: none; }
|
90
|
+
ul.no-bullets li {
|
91
|
+
list-style-image: none;
|
92
|
+
list-style-type: none;
|
93
|
+
margin-left: 0px; }
|
94
|
+
|
95
|
+
ul.pretty {
|
96
|
+
margin-left: 0; }
|
97
|
+
ul.pretty li {
|
98
|
+
padding-left: 14px;
|
99
|
+
background: url('/images/4x6.png?busted=true') no-repeat 4px 7px;
|
100
|
+
list-style-type: none; }
|