[extensions-web] css: Don't bold the username when activated



commit 103a6a6cfbd132bbc761c0a7d173fc8184dc9e28
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Sat Jun 2 22:22:00 2012 -0400

    css: Don't bold the username when activated
    
    CSS namespace collisions :(

 .../templates/extensions/multiversion_status.html  |    2 +-
 sweettooth/static/css/sweettooth.css               |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/sweettooth/extensions/templates/extensions/multiversion_status.html b/sweettooth/extensions/templates/extensions/multiversion_status.html
index f85940d..5688cf8 100644
--- a/sweettooth/extensions/templates/extensions/multiversion_status.html
+++ b/sweettooth/extensions/templates/extensions/multiversion_status.html
@@ -1 +1 @@
-<a class="{{ version.get_status_class }}" href="{% url review-version pk=version.pk %}">{{ version.get_status_display }}</a>
+<a class="extension-status {{ version.get_status_class }}" href="{% url review-version pk=version.pk %}">{{ version.get_status_display }}</a>
diff --git a/sweettooth/static/css/sweettooth.css b/sweettooth/static/css/sweettooth.css
index fe1c80b..ebf7835 100644
--- a/sweettooth/static/css/sweettooth.css
+++ b/sweettooth/static/css/sweettooth.css
@@ -422,12 +422,12 @@ li.extension:last-child {
     display: table-cell;
 }
 
-.rejected, .reject {
+.extension-status.rejected, option.reject {
     color: #c00 !important;
     font-weight: bold;
 }
 
-.active, .approve {
+.extension-status.active, option.approve {
     color: #0a0 !important;
     font-weight: bold;
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]