From f0ddd3b15d113296b05ae6487b53539716ab3bbc Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 11 May 2009 20:18:57 +0000 Subject: [PATCH] Add invisible class to bundled themes. Props hakre. fixes #9755 git-svn-id: https://develop.svn.wordpress.org/trunk@11277 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 93dc883bc0..ffc5beaf73 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 4900d630ec..2cb659302d 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;