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

Unified Diff: chrome/common/extensions/docs/static/sass/_typography.scss

Issue 483163002: Make table text the same size as body text. Add styles to support table reformatting. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Replace exact table font size with $body-font-size variable. Created 6 years, 4 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
Index: chrome/common/extensions/docs/static/sass/_typography.scss
diff --git a/chrome/common/extensions/docs/static/sass/_typography.scss b/chrome/common/extensions/docs/static/sass/_typography.scss
index 08a6037a9a0d7e6de2fb1c3c8137af59ff77545e..6ef95a85145624e123043c0e2c9e449f784c2297 100644
--- a/chrome/common/extensions/docs/static/sass/_typography.scss
+++ b/chrome/common/extensions/docs/static/sass/_typography.scss
@@ -14,8 +14,8 @@ html {
color: $text;
}
body {
- font-size: $body-font-size;
color: $text;
+ font-size: $body-font-size;
jpmedley 2014/08/26 23:12:18 Didn't mean to swap this. It's a fat finger mistak
}
h1, h2, h3, h4 ,h5 ,h6 {
@@ -114,6 +114,18 @@ footer[role="contentinfo"] {
}
}
+table {
+ font-size: $body-font-size;
+}
+
+td dl {
+ margin: 0.4em 0;
+}
+
+td dt {
+ margin: 0 0 0.4em 0;
+}
+
em {
padding-right: 2px; /* "kerning" adjustment */
}

Powered by Google App Engine
This is Rietveld 408576698