root/java/sql-vyuka/web/strom.css @ 49:083966fa9d9d

Revision 49:083966fa9d9d, 0.9 KB (checked in by František Kučera <franta-hg@…>, 15 years ago)

Model databáze: javascript, css a obrázky pro zobrazování stromové struktury.

Line 
1ul.strom {
2    display: none;
3}
4
5ul.strom  li {
6    list-style: none;
7    margin: 3px;
8}
9
10ul.strom, ul.strom ul , ul.strom li {
11    margin-left: 10px;
12    padding: 0px;
13}
14
15ul.strom li .bullet {
16    padding-left: 16px;
17}
18
19ul.strom li.liOpen .bullet {
20    cursor: pointer;
21    background: url('grafika/strom-minus.gif') center left no-repeat;
22}
23
24ul.strom li.liClosed .bullet {
25    cursor: pointer;
26    background: url('grafika/strom-plus.gif') center left no-repeat;
27}
28
29ul.strom li.liBullet .bullet {
30    cursor: default;
31    background: url('grafika/strom-konec.png') center left no-repeat;
32}
33
34ul.strom li.liOpen ul {
35    display: block;
36}
37
38ul.strom li.liClosed ul {
39    display: none;
40}
41
42ul.strom .schema {
43    padding-left: 22px;
44    background: url('grafika/strom-schema.png') center left no-repeat;
45}
46
47ul.strom .tabulka {
48    padding-left: 22px;
49    background: url('grafika/strom-tabulka.png') center left no-repeat;
50}
Note: See TracBrowser for help on using the browser.