You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by jm...@apache.org on 2016/05/05 22:39:44 UTC

[2/3] incubator-guacamole-website git commit: Add legacy Mozilla/Webkit styles.

Add legacy Mozilla/Webkit styles.


Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/commit/63a82c3f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/tree/63a82c3f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/diff/63a82c3f

Branch: refs/heads/master
Commit: 63a82c3f34b1208b3ecd5acd5a27a945e91eb8d0
Parents: 292c632
Author: Michael Jumper <mj...@apache.org>
Authored: Thu May 5 14:19:31 2016 -0700
Committer: Michael Jumper <mj...@apache.org>
Committed: Thu May 5 14:19:31 2016 -0700

----------------------------------------------------------------------
 styles/main.css | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/63a82c3f/styles/main.css
----------------------------------------------------------------------
diff --git a/styles/main.css b/styles/main.css
index c788b44..5b61906 100644
--- a/styles/main.css
+++ b/styles/main.css
@@ -47,8 +47,12 @@ div#header > * {
     padding-left: 1.5em;
     background-image: url('/images/guac-logo.png');
     background-repeat: no-repeat;
-    background-size: 1em;
-    background-position: 0.25em center;
+    -moz-background-size:    1em;
+    -webkit-background-size: 1em;
+    background-size:         1em;
+    -moz-background-position:    0.25em center;
+    -webkit-background-position: 0.25em center;
+    background-position:         0.25em center;
 }
 
 #content > ul.features {
@@ -75,6 +79,8 @@ ul.features li::before {
     height: 1in;
     width: 1in;
     background: #304730;
+    -moz-border-radius: 1in;
+    -webkit-border-radius: 1in;
     border-radius: 1in;
     display: block;
     position: absolute;
@@ -82,12 +88,18 @@ ul.features li::before {
     top: 50%;
     margin-top: -0.5in;
     background-repeat: no-repeat;
+    -moz-background-size: 75%;
+    -webkit-background-size: 75%;
     background-size: 75%;
+    -moz-background-position: center;
+    -webkit-background-position: center;
     background-position: center;
 }
 
 ul.features li.apache::before {
     background-image: url('/images/feather.png');
+    -moz-background-size: 40%;
+    -webkit-background-size: 40%;
     background-size: 40%;
 }