root/java/sql-vyuka/web/strom.css @ 68:261fa1211b78

Revision 68:261fa1211b78, 1.1 KB (checked in by František Kučera <franta-hg@…>, 15 years ago)

Změna kurzoru (ruka) u tabulek a pohledů ve stromu – po kliknutí načítají příslušný SELECT příkaz.

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    cursor: pointer;
51}
52
53ul.strom .pohled {
54    padding-left: 22px;
55    background: url('grafika/strom-pohled.png') center left no-repeat;
56    cursor: pointer;
57}
Note: See TracBrowser for help on using the browser.