djmaze-compass-yaml-plugin 0.9.6 → 0.9.7

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest CHANGED
@@ -6,7 +6,9 @@ Rakefile
6
6
  README.mkdn
7
7
  sass/yaml/core/_base.sass
8
8
  sass/yaml/core/_iehacks.sass
9
+ sass/yaml/core/_print_base.sass
9
10
  templates/project/base.sass
10
11
  templates/project/manifest.rb
11
12
  templates/project/patch_my_layout.sass
13
+ templates/project/print_draft.sass
12
14
  VERSION
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{compass-yaml-plugin}
5
- s.version = "0.9.6"
5
+ s.version = "0.9.7"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Chris Eppstein", "Martin Honermeyer"]
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.description = %q{"Yet Another Multicolumn Layout" (YAML) is an (X)HTML/CSS framework for creating modern and flexible floated layouts. The structure is extremely versatile in its programming and absolutely accessible for end users. http://www.yaml.de/en/home.html}
11
11
  s.email = %q{chris@eppsteins.net maze@strahlungsfrei.de}
12
12
  s.extra_rdoc_files = ["lib/yaml/compass_plugin.rb", "lib/yaml/sass_extensions.rb", "lib/yaml-css.rb", "README.mkdn"]
13
- s.files = ["lib/yaml/compass_plugin.rb", "lib/yaml/sass_extensions.rb", "lib/yaml-css.rb", "Manifest", "Rakefile", "README.mkdn", "sass/yaml/core/_base.sass", "sass/yaml/core/_iehacks.sass", "templates/project/base.sass", "templates/project/manifest.rb", "templates/project/patch_my_layout.sass", "VERSION", "compass-yaml-plugin.gemspec"]
13
+ s.files = ["lib/yaml/compass_plugin.rb", "lib/yaml/sass_extensions.rb", "lib/yaml-css.rb", "Manifest", "Rakefile", "README.mkdn", "sass/yaml/core/_base.sass", "sass/yaml/core/_iehacks.sass", "sass/yaml/core/_print_base.sass", "templates/project/base.sass", "templates/project/manifest.rb", "templates/project/patch_my_layout.sass", "templates/project/print_draft.sass", "VERSION", "compass-yaml-plugin.gemspec"]
14
14
  s.homepage = %q{http://github.com/djmaze/compass-yaml-plugin}
15
15
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Compass-YAML-plugin", "--main", "README.mkdn"]
16
16
  s.require_paths = ["lib"]
@@ -0,0 +1,108 @@
1
+ /**
2
+ * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
3
+ *
4
+ * (en) YAML core stylesheet - print layout
5
+ * (de) YAML Core-Stylesheet - Druck Layout
6
+ *
7
+ * Don't make any changes in this file!
8
+ * Your changes should be added to 'print_xyz_draft.css' drafts from 'yaml/print/' folder.
9
+ *
10
+ * @copyright Copyright 2005-2009, Dirk Jesse
11
+ * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
12
+ * YAML-C (http://www.yaml.de/en/license/license-conditions.html)
13
+ * @link http://www.yaml.de
14
+ * @package yaml
15
+ * @version 3.1
16
+ * @revision $Revision: 343 $
17
+ * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
18
+
19
+ @media print
20
+ /**
21
+ * @section basic layout preparation
22
+ * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
23
+
24
+ /* (en) change font size unit to [pt] - avoiding problems with [px] unit in Gecko based browsers */
25
+ /* (de) Wechsel der der Schriftgrößen-Maßheinheit zu [pt] - Probleme mit Maßeinheit [px] in Gecko-basierten Browsern vermeiden */
26
+ body
27
+ font-size: 10pt
28
+
29
+ /* (en) Reset Scrollbar-Fix for FF in screenlayout */
30
+ /* (de) Zurücksetzen des Scrollbar-Fix for FF aus dem Screenlayout */
31
+ html
32
+ height: auto
33
+ margin-bottom: 0
34
+
35
+ /* (en) Hide unneeded container of the screenlayout in print layout */
36
+ /* (de) Für den Druck nicht benötigte Container des Layouts abschalten */
37
+ #topnav, #nav, #search
38
+ display: none
39
+
40
+ /* (en) Disable background graphics of links */
41
+ /* (de) Abschalten evlt. vorhandener Hintergrundgrafiken zur Linkkennzeichnung */
42
+ body a[href^="http:"],
43
+ body a[href^="https:"]
44
+ padding-left: 0
45
+ background-image: none
46
+
47
+ /**
48
+ * (en) overflow:hidden Bug in print layouts
49
+ * (de) overflow:hidden Bug in Drucklayouts
50
+ *
51
+ * @bugfix
52
+ * @since 3.0
53
+ * @affected FF2.0, FF3.0, IE7
54
+ * @css-for all browsers
55
+ * @valid yes
56
+
57
+ .floatbox,
58
+ .subcolumns,
59
+ .subcolums_oldgecko
60
+ overflow: visible
61
+ display: table
62
+
63
+ /* (en) Linearising subtemplates */
64
+ /* (de) Linearisierung der Subtemplates */
65
+ .c25l, .c33l, .c38l, .c50l, .c62l, .c66l, .c75l,
66
+ .c25r, .c33r, .c38r, .c50r, .c62r, .c66r, .c75r
67
+ width: 100%
68
+ margin: 0
69
+ padding: 0
70
+ float: none !important
71
+ overflow: visible
72
+ display: table !important
73
+
74
+ .subc, .subcl, .subcr
75
+ margin: 0
76
+ padding: 0
77
+
78
+ /* (en) make .print class visible */
79
+ /* (de) .print-Klasse sichtbar schalten */
80
+ .print
81
+ position: static
82
+ left: 0
83
+
84
+ /* (en) generic class to hide elements for print */
85
+ /* (de) Allgemeine CSS Klasse, um beliebige Elemente in der Druckausgabe auszublenden */
86
+ .noprint
87
+ display: none !important
88
+
89
+
90
+ /*------------------------------------------------------------------------------------------------------*/
91
+
92
+ /* (en) Avoid page breaks right after headings */
93
+ /* (de) Vermeidung von Seitenumbrüchen direkt nach einer Überschrift */
94
+ h1,h2,h3,h4,h5,h6
95
+ page-break-after: avoid
96
+
97
+ /*------------------------------------------------------------------------------------------------------*/
98
+
99
+ /* (en) Preparation for optional column labels */
100
+ /* (de) optionale Spaltenauszeichnung */
101
+
102
+ #col1_content:before, #col2_content:before, #col3_content:before
103
+ content: ""
104
+ color: #888
105
+ background: inherit
106
+ display: block
107
+ font-weight: bold
108
+ font-size: 1.5em
@@ -6,7 +6,7 @@
6
6
  @import yaml/core/base.sass
7
7
 
8
8
  /* import print layout | Druck-Layout einbinden
9
- / @import yaml/print/print_draft.css / TODO
9
+ @import print_draft.sass
10
10
 
11
11
  /* import screen layout | Screen-Layout einbinden
12
12
  @import navigation
@@ -0,0 +1,44 @@
1
+ /**
2
+ * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
3
+ *
4
+ * (en) print stylesheet
5
+ * (de) Druck-Stylesheet
6
+ *
7
+ * @copyright Copyright 2005-2009, Dirk Jesse
8
+ * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
9
+ * YAML-C (http://www.yaml.de/en/license/license-conditions.html)
10
+ * @link http://www.yaml.de
11
+ * @package yaml
12
+ * @version 3.1
13
+ * @revision $Revision: 302 $
14
+ * @lastmodified $Date: 2008-12-14 11:23:55 +0100 (So, 14. Dez 2008) $
15
+
16
+ /* import print base styles | Basisformatierung für Drucklayout einbinden */
17
+ @import yaml/core/print_base.sass
18
+
19
+ @media print
20
+ /*------------------------------------------------------------------------------------------------------*/
21
+ /* add your print styles here */
22
+
23
+
24
+
25
+ /*------------------------------------------------------------------------------------------------------*/
26
+
27
+ /* (en) optional output of acronyms and abbreviations*/
28
+ /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen */
29
+
30
+ /*
31
+ abbr[title]:after, acronym[title]:after
32
+ content: '(' attr(title) ')'
33
+ */
34
+
35
+ /*------------------------------------------------------------------------------------------------------*/
36
+
37
+ /* (en) optional URL output of hyperlinks in print layout */
38
+ /* (de) optionale Ausgabe der URLs von Hyperlinks */
39
+ /*
40
+ a[href]:after
41
+ content: " <URL: "attr(href)">"
42
+ color: #444
43
+ background: inherit
44
+ font-style: italic
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: djmaze-compass-yaml-plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.6
4
+ version: 0.9.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Eppstein
@@ -53,9 +53,11 @@ files:
53
53
  - README.mkdn
54
54
  - sass/yaml/core/_base.sass
55
55
  - sass/yaml/core/_iehacks.sass
56
+ - sass/yaml/core/_print_base.sass
56
57
  - templates/project/base.sass
57
58
  - templates/project/manifest.rb
58
59
  - templates/project/patch_my_layout.sass
60
+ - templates/project/print_draft.sass
59
61
  - VERSION
60
62
  - compass-yaml-plugin.gemspec
61
63
  has_rdoc: false