From c6aa0697d33dce85aa2cb760eb5d3262d37e4499 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Sat, 29 Oct 2011 20:47:44 +0200 Subject: [PATCH] MINOR Moved and styles to more specific selectors in cms module --- admin/css/screen.css | 2 -- admin/scss/_typography.scss | 12 ------------ 2 files changed, 14 deletions(-) diff --git a/admin/css/screen.css b/admin/css/screen.css index 71f6cd29a..07b59c828 100755 --- a/admin/css/screen.css +++ b/admin/css/screen.css @@ -59,8 +59,6 @@ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, .cms h4 { font-size: 14px; } .cms h5 { font-size: 12px; } .cms p { line-height: 16px; margin-bottom: 16px; } -.cms ins { background-color: #DFD; padding: 2px; text-decoration: none; } -.cms del { background-color: #FDD; padding: 2px; color: #ff4444; } .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 */ diff --git a/admin/scss/_typography.scss b/admin/scss/_typography.scss index d9686c8ef..743ae18b3 100644 --- a/admin/scss/_typography.scss +++ b/admin/scss/_typography.scss @@ -33,18 +33,6 @@ margin-bottom: $grid-vertical * 2; } - ins { - background-color: #DFD; - padding: 2px; - text-decoration: none; - } - - del { - background-color: #FDD; - padding: 2px; - color: darken(#FDD, 30%); - } - code { font-family: 'Bitstream Vera Sans Mono','Courier', monospace; }