From f46e4cab1af13831c74d3f933104cf48bf00dee1 Mon Sep 17 00:00:00 2001 From: Michelle D'Souza Date: Thu, 8 Dec 2011 13:51:44 -0500 Subject: [PATCH 1/7] STUDIO-11: Removing the space between the excerpt and the tags on the tag pages. --- wp-content/themes/fluid-studios/style.css | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/wp-content/themes/fluid-studios/style.css b/wp-content/themes/fluid-studios/style.css index 97ea623..468659b 100644 --- a/wp-content/themes/fluid-studios/style.css +++ b/wp-content/themes/fluid-studios/style.css @@ -128,7 +128,7 @@ h1.entry-title { h2.entry-title { font-size: 1.1em; } -p.entry-meta { +p.entry-meta, .home .entry-content p, .archive .entry-content p { margin-bottom: 0; } .entry-meta { @@ -138,9 +138,6 @@ p.entry-meta { .single .entry-content { padding-top: 1em; } -.home .entry-content p { - margin-bottom: 0; -} blockquote{ border-left:5px solid #eee; font-style:italic; From b21f90b6c5559e644e54c3871761bb9a0b06676c Mon Sep 17 00:00:00 2001 From: Anastasia Cheetham Date: Thu, 8 Dec 2011 14:27:54 -0500 Subject: [PATCH 2/7] STUDIO-16: Small styling fixes to some colours. --- wp-content/themes/fluid-studios/single.php | 2 +- wp-content/themes/fluid-studios/style.css | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/fluid-studios/single.php b/wp-content/themes/fluid-studios/single.php index 2de2a43..70d2032 100644 --- a/wp-content/themes/fluid-studios/single.php +++ b/wp-content/themes/fluid-studios/single.php @@ -12,7 +12,7 @@

