From 6f7c84ed7ed60a6dc988daf164452cd16e7f7f32 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Mon, 21 Apr 2014 16:42:54 -0400 Subject: sneak_peek CSS: set default style to use .default class Instead of globally setting styles for `.django-sneak-peek`, set those styles previously defined on it on `.django-sneak-peek.default`. This should make it easier to override styles and create new ones since users won't have to set various `border-image`s to `none`. --- sneak_peek_tag/static/sneak_peek_tag/css/django-sneak-peek.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sneak_peek_tag/static/sneak_peek_tag/css/django-sneak-peek.css b/sneak_peek_tag/static/sneak_peek_tag/css/django-sneak-peek.css index 79b1fe2..e1ea96e 100644 --- a/sneak_peek_tag/static/sneak_peek_tag/css/django-sneak-peek.css +++ b/sneak_peek_tag/static/sneak_peek_tag/css/django-sneak-peek.css @@ -3,7 +3,7 @@ /* 'Under construction' border around sneak peek features */ -.django-sneak-peek { +.django-sneak-peek.default { border-style: solid; border-width: 10px; -moz-border-image: url('../images/django-sneak-peek-under-construction-border-image.png') 10 round; -- cgit v1.2.3