2015-02-23 21:15:04 +00:00
|
|
|
/* override table width restrictions */
|
|
|
|
|
.wy-table-responsive table td, .wy-table-responsive table th {
|
|
|
|
|
/* !important prevents the common CSS stylesheets from
|
|
|
|
|
overriding this as on RTD they are loaded after this stylesheet */
|
|
|
|
|
white-space: normal !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wy-table-responsive {
|
|
|
|
|
overflow: visible !important;
|
2015-03-12 16:23:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* style headlink for code block captions like other headlinks */
|
|
|
|
|
.code-block-caption .headerlink {
|
|
|
|
|
display: none;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.code-block-caption:hover .headerlink {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.code-block-caption .headerlink:after {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
content: "\f0c1";
|
|
|
|
|
font-family: FontAwesome;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
2015-03-12 17:09:24 +00:00
|
|
|
|
|
|
|
|
/* make whitespace visualization in code listings not appear on same vertical position as dashes */
|
|
|
|
|
.highlight .w {
|
|
|
|
|
vertical-align: 10%;
|
2015-03-19 19:56:46 +00:00
|
|
|
}
|
|
|
|
|
|
2017-10-19 11:37:40 +00:00
|
|
|
.rst-content .highlight>pre,
|
|
|
|
|
.rst-content .linenodiv>pre {
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-19 19:56:46 +00:00
|
|
|
/* make code tags non-red again */
|
|
|
|
|
code,
|
|
|
|
|
.rst-content tt {
|
2015-03-19 20:05:27 +00:00
|
|
|
color: #000 !important;
|
2015-03-19 19:56:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a code,
|
|
|
|
|
.rst-content a tt {
|
2015-03-19 20:05:27 +00:00
|
|
|
color: #2980B9 !important;
|
2015-03-19 19:56:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:visited code,
|
|
|
|
|
.rst-content a:visited tt {
|
2015-03-19 20:05:27 +00:00
|
|
|
color: #9B59B6 !important;
|
2015-03-19 19:56:46 +00:00
|
|
|
}
|
2017-10-19 11:37:40 +00:00
|
|
|
|