diff options
author | Vipul A M <vipulnsward@gmail.com> | 2016-04-19 03:04:56 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2016-04-19 03:04:56 +0530 |
commit | 1896fafa602d46b833845e2dda3896de983ce0ab (patch) | |
tree | 3592f9fe9313ff59440dc61f16acadc3605af260 /guides/assets/stylesheets | |
parent | 983b743c8c8695c0235d6a3a9fe91a7a759cf0cb (diff) | |
download | rails-1896fafa602d46b833845e2dda3896de983ce0ab.tar.gz rails-1896fafa602d46b833845e2dda3896de983ce0ab.tar.bz2 rails-1896fafa602d46b833845e2dda3896de983ce0ab.zip |
Selectively add `li ul, li ol { margin:0 1.5em; }` to subColl needed for Chapters column, instead of leaking to other lists.
Before:
https://monosnap.com/file/CNIMXcqv3HuRrObTNYWYFis8I3G8PT
After:
https://monosnap.com/file/0IyEKEy9hcRCIx82etR8ikinCo3vNb
Chapters column remains as is: http://take.ms/M0BkF
Diffstat (limited to 'guides/assets/stylesheets')
-rw-r--r-- | guides/assets/stylesheets/main.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guides/assets/stylesheets/main.css b/guides/assets/stylesheets/main.css index ed558e4793..b56699a0d0 100644 --- a/guides/assets/stylesheets/main.css +++ b/guides/assets/stylesheets/main.css @@ -16,7 +16,6 @@ .large {font-size: larger;} .hide {display: none;} -li ul, li ol { margin:0 1.5em; } ul, ol { margin: 0 1.5em 1.5em 1.5em; } ul { list-style-type: disc; } @@ -602,6 +601,8 @@ h6 { font-weight: normal; } +#subCol li ul, li ol { margin:0 1.5em; } + div.code_container { background: #EEE url(../images/tab_grey.gif) no-repeat left top; padding: 0.25em 1em 0.5em 48px; |