flutie 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/public/stylesheets/defaults.css +1 -1
- data/public/stylesheets/forms.css +27 -27
- data/public/stylesheets/lists.css +2 -2
- data/public/stylesheets/type.css +5 -5
- metadata +4 -4
@@ -12,7 +12,7 @@ h1, h2, h3, h4, h5, h6 {
|
|
12
12
|
/* Success, error & notice boxes for messages and errors. */
|
13
13
|
div.error, div.notice, div.success,
|
14
14
|
#flash_failure, #flash_success, #flash_notice {
|
15
|
-
padding: .8em;
|
15
|
+
padding: 0.8em;
|
16
16
|
margin-bottom: 1em;
|
17
17
|
border: 1px solid #ddd;
|
18
18
|
-moz-border-radius: 8px;
|
@@ -1,37 +1,37 @@
|
|
1
1
|
/* Forms */
|
2
2
|
|
3
3
|
input[type="submit"]::-moz-focus-inner {
|
4
|
-
|
5
|
-
} /*removes dotted outline on submit buttons when clicking in firefox */
|
4
|
+
border: none;
|
5
|
+
} /*removes dotted outline on submit buttons when clicking in firefox */
|
6
6
|
|
7
|
-
form ol {
|
8
|
-
|
9
|
-
|
10
|
-
}
|
11
|
-
form ol ol { margin-left: 0; }
|
12
|
-
form ol li { margin: 0 0 1em 0; list-style-position: outside; }
|
13
|
-
form ol ol li { margin: 0 0 .25em 0; list-style-position: outside; } /*list-style-position fixes IE label margin bug*/
|
7
|
+
form ol {
|
8
|
+
list-style: none;
|
9
|
+
margin: 0 0 1em 0;
|
10
|
+
}
|
11
|
+
form ol ol { margin-left: 0; }
|
12
|
+
form ol li { margin: 0 0 1em 0; list-style-position: outside; }
|
13
|
+
form ol ol li { margin: 0 0 .25em 0; list-style-position: outside; } /*list-style-position fixes IE label margin bug*/
|
14
14
|
|
15
|
-
form ol li.error input { background: #FBE3E4; }
|
16
|
-
p.inline-errors { color: #D12F19; }
|
17
|
-
form ol li.file {
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
}
|
15
|
+
form ol li.error input { background: #FBE3E4; }
|
16
|
+
p.inline-errors { color: #D12F19; }
|
17
|
+
form ol li.file {
|
18
|
+
background: #e1e1e1;
|
19
|
+
border: 1px solid #c8c8c8;
|
20
|
+
padding: 10px;
|
21
|
+
}
|
22
22
|
|
23
|
-
form abbr { border-bottom: 0; }
|
23
|
+
form abbr { border-bottom: 0; }
|
24
24
|
|
25
|
-
label { display: block; }
|
26
|
-
.required label { font-weight: bold; }
|
27
|
-
.checkbox_field label, .radio_field label { font-weight: normal; }
|
25
|
+
label { display: block; }
|
26
|
+
.required label { font-weight: bold; }
|
27
|
+
.checkbox_field label, .radio_field label { font-weight: normal; }
|
28
28
|
|
29
|
-
a.cancel { color: #7d0d0d; }
|
30
|
-
.inline-hints {
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
}
|
29
|
+
a.cancel { color: #7d0d0d; }
|
30
|
+
.inline-hints {
|
31
|
+
font-size: 0.8em;
|
32
|
+
color: #666;
|
33
|
+
margin-bottom: 0.25em;
|
34
|
+
}
|
35
35
|
|
36
36
|
/* Fieldsets */
|
37
37
|
fieldset {
|
@@ -97,7 +97,7 @@ textarea {
|
|
97
97
|
/* Select fields */
|
98
98
|
fieldset .select select {
|
99
99
|
width:200px;
|
100
|
-
font-size: .9em;
|
100
|
+
font-size: 0.9em;
|
101
101
|
}
|
102
102
|
optgroup { margin: 0 0 .5em 0; }
|
103
103
|
|
data/public/stylesheets/type.css
CHANGED
@@ -15,24 +15,24 @@ h2 {
|
|
15
15
|
h3 {
|
16
16
|
font-size: 1.3em;
|
17
17
|
line-height: 1;
|
18
|
-
margin-bottom: .25em;
|
18
|
+
margin-bottom: 0.25em;
|
19
19
|
}
|
20
20
|
h4 {
|
21
21
|
font-size: 1.1em;
|
22
22
|
line-height: 1.25;
|
23
|
-
margin-bottom: .25em;
|
23
|
+
margin-bottom: 0.25em;
|
24
24
|
}
|
25
25
|
h5 {
|
26
26
|
font-size: 1em;
|
27
|
-
margin-bottom: .25em;
|
27
|
+
margin-bottom: 0.25em;
|
28
28
|
}
|
29
29
|
h6 {
|
30
30
|
font-size: 1em;
|
31
|
-
margin-bottom: .25em;
|
31
|
+
margin-bottom: 0.25em;
|
32
32
|
}
|
33
33
|
|
34
34
|
/* Text elements */
|
35
|
-
|
35
|
+
p { margin-bottom: 0.5em; }
|
36
36
|
p.last { margin-bottom: 0; }
|
37
37
|
p img {
|
38
38
|
float: left;
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flutie
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 17
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 3
|
10
|
+
version: 1.0.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Chad Pytel
|
@@ -19,7 +19,7 @@ autorequire:
|
|
19
19
|
bindir: bin
|
20
20
|
cert_chain: []
|
21
21
|
|
22
|
-
date: 2010-07-
|
22
|
+
date: 2010-07-21 00:00:00 -04:00
|
23
23
|
default_executable:
|
24
24
|
dependencies: []
|
25
25
|
|