From d8418e5ab0dc5f3a89020bb89bb1eb7ecf17e09e Mon Sep 17 00:00:00 2001 From: Michal Kordas Date: Mon, 31 Aug 2015 22:32:20 +0200 Subject: [PATCH] Issue #2054: Remove empty CSS rule Fixes `Rule is empty` inspection violations. Description: >An empty rule is one that doesn't contain any properties, such as: ``` .foo { } ``` A lot of times, empty rules appear as a result of refactoring without further cleanup. Eliminating empty rules results in smaller file sizes and less style information for the browser to deal with. --- src/site/resources/css/site.css | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/site/resources/css/site.css b/src/site/resources/css/site.css index c4a8476ad..a29c279e4 100644 --- a/src/site/resources/css/site.css +++ b/src/site/resources/css/site.css @@ -37,10 +37,6 @@ h4 { background: url("../images/header-background.png") repeat scroll 0 0 transparent; } -.section { - -} - a.dl-link { position: relative; float: right;