Fix failing test cases.
This commit is contained in:
parent
0a5633a469
commit
1170d324a7
@ -12,6 +12,8 @@ class ConfigurationTest < Test::Unit::TestCase
|
|||||||
sass_dir = "sass"
|
sass_dir = "sass"
|
||||||
images_dir = "img"
|
images_dir = "img"
|
||||||
javascripts_dir = "js"
|
javascripts_dir = "js"
|
||||||
|
# To enable relative image paths using the images_url() function:
|
||||||
|
# http_images_path = :relative
|
||||||
CONFIG
|
CONFIG
|
||||||
|
|
||||||
Compass.configuration.parse_string(contents, "test_parse")
|
Compass.configuration.parse_string(contents, "test_parse")
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
body {
|
body {
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
|
font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
font-size: 75%; }
|
font-size: 75%; }
|
||||||
|
|
||||||
@ -31,8 +31,7 @@ h4 {
|
|||||||
color: #222222;
|
color: #222222;
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
line-height: 1.25;
|
line-height: 1.25;
|
||||||
margin-bottom: 1.25em;
|
margin-bottom: 1.25em; }
|
||||||
height: 1.25em; }
|
|
||||||
|
|
||||||
h5 {
|
h5 {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
@ -52,15 +51,16 @@ h2 img, h3 img, h4 img, h5 img, h6 img {
|
|||||||
|
|
||||||
p {
|
p {
|
||||||
margin: 0 0 1.5em; }
|
margin: 0 0 1.5em; }
|
||||||
p img {
|
p img.left {
|
||||||
display: inline;
|
display: inline;
|
||||||
float: left;
|
float: left;
|
||||||
margin: 1.5em 1.5em 1.5em 0;
|
margin: 1.5em 1.5em 1.5em 0;
|
||||||
padding: 0; }
|
padding: 0; }
|
||||||
p img.right {
|
p img.right {
|
||||||
display: inline;
|
display: inline;
|
||||||
float: right;
|
float: right;
|
||||||
margin: 1.5em 0 1.5em 1.5em; }
|
margin: 1.5em 0 1.5em 1.5em;
|
||||||
|
padding: 0; }
|
||||||
|
|
||||||
a {
|
a {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
@ -102,13 +102,11 @@ address {
|
|||||||
del {
|
del {
|
||||||
color: #666; }
|
color: #666; }
|
||||||
|
|
||||||
pre, code {
|
pre {
|
||||||
margin: 1.5em 0;
|
margin: 1.5em 0;
|
||||||
white-space: pre;
|
white-space: pre; }
|
||||||
font: 1em 'andale mono', 'lucida console', monospace;
|
|
||||||
line-height: 1.5; }
|
|
||||||
|
|
||||||
tt {
|
pre, code, tt {
|
||||||
font: 1em 'andale mono', 'lucida console', monospace;
|
font: 1em 'andale mono', 'lucida console', monospace;
|
||||||
line-height: 1.5; }
|
line-height: 1.5; }
|
||||||
|
|
||||||
@ -136,15 +134,16 @@ table {
|
|||||||
width: 100%; }
|
width: 100%; }
|
||||||
|
|
||||||
th {
|
th {
|
||||||
font-weight: bold;
|
font-weight: bold; }
|
||||||
background: #C3D9FF;
|
|
||||||
padding: 4px 10px 4px 5px; }
|
|
||||||
|
|
||||||
td {
|
thead th {
|
||||||
|
background: #c3d9ff; }
|
||||||
|
|
||||||
|
th, td, caption {
|
||||||
padding: 4px 10px 4px 5px; }
|
padding: 4px 10px 4px 5px; }
|
||||||
|
|
||||||
tr.even td {
|
tr.even td {
|
||||||
background: #E5ECF9; }
|
background: #e5ecf9; }
|
||||||
|
|
||||||
tfoot {
|
tfoot {
|
||||||
font-style: italic; }
|
font-style: italic; }
|
||||||
|
Loading…
Reference in New Issue
Block a user