Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  Licensed to the Apache Software Foundation (ASF) under one or more
0003  contributor license agreements.  See the NOTICE file distributed with
0004  this work for additional information regarding copyright ownership.
0005  The ASF licenses this file to You under the Apache License, Version 2.0
0006  (the "License"); you may not use this file except in compliance with
0007  the License.  You may obtain a copy of the License at
0008 
0009     http://www.apache.org/licenses/LICENSE-2.0
0010 
0011  Unless required by applicable law or agreed to in writing, software
0012  distributed under the License is distributed on an "AS IS" BASIS,
0013  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0014  See the License for the specific language governing permissions and
0015  limitations under the License.
0016 */
0017 
0018 body {
0019     background-color: #ffffff;
0020 }
0021 
0022 div.sphinxsidebar {
0023     width: 274px;
0024 }
0025 
0026 div.bodywrapper {
0027     margin: 0 0 0 274px;
0028 }
0029 
0030 div.sphinxsidebar ul {
0031     margin-right: 10px;
0032 }
0033 
0034 div.sphinxsidebar li a {
0035     word-break: break-all;
0036 }
0037 
0038 span.pys-tag {
0039     font-size: 11px;
0040     font-weight: bold;
0041     margin: 0 0 0 2px;
0042     padding: 1px 3px 1px 3px;
0043     -moz-border-radius: 3px;
0044     -webkit-border-radius: 3px;
0045     border-radius: 3px;
0046     text-align: center;
0047     text-decoration: none;
0048 }
0049 
0050 span.pys-tag-experimental {
0051     background-color: rgb(37, 112, 128);
0052     color: rgb(255, 255, 255);
0053 }
0054 
0055 span.pys-tag-deprecated {
0056     background-color: rgb(238, 238, 238);
0057     color: rgb(62, 67, 73);
0058 }
0059 
0060 div.pys-note-experimental {
0061     background-color: rgb(88, 151, 165);
0062     border-color: rgb(59, 115, 127);
0063     color: rgb(255, 255, 255);
0064 }
0065 
0066 div.pys-note-deprecated {
0067 }
0068 
0069 .hasTooltip {
0070     position:relative;
0071 }
0072 .hasTooltip span {
0073     display:none;
0074 }
0075 
0076 .hasTooltip:hover span.tooltip {
0077     display: inline-block;
0078     -moz-border-radius: 2px;
0079     -webkit-border-radius: 2px;
0080     border-radius: 2px;
0081     background-color: rgb(250, 250, 250);
0082     color: rgb(68, 68, 68);
0083     font-weight: normal;
0084     box-shadow: 1px 1px 3px rgb(127, 127, 127);
0085     position: absolute;
0086     padding: 0 3px 0 3px;
0087     top: 1.3em;
0088     left: 14px;
0089     z-index: 9999
0090 }