diff options
Diffstat (limited to 'docs/assets/css/src/docs.css')
| -rw-r--r-- | docs/assets/css/src/docs.css | 36 |
1 files changed, 32 insertions, 4 deletions
diff --git a/docs/assets/css/src/docs.css b/docs/assets/css/src/docs.css index 4f63b33cd..3c88d4865 100644 --- a/docs/assets/css/src/docs.css +++ b/docs/assets/css/src/docs.css @@ -93,21 +93,26 @@ body { * Fancy skip link * * Make it look a bit less "bare bones" + * Also includes focus suppression for the Chrome tabindex="-1" workaround */ #skippy { display: block; padding: 1em; color: #fff; - background-color: #6F5499; + background-color: #6f5499; outline: 0; } #skippy .skiplink-text { - padding: 0.5em; + padding: .5em; outline: 1px dotted; } +#content:focus { + outline: none; +} + /* * Main navigation @@ -913,6 +918,10 @@ h1[id] { content: "Example"; } +.bs-example-padded-bottom { + padding-bottom: 24px; +} + /* Tweak display of the code snippets when following an example */ .bs-example + .highlight, .bs-example + .zero-clipboard + .highlight { @@ -1166,6 +1175,10 @@ h1[id] { overflow: auto; } +.bs-example > .nav-pills-stacked-example { + max-width: 300px; +} + /* Simple collapse example */ #collapseExample .well { margin-bottom: 0; @@ -1177,6 +1190,19 @@ h1[id] { white-space: nowrap; } +.bs-events-table > thead > tr > th:first-child { + width: 150px; +} + +.js-options-table > thead > tr > th:nth-child(1), +.js-options-table > thead > tr > th:nth-child(2) { + width: 100px; +} + +.js-options-table > thead > tr > th:nth-child(3) { + width: 50px; +} + /* * Code snippets * @@ -1431,10 +1457,12 @@ h1[id] { border: 2px dashed #eee; border-radius: 4px; } -.bs-dropzone h2 { - margin-top: 0; +.bs-dropzone .import-header { margin-bottom: 5px; } +.bs-dropzone .glyphicon-download-alt { + font-size: 40px; +} .bs-dropzone hr { width: 100px; } |
