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

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: Remove temp code. 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
« utils/dartdoc/dartdoc.dart ('K') | « 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..0b020b99e4165e4b5190a657f3a30edacb201c53 100644
--- a/utils/dartdoc/static/styles.css
+++ b/utils/dartdoc/static/styles.css
@@ -68,6 +68,12 @@ a:visited {
color: #15c;
}
+/* Style external links differently. */
+a[rel~="custom"]:after,
Jacob 2012/01/30 21:36:21 why are "custom" links styled as if they were exte
Bob Nystrom 2012/01/31 20:56:29 The mozilla docs seemed to have some links that us
+a[rel~="external"]:after {
+ content: url('external-link.png');
+}
+
li {
font-size: 16px;
line-height: 22px;
@@ -228,6 +234,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 {
« utils/dartdoc/dartdoc.dart ('K') | « utils/dartdoc/static/external-link.png ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698