- +
diff --git a/wp-content/themes/fluid-studios/style.css b/wp-content/themes/fluid-studios/style.css index 97ea623..b177bdd 100644 --- a/wp-content/themes/fluid-studios/style.css +++ b/wp-content/themes/fluid-studios/style.css @@ -8,6 +8,9 @@ Author: The Fluid Project html { height: 100%; } +.fluid-studios-theme { + color: #333333; +} body { line-height:1.4; font-family: "Times New Roman", Times, serif; @@ -16,6 +19,10 @@ body { height: 100%; position: relative; } +.home.fluid-studios-theme, +.archive.fluid-studios-theme { + color: #666666; +} #content-container { height: auto; min-height: 100%; @@ -164,6 +171,7 @@ ol#search-results li p{ } .fs-tags, a[rel="tag"] { font-style: italic; + color: #0099CC; } #search-results .entry-utility ul li{ font-weight:normal; @@ -316,7 +324,6 @@ input#s{ font-family: Arial,sans-serif; margin-right: 0; padding: 0.3125em; /* 5 / 16 */ - padding-top: 0.15em; padding-left: 1.5625em; /* 25 / 16 */ position: absolute; right: 14em; From 0702cdd5743b5029034847d901017f6056142da1 Mon Sep 17 00:00:00 2001 From: Anastasia Cheetham Date: Thu, 8 Dec 2011 14:37:13 -0500 Subject: [PATCH 3/7] STUDIO-13: Set base font to embedded 'Neuton' font. --- wp-content/themes/fluid-studios/header.php | 2 ++ wp-content/themes/fluid-studios/style.css | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/fluid-studios/header.php b/wp-content/themes/fluid-studios/header.php index 78252a4..b41ebed 100644 --- a/wp-content/themes/fluid-studios/header.php +++ b/wp-content/themes/fluid-studios/header.php @@ -20,6 +20,8 @@ + + diff --git a/wp-content/themes/fluid-studios/style.css b/wp-content/themes/fluid-studios/style.css index 97ea623..ca2900e 100644 --- a/wp-content/themes/fluid-studios/style.css +++ b/wp-content/themes/fluid-studios/style.css @@ -10,7 +10,7 @@ html { } body { line-height:1.4; - font-family: "Times New Roman", Times, serif; + font-family: "Neuton", "Times New Roman", Times, serif; max-width: 1280px; background:#fff; height: 100%; From a6f75297fd8daec4261c34dedca520fe7e41b902 Mon Sep 17 00:00:00 2001 From: Anastasia Cheetham Date: Thu, 8 Dec 2011 15:08:10 -0500 Subject: [PATCH 4/7] STUDIO-13: Switch to CSS import for font, use lighter weight. --- wp-content/themes/fluid-studios/header.php | 4 +++- wp-content/themes/fluid-studios/style.css | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/fluid-studios/header.php b/wp-content/themes/fluid-studios/header.php index b41ebed..692fccb 100644 --- a/wp-content/themes/fluid-studios/header.php +++ b/wp-content/themes/fluid-studios/header.php @@ -20,7 +20,9 @@ - + diff --git a/wp-content/themes/fluid-studios/style.css b/wp-content/themes/fluid-studios/style.css index ca2900e..34318e3 100644 --- a/wp-content/themes/fluid-studios/style.css +++ b/wp-content/themes/fluid-studios/style.css @@ -1,3 +1,5 @@ +@import url("http://fonts.googleapis.com/css?family=Neuton:400,300,700,400italic"); + /* Theme Name:Fluid Studios Author: The Fluid Project @@ -11,6 +13,7 @@ html { body { line-height:1.4; font-family: "Neuton", "Times New Roman", Times, serif; + font-weight: 300; max-width: 1280px; background:#fff; height: 100%; From 3f503c7d969af58bd7a7cdfc5e1181901da663ea Mon Sep 17 00:00:00 2001 From: Anastasia Cheetham Date: Thu, 8 Dec 2011 15:42:26 -0500 Subject: [PATCH 5/7] STUDIO-13: Small clean-up to CSS. --- wp-content/themes/fluid-studios/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/fluid-studios/style.css b/wp-content/themes/fluid-studios/style.css index 34318e3..b0da339 100644 --- a/wp-content/themes/fluid-studios/style.css +++ b/wp-content/themes/fluid-studios/style.css @@ -1,5 +1,3 @@ -@import url("http://fonts.googleapis.com/css?family=Neuton:400,300,700,400italic"); - /* Theme Name:Fluid Studios Author: The Fluid Project @@ -7,6 +5,8 @@ Author: The Fluid Project /* Global Fluid Studios theme specific container and body styles --------------------------------------------------------------------------- */ +@import url("http://fonts.googleapis.com/css?family=Neuton:400,300,700,400italic"); + html { height: 100%; } From 0302724a27f154cbf5425591ed9fd8e8f95d3dee Mon Sep 17 00:00:00 2001 From: Cindy Qi Li Date: Fri, 9 Dec 2011 10:32:31 -0500 Subject: [PATCH 6/7] STUDIO-10: Fixed the issue that only one post is showed on the selected tags page. --- wp-content/themes/fluid-studios/archive.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-content/themes/fluid-studios/archive.php b/wp-content/themes/fluid-studios/archive.php index 64f04dc..c7a2792 100644 --- a/wp-content/themes/fluid-studios/archive.php +++ b/wp-content/themes/fluid-studios/archive.php @@ -35,7 +35,7 @@

Blog Archives

- +
    From 3d74cc3d399dcd99aa65b151d4676b20c74a488e Mon Sep 17 00:00:00 2001 From: Anastasia Cheetham Date: Fri, 9 Dec 2011 10:53:09 -0500 Subject: [PATCH 7/7] STUDIO-16: Fix hover styling. --- wp-content/themes/fluid-studios/functions.php | 2 +- wp-content/themes/fluid-studios/style.css | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/wp-content/themes/fluid-studios/functions.php b/wp-content/themes/fluid-studios/functions.php index fba1142..b38eadb 100644 --- a/wp-content/themes/fluid-studios/functions.php +++ b/wp-content/themes/fluid-studios/functions.php @@ -153,7 +153,7 @@ function enable_threaded_comments(){ // build an HTML string for a tag function build_link_for_tag($aTag) { $tag_link = get_tag_link($aTag->term_id); - $html .= ""; + $html .= ""; return $html; } diff --git a/wp-content/themes/fluid-studios/style.css b/wp-content/themes/fluid-studios/style.css index 95791b7..e8e638d 100644 --- a/wp-content/themes/fluid-studios/style.css +++ b/wp-content/themes/fluid-studios/style.css @@ -44,11 +44,11 @@ h1,h2,h3,h4,h5,h6{ p,ul,ol,blockquote,figure { margin-bottom: 1em; } -a { +.fluid-studios-theme a { text-decoration: none; color: #0099CC; } -a:hover { +.fluid-studios-theme a:hover { color: #CCCC00; } /* FSS Column style overrides @@ -172,8 +172,8 @@ ol#search-results li p{ list-style:inside disc; margin-left:0.2%; } -.fs-tags, a[rel="tag"] { - font-style: italic; +.fluid-studios-theme .fs-tags { + font-style: italic; color: #0099CC; } #search-results .entry-utility ul li{ @@ -356,7 +356,7 @@ input#s{ padding: 0.3125em; /* 5 / 16 */ padding-left: 1.5625em; /* 25 / 16 */ margin-top: 12em; - width: 3em; + width: 4em; float: right; } .fs-back-link a {