From a2924c2e16fb167bc14755787ac1307ce47ba884 Mon Sep 17 00:00:00 2001
From: Adam Olley <adam.olley@netspot.com.au>
Date: Mon, 29 Nov 2010 14:04:42 +1100
Subject: [PATCH] LATROBE-38: Set vertical alignment for sub/sup tags

YUI Library resets the sub/sup tags vertical alignment (forcing the
text inline with normal text). The vertical alignment needs to be
set in the base theme for these elements.
---
 theme/base/style/core.css |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/theme/base/style/core.css b/theme/base/style/core.css
index 1e35247..0022cde 100644
--- a/theme/base/style/core.css
+++ b/theme/base/style/core.css
@@ -4,6 +4,12 @@
 input[type=text],input[type=password],textarea{width:auto;}
 
 /**
+ * Required to undo YUI resets that override sub/sup
+ */
+sub {vertical-align: sub;}
+sup {vertical-align: super;}
+
+/**
  * General
  */
 th,
-- 
1.7.2.3

