Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(896)

Unified Diff: utils/dartdoc/static/styles.css

Issue 9225039: Integrate MDN content into API documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Respond to review. Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « utils/dartdoc/static/external-link.png ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/dartdoc/static/styles.css
diff --git a/utils/dartdoc/static/styles.css b/utils/dartdoc/static/styles.css
index a69aee4611966905d324efd4a7e27a50fb29b386..988d08fa5608cdabb59c8fce24330041bd63a65f 100644
--- a/utils/dartdoc/static/styles.css
+++ b/utils/dartdoc/static/styles.css
@@ -228,6 +228,8 @@ ul.icon ul {
.method .doc,
.field .doc {
padding-left: 44px;
+ /* Ensure there is some space between members with no documentation. */
+ min-height: 22px;
}
.param {
@@ -252,6 +254,12 @@ ul.icon ul {
color: #666;
}
+/* Style external links in docs differently. */
+.doc a[href^="http:"]:after,
+.doc a[href^="https:"]:after {
+ content: url('external-link.png');
+}
+
/* Highlight members on hover so you can see which docs are for which member. */
.method:hover,
.field:hover {
« no previous file with comments | « utils/dartdoc/static/external-link.png ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698