diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-03-16T12·47+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-03-16T12·47+0000 |
commit | b5539e7a30da963af3e5967e2af2524a5e99efbb (patch) | |
tree | 2ef96ba10653d5582040312b543ec11c3075dad3 /src/log2xml/logfile.css | |
parent | 9d2669d218d03d64c69a702a96fc87ee1fd3a9d0 (diff) |
* Store paths are now abbreviated in the generated HTML file.
Hovering over the abbreviated path will reveal the full path. This probably only works in Mozilla.
Diffstat (limited to 'src/log2xml/logfile.css')
-rw-r--r-- | src/log2xml/logfile.css | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/log2xml/logfile.css b/src/log2xml/logfile.css index e240eb381520..342cf25839d2 100644 --- a/src/log2xml/logfile.css +++ b/src/log2xml/logfile.css @@ -64,3 +64,45 @@ tr.y > td.dummy > div.dummy border-left: 3px solid #6185a0; border-bottom: 3px solid #6185a0; } + + +em.storeref +{ + color: #500000; +} + + +em.storeref:hover +{ + background-color: #eeeeee; +} + + +*.popup { + display: none; +/* background: url('http://losser.st-lab.cs.uu.nl/~mbravenb/menuback.png') repeat; */ + background: #ffffcd; + border: solid #555555 1px; + position: absolute; + top: 1.5em; + left: 0.5em; + margin: 0; + padding: 0; + z-index: 100; +} + + +em.storeref { + position: static; +} + + +span.z { + position: absolute; + width: 100%; +} + + +em.storeref:hover > span.z > *.popup { + display: block; +} |