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

Unified Diff: chrome/common/extensions/docs/static/css/site.css

Issue 10967055: Merge 158110 - Little nitpickery on extensions doc styles. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1271/src/
Patch Set: Created 8 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/static/css/site.css
===================================================================
--- chrome/common/extensions/docs/static/css/site.css (revision 158113)
+++ chrome/common/extensions/docs/static/css/site.css (working copy)
@@ -55,12 +55,12 @@
}
a:visited {
- color: #194c7f;
+ color: #236bb2;
}
a:active,
a:hover {
- color: #236bb2;
+ color: #3bf;
}
#toc a {
@@ -369,10 +369,15 @@
#toc {
background-color: #F5F5F5;
float: right;
- margin: 5px 0px 5px 20px;
+ margin: 5px 0px 0px 0px;
padding: 5px;
width: 250px;
word-break: break-word;
+ /* We want this element to have a visual left-margin of 20px, but margins on
+ floated elements don't affect the borders and background of the elements
+ they float over. So we add this border to force the issue. */
+ border-left: 20px solid white;
+ border-bottom: 20px solid white;
}
#toc * {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698