aboutsummaryrefslogtreecommitdiffstats
path: root/doc/_themes
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2011-08-05 17:18:05 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:17:13 -0300
commit9c1db342e06fee686f7e8268704741329ccf6b2e (patch)
tree18e247b0246c6b925c07765f845926cbcff87ab9 /doc/_themes
parent784a4bbb707d132b26bcb177521745575dc0823f (diff)
Documentation for shiboken module.
Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'doc/_themes')
-rw-r--r--doc/_themes/pysidedocs/static/pysidedocs.css72
1 files changed, 69 insertions, 3 deletions
diff --git a/doc/_themes/pysidedocs/static/pysidedocs.css b/doc/_themes/pysidedocs/static/pysidedocs.css
index fd81f4379..708ddf77c 100644
--- a/doc/_themes/pysidedocs/static/pysidedocs.css
+++ b/doc/_themes/pysidedocs/static/pysidedocs.css
@@ -10,7 +10,6 @@ html {
body {
margin: 0;
padding: 0;
- text-align: center;
background-color: #EBEBEB;
height: 100%;
color: #333;
@@ -93,7 +92,6 @@ h1 {
padding-bottom: 15px;
padding-top: 15px;
border-bottom: 1px solid #c2c2c2;
- text-transform:uppercase;
margin-right: -100px;
position: relative;
left: -50px;
@@ -137,11 +135,15 @@ pre * {
font: 100% monospace;
}
+.pre {
+ font: 100% monospace;
+}
+
.headerlink {
font-size: 100%;
color: inherit;
float: right;
- visibility: Hidden;
+ visibility: Hidden
}
h1 .headerlink {
@@ -192,6 +194,11 @@ div.warning {
border: 1px solid #f66;
}
+div.seealso {
+ background-color: #ffffcc;
+ border: 1px solid #ffff66;
+}
+
div.note {
border: 1px solid #e3e3e3;
}
@@ -407,3 +414,62 @@ img {
table.footnote {
margin: 0px;
}
+
+#synopsis table, table.field-list {
+ margin: 0px;
+}
+
+tt.descname {
+ font-size: 120%;
+ font-weight: bold;
+}
+
+#functions ul, #virtual-functions ul, #slots ul, #signals ul, #static-functions ul {
+ list-style: none;
+ margin: 0px;
+ padding: 10px;
+ border: 1px solid #ddd;
+ background-color: #f4f4f4;
+ -moz-border-radius:10px;
+ -webkit-border-radius:10px;
+ -khtml-border-radius:10px;
+}
+
+#synopsis span.pre {
+ color: #009491;
+ font-weight: bolder;
+}
+
+#detailed-description .class dt, #detailed-description .method dt, #detailed-description .attribute dt, #detailed-description .function dt {
+ margin: 0px;
+ padding: 10px;
+ border: 1px solid #ddd;
+ background-color: #f4f4f4;
+ -moz-border-radius:10px;
+ -webkit-border-radius:10px;
+ -khtml-border-radius:10px;
+}
+
+.pysidetoc ul {
+ list-style: none;
+ padding: 0px;
+ margin: 0px;
+}
+
+.pysidetoc em {
+ font-style: normal;
+}
+
+.pysidetoc strong {
+ display: block;
+ padding: 5px;
+ border: 1px solid #ddd;
+ background-color: #f4f4f4;
+ -moz-border-radius:6px;
+ -webkit-border-radius:6px;
+ -khtml-border-radius:6px;
+}
+
+.hide {
+ display: none;
+}