From 8c1053968c9bbcbec97413d010f869a96c0be2ee Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Wed, 2 May 2012 18:12:49 +0200 Subject: [PATCH] MINOR Fixed unnecessary background in CMS tabs, causes wrong display in FF, and already implemented on parent "cms-content-header" (#7240) --- admin/css/screen.css | 2 +- admin/scss/_uitheme.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/css/screen.css b/admin/css/screen.css index 5e6382b17..e0b77f8cd 100644 --- a/admin/css/screen.css +++ b/admin/css/screen.css @@ -115,7 +115,7 @@ body, html { font-size: 12px; line-height: 16px; font-family: Arial, sans-serif; .cms code { font-family: 'Bitstream Vera Sans Mono','Courier', monospace; } /** This file defines CMS-specific customizations to the jQuery UI theme. Every rule in this file should be wrapped in the '.cms' selector (to make it more specific), and contain ONLY overwritten jQuery UI rules (with 'ui-' prefix). This file should be fairly short, as we're using our own custom jQuery UI theme already. TODO Add theme reference Use _style.scss to add more generic style information, and read the jQuery UI theming API: http://jqueryui.com/docs/Theming/API */ -.cms .ui-tabs { padding: 0; background: #f0f3f4 url(../images/textures/bg_cms_main_content.png) repeat top left; } +.cms .ui-tabs { padding: 0; background: none; } .cms .ui-tabs .ui-widget-header { border: 0; background: none; } .cms .ui-tabs .ui-tabs-nav { margin: 0; padding: 0; } .cms .ui-tabs .ui-tabs-nav li { top: 0; } diff --git a/admin/scss/_uitheme.scss b/admin/scss/_uitheme.scss index 62ddf95da..f9c435d83 100644 --- a/admin/scss/_uitheme.scss +++ b/admin/scss/_uitheme.scss @@ -13,7 +13,7 @@ .cms { .ui-tabs { padding: 0; - background: $tab-panel-texture-background; + background: none; .ui-widget-header { border: 0;