Title: [193498] trunk/Websites/webkit.org
Revision
193498
Author
[email protected]
Date
2015-12-04 17:35:47 -0800 (Fri, 04 Dec 2015)

Log Message

Fix toggling so hidden links are not clickable still.

* wp-content/themes/webkit/status.php:

Modified Paths

Diff

Modified: trunk/Websites/webkit.org/ChangeLog (193497 => 193498)


--- trunk/Websites/webkit.org/ChangeLog	2015-12-05 01:28:02 UTC (rev 193497)
+++ trunk/Websites/webkit.org/ChangeLog	2015-12-05 01:35:47 UTC (rev 193498)
@@ -1,5 +1,11 @@
 2015-12-04  Timothy Hatcher  <[email protected]>
 
+        Fix toggling so hidden links are not clickable still.
+
+        * wp-content/themes/webkit/status.php:
+
+2015-12-04  Timothy Hatcher  <[email protected]>
+
         Fix another place where feature status internal reference links were wrong.
 
         * wp-content/themes/webkit/status.php:

Modified: trunk/Websites/webkit.org/wp-content/themes/webkit/status.php (193497 => 193498)


--- trunk/Websites/webkit.org/wp-content/themes/webkit/status.php	2015-12-05 01:28:02 UTC (rev 193497)
+++ trunk/Websites/webkit.org/wp-content/themes/webkit/status.php	2015-12-05 01:35:47 UTC (rev 193498)
@@ -129,16 +129,14 @@
 .feature-description + *,
 .feature-description .feature-desc,
 .feature-description .comment {
-    height: 0;
-    opacity: 0;
+    display: none;
     margin: 0;
 }
 
 .feature.opened .feature-description + *,
 .feature.opened .feature-desc,
 .feature.opened .feature-description .comment {
-    opacity: 1;
-    height: auto;
+    display: block;
     margin-bottom: 3rem;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to