masterview_generator 0.2.5 → 0.3.0
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/templates/color-scheme.css +9 -0
- data/templates/sidebox.css +25 -15
- data/templates/style.css +6 -0
- metadata +2 -2
data/templates/color-scheme.css
CHANGED
@@ -68,4 +68,13 @@ h1, table, td, th, #header, .sidebar, .sidebar h2
|
|
68
68
|
|
69
69
|
#footer div {
|
70
70
|
color: #008500;
|
71
|
+
}
|
72
|
+
|
73
|
+
.config_info .section_header {
|
74
|
+
/* Text Color: */ color: #008500;
|
75
|
+
/* Background Color (darker): */ background-color: #F3FFED;
|
76
|
+
}
|
77
|
+
.config_info tr.section_header {
|
78
|
+
/* Background Color (darker): */ background-color: #ffe4c4;
|
79
|
+
/* Border Color: */ border-color: #008500;
|
71
80
|
}
|
data/templates/sidebox.css
CHANGED
@@ -15,6 +15,16 @@
|
|
15
15
|
clear: right;
|
16
16
|
}
|
17
17
|
|
18
|
+
.content {
|
19
|
+
text-align: justify;
|
20
|
+
line-height: 1.5em;
|
21
|
+
margin-top: 0;
|
22
|
+
margin-right: 2em; /* IE layout broke in small windows, so reduced from 14em to 2em */
|
23
|
+
margin-bottom: 0;
|
24
|
+
margin-left: 14em;
|
25
|
+
padding: 0 1em 1ex 1em;
|
26
|
+
}
|
27
|
+
|
18
28
|
/* For Mozilla-based (CSS2-fully complaint) browsers only: */
|
19
29
|
|
20
30
|
[class~="LHS"] {
|
@@ -25,6 +35,9 @@
|
|
25
35
|
margin-right: 5mm;
|
26
36
|
}
|
27
37
|
|
38
|
+
[class~="content"] {
|
39
|
+
margin-right: 14em; /* allows one to use RHS sidebar too */
|
40
|
+
}
|
28
41
|
|
29
42
|
/* ###### Body Text ###### */
|
30
43
|
|
@@ -50,7 +63,7 @@ h1 {
|
|
50
63
|
padding-bottom: 0.5ex;
|
51
64
|
}
|
52
65
|
|
53
|
-
h2 {
|
66
|
+
h2 {
|
54
67
|
font-size: 120%;
|
55
68
|
}
|
56
69
|
|
@@ -59,13 +72,6 @@ img {
|
|
59
72
|
}
|
60
73
|
|
61
74
|
|
62
|
-
.content {
|
63
|
-
text-align: justify;
|
64
|
-
line-height: 1.5em;
|
65
|
-
margin: 0 14em 0 14em;
|
66
|
-
padding: 0 1em 1ex 1em;
|
67
|
-
}
|
68
|
-
|
69
75
|
.content p {
|
70
76
|
padding-bottom: 2ex;
|
71
77
|
}
|
@@ -75,7 +81,7 @@ img {
|
|
75
81
|
font-size: 90%;
|
76
82
|
}
|
77
83
|
|
78
|
-
.record {
|
84
|
+
.record {
|
79
85
|
clear: none;
|
80
86
|
}
|
81
87
|
|
@@ -92,11 +98,11 @@ td,th{
|
|
92
98
|
vertical-align:top;
|
93
99
|
}
|
94
100
|
|
95
|
-
a {
|
101
|
+
a {
|
96
102
|
text-decoration: none;
|
97
103
|
}
|
98
104
|
|
99
|
-
a:hover {
|
105
|
+
a:hover {
|
100
106
|
text-decoration: underline;
|
101
107
|
}
|
102
108
|
|
@@ -123,8 +129,8 @@ div.sidebar {
|
|
123
129
|
border-style: solid none solid none;
|
124
130
|
border-width: 2px 0 2px 0;
|
125
131
|
width: 12em;
|
126
|
-
margin-top: 0;
|
127
|
-
margin-bottom: 1.25ex;
|
132
|
+
margin-top: 0;
|
133
|
+
margin-bottom: 1.25ex;
|
128
134
|
}
|
129
135
|
|
130
136
|
.sidebar h2 {
|
@@ -142,13 +148,13 @@ div.sidebar {
|
|
142
148
|
padding: 0.35ex 0.35em 0.35ex 0.35em;
|
143
149
|
}
|
144
150
|
|
145
|
-
.sidebar a:hover {
|
151
|
+
.sidebar a:hover {
|
146
152
|
text-decoration: underline;
|
147
153
|
display: block;
|
148
154
|
padding: 0.35ex 0.35em 0.35ex 0.35em;
|
149
155
|
}
|
150
156
|
|
151
|
-
.sidebar ul {
|
157
|
+
.sidebar ul {
|
152
158
|
font-size: 85%;
|
153
159
|
line-height: 80%;
|
154
160
|
position: relative;
|
@@ -156,6 +162,10 @@ div.sidebar {
|
|
156
162
|
list-style-type: none;
|
157
163
|
}
|
158
164
|
|
165
|
+
.sidebar ul li.subsection_start {
|
166
|
+
margin-top: 6px; padding-top: 4px; border-top: 1px dashed;
|
167
|
+
}
|
168
|
+
|
159
169
|
/* ###### Footer ###### */
|
160
170
|
|
161
171
|
#footer {
|
data/templates/style.css
CHANGED
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: masterview_generator
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.
|
7
|
-
date: 2006-
|
6
|
+
version: 0.3.0
|
7
|
+
date: 2006-11-07 00:00:00 -06:00
|
8
8
|
summary: A (x)html friendly template engine for rails with the power of layouts, and partials. MasterView Generator for creating templates and scaffolding.
|
9
9
|
require_paths:
|
10
10
|
- .
|