From f6edcd117020d660ab8d0521d8807c6e622f8ca9 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Tue, 5 Apr 2011 21:06:56 +1200 Subject: [PATCH] MINOR Setting base font size for CMS --- admin/css/screen.css | 19 ++++++++++++++----- admin/scss/screen.scss | 15 +++++++++++++++ 2 files changed, 29 insertions(+), 5 deletions(-) diff --git a/admin/css/screen.css b/admin/css/screen.css index ec3d35855..089fee2c5 100644 --- a/admin/css/screen.css +++ b/admin/css/screen.css @@ -31,16 +31,25 @@ .jstree > ul > li { margin-left: 0px; } /* line 5, ../scss/screen.scss */ -.logo .version { display: none; } +body { font-size: 13px; font-family: Verdana, Arial, sans-serif; } /* line 11, ../scss/screen.scss */ +body * { font-size: 13px; } + +/* line 15, ../scss/screen.scss */ +body .ui-widget { font-size: 1em; } + +/* line 20, ../scss/screen.scss */ +.logo .version { display: none; } + +/* line 26, ../scss/screen.scss */ .ss-loading-screen, .ss-loading-screen .loading-logo { width: 100%; height: 100%; overflow: hidden; position: absolute; background: #fff; background: -moz-radial-gradient(50% 50% 180deg, circle cover, white, #efefef, #c7c7c7 100%); background: -webkit-gradient(radial, 50% 50%, 350, 50% 50%, 0, from(#e3e3e3), to(white)); z-index: 100000; margin: 0; padding: 0; } -/* line 25, ../scss/screen.scss */ +/* line 40, ../scss/screen.scss */ .ss-loading-screen .loading-logo { background-url: url(../images/logo.gif); background-repeat: no-repeat; background-color: transparent; background-position: 50% 50%; } -/* line 31, ../scss/screen.scss */ +/* line 46, ../scss/screen.scss */ .ss-loading-screen p { width: 100%; text-align: center; position: absolute; bottom: 80px; } -/* line 37, ../scss/screen.scss */ +/* line 52, ../scss/screen.scss */ .ss-loading-screen p span.notice { display: inline-block; font-size: 14px; padding: 10px 20px; color: #dc7f00; border: none; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; -moz-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1); -o-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1); box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1); } -/* line 55, ../scss/screen.scss */ +/* line 70, ../scss/screen.scss */ .ss-loading-screen .loading-animation { display: none; position: absolute; left: 49%; top: 75%; } diff --git a/admin/scss/screen.scss b/admin/scss/screen.scss index ec55838de..7497d99d2 100644 --- a/admin/scss/screen.scss +++ b/admin/scss/screen.scss @@ -1,6 +1,21 @@ +//@import "compass/reset"; @import "tree.scss"; @import "forms.scss"; +body { +// @include global-reset; + font-size: 13px; + font-family: Verdana, Arial, sans-serif; +} + +body * { + font-size: 13px; +} + +body .ui-widget { + font-size: 1em; +} + .logo { .version { display: none;