java/sql-vyuka/web/strom.css
author František Kučera <franta-hg@frantovo.cz>
Tue Jul 14 16:51:24 2009 +0200 (2009-07-14)
changeset 49 083966fa9d9d
child 55 d5714d3b791a
permissions -rw-r--r--
Model databáze: javascript, css a obrázky pro zobrazování stromové struktury.
     1 ul.strom {
     2     display: none;
     3 }
     4 
     5 ul.strom  li {
     6     list-style: none;
     7     margin: 3px;
     8 }
     9 
    10 ul.strom, ul.strom ul , ul.strom li {
    11     margin-left: 10px;
    12     padding: 0px;
    13 }
    14 
    15 ul.strom li .bullet {
    16     padding-left: 16px;
    17 }
    18 
    19 ul.strom li.liOpen .bullet {
    20     cursor: pointer;
    21     background: url('grafika/strom-minus.gif') center left no-repeat;
    22 }
    23 
    24 ul.strom li.liClosed .bullet {
    25     cursor: pointer;
    26     background: url('grafika/strom-plus.gif') center left no-repeat;
    27 }
    28 
    29 ul.strom li.liBullet .bullet {
    30     cursor: default;
    31     background: url('grafika/strom-konec.png') center left no-repeat;
    32 }
    33 
    34 ul.strom li.liOpen ul {
    35     display: block;
    36 }
    37 
    38 ul.strom li.liClosed ul {
    39     display: none;
    40 }
    41 
    42 ul.strom .schema {
    43     padding-left: 22px;
    44     background: url('grafika/strom-schema.png') center left no-repeat;
    45 }
    46 
    47 ul.strom .tabulka {
    48     padding-left: 22px;
    49     background: url('grafika/strom-tabulka.png') center left no-repeat;
    50 }