From 242b6ed5b4096c0e77359cf49eb282a9800cf24c Mon Sep 17 00:00:00 2001 From: Sanj Date: Mon, 11 Apr 2011 04:46:57 +0530 Subject: [PATCH] css on the boxes --- itf/static/css/itf.css | 6 ++++++ itf/static/js/itf/boxes.js | 1 + 2 files changed, 7 insertions(+) diff --git a/itf/static/css/itf.css b/itf/static/css/itf.css index 5817fef..ba5b360 100644 --- a/itf/static/css/itf.css +++ b/itf/static/css/itf.css @@ -11,6 +11,12 @@ font-weight: bold; } +.itfBoxTitle { + font-size: 18px; + font-weight: bold; + text-align: center; +} + .OxCommentWrapper { margin-bottom: 4px; } diff --git a/itf/static/js/itf/boxes.js b/itf/static/js/itf/boxes.js index a262495..13b4a7d 100644 --- a/itf/static/js/itf/boxes.js +++ b/itf/static/js/itf/boxes.js @@ -74,6 +74,7 @@ Ox.ItfBox = function(boxData) { }).appendTo(that); var $title = new Ox.Element() .addClass('OxTitle') + .addClass('itfBoxTitle') .html(boxData.title) .appendTo($titlebar); var $buttons = new Ox.Element().appendTo($title).css({'position': 'absolute', 'top': '1px', 'right': '10px'});