diff options
author | thlo <t.lohmar@gmx.de> | 2013-09-14 18:14:06 +0200 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-09-14 18:14:06 +0200 |
commit | 230591c0f2f0398e444d8fb7642b518e55cf663e (patch) | |
tree | d70251bea75c8985738568e36b086595a7f76fd4 /smarttv-client/CSS/Main.css | |
parent | 971c1891c0f02e98859956ed8ef821cc5e53eed0 (diff) | |
download | vdr-plugin-smarttvweb-230591c0f2f0398e444d8fb7642b518e55cf663e.tar.gz vdr-plugin-smarttvweb-230591c0f2f0398e444d8fb7642b518e55cf663e.tar.bz2 |
Show Key Bindings (help overlay) when pressing the tools key.
Timer Activation and Deactivation.
Verbose start for debugging.
Scrolling popup for Debugging.
ImageViewer improvements.
Diffstat (limited to 'smarttv-client/CSS/Main.css')
-rwxr-xr-x | smarttv-client/CSS/Main.css | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/smarttv-client/CSS/Main.css b/smarttv-client/CSS/Main.css index aea87a6..93aba17 100755 --- a/smarttv-client/CSS/Main.css +++ b/smarttv-client/CSS/Main.css @@ -94,18 +94,50 @@ body { border-radius: 4px;
background: red;
}
+
+.style_timerAct {
+ width :8px;
+ height:8px;
+ border-radius: 4px;
+ background: green;
+}
+
.style_timerNone {
width :8px;
}
.style_headline {
color : black;
+ font-size:14px;
background : linear-gradient(0deg, #1e5799 0%,#2989d8 41%,#7db9e8 100%);
background : -webkit-linear-gradient(top, #1e5799 0%,#2989d8 41%,#7db9e8 100%);
border-radius: 3px;
-webkit-box-shadow: 2px 2px 1px 2px rgba(0,0,0, 0.5);
}
+
+.style_hbOverlay {
+ position: absolute;
+ z-index:70;
+ border-radius: 7px;
+ border-width:1px;
+ background:rgba(0,0,139, 0.8);
+ border-style:solid;
+ border-width:1px;
+ -webkit-box-shadow:3px 3px 7px 4px rgba(0,0,0, 0.5);
+}
+
+.style_hbOverlayRow {
+ padding-left : 5px;
+ padding-right: 5px;
+}
+
+.style_hbOverlayLElm {
+}
+.style_hbOverlayRElm {
+}
+
+
#timerScreen {
position: absolute;
left: 0px; top: 0px;
@@ -302,7 +334,7 @@ body { position: absolute;
display: none;
left: 120px; top: 10px;
- width: 720px; height: 100px;
+ width: 720px; height: 200px;
border-style:solid;
border-width:2px;
-webkit-border-radius: 7px;
|