diff options
author | Gehad elrobey <gehadelrobey@gmail.com> | 2014-06-10 04:45:31 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-15 09:23:27 -0700 |
commit | 8ea5441b79c860520f8bc28ad905196ac58ad37c (patch) | |
tree | fa565ce9967404641f7000b8fcc1216a2244612f /theme/light.css | |
parent | 29c2f88802dff3708a323f7673966d4aee71ba82 (diff) | |
download | subsurface-8ea5441b79c860520f8bc28ad905196ac58ad37c.tar.gz |
HTML: Show dive profile embedded in HTML5 canvas
Plot samples from dive computer (depth,time) with HTML5 canvas.
Add very small API for curve drawing and coloring. Add the dive
equipment to the detailed dive view.
in the dive list when a dive is expanded you can show the dive
profile,equipments and dive information by clicking on 'show more
details'.
Fixing the two themes to work well with the new div added that
carry detailed dive information.
Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'theme/light.css')
-rw-r--r-- | theme/light.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/theme/light.css b/theme/light.css index 589bbddda..77540ba00 100644 --- a/theme/light.css +++ b/theme/light.css @@ -192,6 +192,46 @@ ul:hover{ margin-bottom:10px; } +#profileCanvas{ + border:1px solid #d3d3d3; + width:98%; + margin:1%; + height:300px; +} + +#diveListPanel{ + padding:5px; + width:90%; + margin:0% 5% 0% 5%; + margin-bottom:50px; + background-color: rgba(88,121,139,0.3); + box-shadow: 10px 10px 5px #888888; +} + +.Cyl{ + padding-right:25px; +} + +#diveinfo{ + border-style:solid; +} + +#diveprofile{ + border-style:solid; +} + +#dive_equipments{ + border-style:solid; +} + +#divestats{ + border-style:solid; +} + +#bookmarks{ + border-style:solid; +} + @media (max-width: 768px) { #divePanel{ padding:4px; |