From 1c8d588d18953d6b7510370f7762e45d9362ef6c Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 11 May 2009 20:18:57 +0000 Subject: [PATCH] Add invisible class to bundled themes. Props hakre. fixes #9755 git-svn-id: http://svn.automattic.com/wordpress/trunk@11277 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/classic/style.css | 5 +++++ wp-content/themes/default/style.css | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/wp-content/themes/classic/style.css b/wp-content/themes/classic/style.css index 93dc883bc..ffc5beaf7 100644 --- a/wp-content/themes/classic/style.css +++ b/wp-content/themes/classic/style.css @@ -12,6 +12,11 @@ This is just a basic layout, with only the bare minimum defined. Please tweak this and make it your own. :) */ +.invisible { + position: absolute; + left: -1000em; +} + a { color: #675; } diff --git a/wp-content/themes/default/style.css b/wp-content/themes/default/style.css index 4900d630e..2cb659302 100644 --- a/wp-content/themes/default/style.css +++ b/wp-content/themes/default/style.css @@ -654,6 +654,11 @@ blockquote cite { .hidden { display: none; } + +.invisible { + position: absolute; + left: -1000em; +} hr { display: none;