mark: A photo of Mark kneeling on top of the Taal Volcano in the Philippines. It was a long hike. (Default)
Mark Smith ([staff profile] mark) wrote in [site community profile] changelog2010-01-06 02:14 am

[dw-nonfree] Adult content div box colors hardcoded

[commit: http://hg.dwscoalition.org/dw-nonfree/rev/15b2f6c8326a]

http://bugs.dwscoalition.org/show_bug.cgi?id=2243

Do not hardcode adult content div styling.

Patch by [personal profile] foxfirefey.

Files modified:
  • htdocs/stc/tropo/purple.css
  • htdocs/stc/tropo/red.css
--------------------------------------------------------------------------------
diff -r e5a5f4b5a949 -r 15b2f6c8326a htdocs/stc/tropo/purple.css
--- a/htdocs/stc/tropo/purple.css	Sun Jan 03 02:21:32 2010 +0000
+++ b/htdocs/stc/tropo/purple.css	Wed Jan 06 02:14:17 2010 +0000
@@ -1237,6 +1237,14 @@ li.profile_trackuser_disabled, li.profil
     background-color: #eee;
 }
 
+/* Adult warning interstitals */
+
+div.adult_warning {
+    background-color: #f3d2fc;
+    border: 1px solid #5e3da6;
+    padding: 0 10px;
+}
+
 /* CSS-style some things that users like to use */
 
 q {
diff -r e5a5f4b5a949 -r 15b2f6c8326a htdocs/stc/tropo/red.css
--- a/htdocs/stc/tropo/red.css	Sun Jan 03 02:21:32 2010 +0000
+++ b/htdocs/stc/tropo/red.css	Wed Jan 06 02:14:17 2010 +0000
@@ -1234,6 +1234,14 @@ li.profile_trackuser_disabled, li.profil
     background-color: #eee;
 }
 
+/* Adult warning interstitals */
+
+div.adult_warning {
+    background-color: #ffd8d8;
+    border: 1px solid #c1272d;
+    padding: 0 10px;
+}
+
 /* CSS-style some things that users like to use */
 
 q {
--------------------------------------------------------------------------------