From 1bb2446cf5970a26b6fc8b4690f3e0273fcc8f4b Mon Sep 17 00:00:00 2001 From: Jess Martin Date: Thu, 27 Feb 2014 19:11:51 -0500 Subject: [PATCH 1/4] Add an ID to the container for app overlay. This should allow application authors to style their application's containing
in whatever way is convenient for them. --- support/client/lib/vwf/view/document.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/client/lib/vwf/view/document.js b/support/client/lib/vwf/view/document.js index 66db65ec9..e6c828e7a 100644 --- a/support/client/lib/vwf/view/document.js +++ b/support/client/lib/vwf/view/document.js @@ -58,7 +58,7 @@ define( [ "module", "vwf/view", "vwf/utility", "jquery" ], function( module, vie // Load the file and insert it into the main page. - var container = jQuery( "body" ).append( "
" ).children( ":last" ); + var container = jQuery( "body" ).append( "
" ).children( ":last" ); container.load( "admin/chrome", function( responseText, textStatus ) { From b4f580ade292d5b1c718028abd77d91396604c7d Mon Sep 17 00:00:00 2001 From: Jess Martin Date: Thu, 27 Feb 2014 19:13:33 -0500 Subject: [PATCH 2/4] Remove global styles from global stylesheet. --- support/client/lib/index.css | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/support/client/lib/index.css b/support/client/lib/index.css index 63c1ce234..a1fba011e 100644 --- a/support/client/lib/index.css +++ b/support/client/lib/index.css @@ -8,27 +8,6 @@ body { margin: 0px; } -h1, h2, h3, h4, h5, h6 { - font-family: Verdana, Arial, Helvetica, sans-serif; -} - -table { - font-family: Verdana, Arial, Helvetica, sans-serif; -} - -form { - margin: 2em; -} - -label { - font-size: 18px; -} - -input { - font-size: 18px; - padding: 5px; -} - .vwf-properties { background-color: #DCC; } @@ -266,11 +245,6 @@ input { left:20px; } - -h1, h2, h3, h4, h5, h6, body, legend, label { -text-shadow: 0px 0px 0 rgba(0, 0, 0, 0.3); -} - .pace { -webkit-pointer-events: none; pointer-events: none; From a2519eae419c49f6ee8a391fe9f1eeda87348a46 Mon Sep 17 00:00:00 2001 From: Jess Martin Date: Thu, 27 Feb 2014 19:16:36 -0500 Subject: [PATCH 3/4] Banish inline styles. --- support/client/lib/index.css | 24 +++++++++++++++--------- support/client/lib/index.html | 4 +--- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/support/client/lib/index.css b/support/client/lib/index.css index a1fba011e..337150d36 100644 --- a/support/client/lib/index.css +++ b/support/client/lib/index.css @@ -316,12 +316,18 @@ body { } #incompatibleBrowser { - visibility: hidden; - position: absolute; - left: 0px; - top: 0px; - width:100%; - height:100%; - text-align:center; - z-index: 1000; - } \ No newline at end of file + visibility: hidden; + position: absolute; + left: 0px; + top: 0px; + width:100%; + height:100%; + text-align:center; + z-index: 1000; + } + +#incompatibleBrowser .warning { + color:#3090C7; + padding-top: 20px; + display: inline-block; +} diff --git a/support/client/lib/index.html b/support/client/lib/index.html index 511f62048..615fec772 100644 --- a/support/client/lib/index.html +++ b/support/client/lib/index.html @@ -154,9 +154,7 @@
-
-

Your browser does not support Virtual World Framework. Please review our requirements for supported browser versions.
-
+ Your browser does not support Virtual World Framework. Please review our requirements for supported browser versions.
From 5b6bd48a201363033b23c90f6d40b0b76274dfe9 Mon Sep 17 00:00:00 2001 From: Eric Burns Date: Tue, 27 Jan 2015 10:45:38 -0500 Subject: [PATCH 4/4] Remove some unused styles in index.css --- support/client/lib/index.css | 52 ------------------------------------ 1 file changed, 52 deletions(-) diff --git a/support/client/lib/index.css b/support/client/lib/index.css index 337150d36..14aab2992 100644 --- a/support/client/lib/index.css +++ b/support/client/lib/index.css @@ -193,58 +193,6 @@ body { width: 300px; } -.overlay { - position:absolute; - top:30%; - width:99%; - pointer-events:none; -} - -.overlay p { - padding:0px; - margin:0px; -} - -.overlay a:link { - color:#888888; -} - -.overlay a:visited { - color:#888888; -} - -.overlay a:hover { - color:#CCCCCC; -} - -.loading { - margin:auto auto; - color:#FFF; - width:600px; - height:400px; - background:#050505; - -moz-border-radius: 20px; - -webkit-border-radius: 20px; - -khtml-border-radius: 20px; - border-radius: 20px; - font:18px Arial; - /*visibility: hidden;*/ -} - -.loadText { -} - - -.requirements { - margin-left: 100px; -} - -.req { - font-size:14px; - position:relative; - left:20px; -} - .pace { -webkit-pointer-events: none; pointer-events: none;