diff options
author | Jasmin Jessich <jasmin@anw.at> | 2017-05-14 23:57:33 +0200 |
---|---|---|
committer | Jasmin Jessich <jasmin@anw.at> | 2017-05-18 23:33:01 +0200 |
commit | 95625cfeb04659d9419b12642458e3d5a139a899 (patch) | |
tree | 884dc5252a2dbc68b72c2a08299d6cd1bea34938 /css | |
parent | be4f333e60a6d992e11610d9918ca745db23902b (diff) | |
download | vdr-plugin-live-95625cfeb04659d9419b12642458e3d5a139a899.tar.gz vdr-plugin-live-95625cfeb04659d9419b12642458e3d5a139a899.tar.bz2 |
Patched with osd-patch.txt
From http://www.vdr-portal.de/board16-video-disk-recorder/board55-vdr-plugins/p1234887-live-patch-f%C3%BCr-osd-ohne-ausgabeplugin/#post1234887
Diffstat (limited to 'css')
-rw-r--r-- | css/styles.css | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/css/styles.css b/css/styles.css index cef24b3..d32e935 100644 --- a/css/styles.css +++ b/css/styles.css @@ -1065,6 +1065,68 @@ div.screenshot img { height: 320px; } + +/* ############################## + # Remote page - OSD + ############################## +*/ + +#osd { + background-color:black; + color:white; + height: 320px; + width: 569px; +} +.osd { + padding: 5px 0px 5px 10px; + position:relative; +} +.osd div { + margin:0px; + tab-size:4; + font-family: "Courier New", Courier, monospace; +} +.osdMessage { + position:absolute; + overflow:auto; + top:250px; + max-height: 100px; + min-height:20px; + width: 510px; + background-color:yellow; + color:black; + padding:10px; + border:2px solid red; +} +.osdText, .osdItems { + overflow:auto; + overflow-x:hidden; + height: 267px; + width: 555px; + margin:5px 0px !important; +} +.osdItem, .osdTitle { + cursor:pointer; + white-space: nowrap; +} +.osdItem.selected { + background-color:#cccccc; + color:#000000; +} +.osdButtons {} +.osdButtons div { + float:left; + margin-right:5px; + padding:2px; + width:130px; + text-align: center; + cursor:pointer; +} +.osdButtonGreen {background-color:green} +.osdButtonYellow {background-color:yellow;color:black} +.osdButtonBlue {background-color:blue} +.osdButtonRed {background-color:red} + /* ############################## # Error widget |