Home | History | Annotate | Download | only in html
      1 #nav-tree .children_ul {
      2   margin:0;
      3   padding:4px;
      4 }
      5 
      6 #nav-tree ul {
      7   list-style:none outside none;
      8   margin:0px;
      9   padding:0px;
     10 }
     11 
     12 #nav-tree li {
     13   white-space:nowrap;
     14   margin:0px;
     15   padding:0px;
     16 }
     17 
     18 #nav-tree .plus {
     19   margin:0px;
     20 }
     21 
     22 #nav-tree .selected {
     23   background-image: url('tab_a.png');
     24   background-repeat:repeat-x;
     25   color: #fff;
     26   text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
     27 }
     28 
     29 #nav-tree img {
     30   margin:0px;
     31   padding:0px;
     32   border:0px;
     33   vertical-align: middle;
     34 }
     35 
     36 #nav-tree a {
     37   text-decoration:none;
     38   padding:0px;
     39   margin:0px;
     40   outline:none;
     41 }
     42 
     43 #nav-tree .label {
     44   margin:0px;
     45   padding:0px;
     46   font: 12px 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif;
     47 }
     48 
     49 #nav-tree .label a {
     50   padding:2px;
     51 }
     52 
     53 #nav-tree .selected a {
     54   text-decoration:none;
     55   color:#fff;
     56 }
     57 
     58 #nav-tree .children_ul {
     59   margin:0px;
     60   padding:0px;
     61 }
     62 
     63 #nav-tree .item {
     64   margin:0px;
     65   padding:0px;
     66 }
     67 
     68 #nav-tree {
     69   padding: 0px 0px;
     70   background-color: #FAFAFF; 
     71   font-size:14px;
     72   overflow:auto;
     73 }
     74 
     75 #doc-content {
     76   overflow:auto;
     77   display:block;
     78   padding:0px;
     79   margin:0px;
     80   -webkit-overflow-scrolling : touch; /* iOS 5+ */
     81 }
     82 
     83 #side-nav {
     84   padding:0 6px 0 0;
     85   margin: 0px;
     86   display:block;
     87   position: absolute;
     88   left: 0px;
     89   width: 250px;
     90 }
     91 
     92 .ui-resizable .ui-resizable-handle {
     93   display:block;
     94 }
     95 
     96 .ui-resizable-e {
     97   background-image:url("splitbar.png");
     98   background-size:100%;
     99   background-repeat:no-repeat;
    100   background-attachment: scroll;
    101   cursor:ew-resize;
    102   height:100%;
    103   right:0;
    104   top:0;
    105   width:6px;
    106 }
    107 
    108 .ui-resizable-handle {
    109   display:none;
    110   font-size:0.1px;
    111   position:absolute;
    112   z-index:1;
    113 }
    114 
    115 #nav-tree-contents {
    116   margin: 6px 0px 0px 0px;
    117 }
    118 
    119 #nav-tree {
    120   background-image:url('nav_h.png');
    121   background-repeat:repeat-x;
    122   background-color: #F9FAFC;
    123   -webkit-overflow-scrolling : touch; /* iOS 5+ */
    124 }
    125 
    126 #nav-sync {
    127   position:absolute;
    128   top:5px;
    129   right:24px;
    130   z-index:0;
    131 }
    132 
    133 #nav-sync img {
    134   opacity:0.3;
    135 }
    136 
    137 #nav-sync img:hover {
    138   opacity:0.9;
    139 }
    140 
    141 @media print
    142 {
    143   #nav-tree { display: none; }
    144   div.ui-resizable-handle { display: none; position: relative; }
    145 }
    146 
    147