diff options
author | Andreas Gohr <andi@splitbrain.org> | 2006-05-19 22:29:00 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2006-05-19 22:29:00 +0200 |
commit | 64c9cfd50fc230a56c886d1c45d84a4f98dcc4c7 (patch) | |
tree | 336ab699099111d08ac409284a78897fd6d2394f /lib/tpl/default | |
parent | 72f0e11f3f8692c524a51556f05c9c55631ad449 (diff) | |
download | rpg-64c9cfd50fc230a56c886d1c45d84a4f98dcc4c7.tar.gz rpg-64c9cfd50fc230a56c886d1c45d84a4f98dcc4c7.tar.bz2 |
media manager enhancements
Separate scrolling for right and left side of the manager (like frames)
Show syntax example for simple copy'n'paste if no JavaScript available.
darcs-hash:20060519202900-7ad00-9b20bd7993d3687f83b807a81cd23051b16785db.gz
Diffstat (limited to 'lib/tpl/default')
-rw-r--r-- | lib/tpl/default/media.css | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/lib/tpl/default/media.css b/lib/tpl/default/media.css index 96aac41ce..805abc467 100644 --- a/lib/tpl/default/media.css +++ b/lib/tpl/default/media.css @@ -2,17 +2,28 @@ * The CSS in here cotrols the appearance of the media manager */ +#media__manager { + height: 100%; + overflow: hide; +} + #media__left { width: 30%; - float: left; border-right: solid 1px __dark__; + + height: 100%; + overflow: auto; + position: absolute; + left: 0; } #media__right { - width: 68%; - float: left; - border-left: solid 1px __dark__; - margin-left: -1px; + width: 69.9%; + + height: 100%; + overflow: auto; + position: absolute; + right: 0; } #media__tree img { @@ -71,6 +82,11 @@ vertical-align: text-bottom; } +#media__content div.example { + color: __darkgray__; + margin-left: 1em; +} + /* --- upload form --- */ #media__content form.upload { |