diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-17 01:15:59 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-17 01:15:59 +0000 |
commit | b6ebbd4df6a6a588692bd0e5e1bbd1d920aad3e1 (patch) | |
tree | 2c29c286acbd2fab9d520b9858c1da012b191e82 /css | |
parent | 14601674821ef51d93bff42759ac44d334946045 (diff) | |
download | vdr-plugin-live-b6ebbd4df6a6a588692bd0e5e1bbd1d920aad3e1.tar.gz vdr-plugin-live-b6ebbd4df6a6a588692bd0e5e1bbd1d920aad3e1.tar.bz2 |
- Moved cRecordings locking infrastructure to RecordingsManager.
- Take care to have at any time maximum one instance of RecordingsManager
alive. This is done with a combination of boost::shared_ptr and
boost::weak_ptr. See LiveRecordingsManager() function.
- RecordingsTree now uses RecordingsManager to calculate a MD5 Hash for
each 'real' cRecording item.
- The MD5 Hash is used in the Ajax-Request to start play back of a
recording. (Server side needs implementation of this.)
- Id's are also used in the DOM for the identification of the tooltips.
- New code dependency on openssl libraries (for md5 function).
- Changed style (not yet complete) to have 'action' items also in the
recording description popup.
Diffstat (limited to 'css')
-rw-r--r-- | css/styles.css | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/css/styles.css b/css/styles.css index cad5ef2..571effe 100644 --- a/css/styles.css +++ b/css/styles.css @@ -402,14 +402,37 @@ div.domTTrecordings { border: none; } -.domTTrecordings div.re_longdescr { +.domTTrecordings div.re_description { } .domTTrecordings div.re_content { - border: 1px solid black; + padding: 0; + margin: 0; + + border-right: 1px solid #000000; + border-bottom: 1px solid #000000; background: white; } +.domTTrecordings div.re_content div.re_tools { + float: left; + width: 26px; + margin: 0; + padding: 0; + + text-align: center; + vertical-align: top; + border-right: 1px solid #C0C1DA; +} + +.domTTrecordings div.re_content div div { + margin-left: 50px; +} + +.domTTrecordings div.re_content div.re_tools a img { + margin-top: 5px; +} + .domTTrecordings div.boxheader div div a { } |