Firefox now works... mostly
This commit is contained in:
@@ -39,10 +39,10 @@ check@1.2.4
|
||||
useraccounts:iron-routing
|
||||
wizonesolutions:canonical
|
||||
standard-minifier-js@1.2.1
|
||||
shell-server
|
||||
shell-server@0.2.1
|
||||
seba:minifiers-autoprefixer
|
||||
nikogosovd:multiple-uihooks
|
||||
templates:array
|
||||
ecmascript
|
||||
es5-shim
|
||||
ecmascript@0.6.1
|
||||
es5-shim@4.6.15
|
||||
differential:vulcanize
|
||||
|
||||
@@ -1 +1 @@
|
||||
METEOR@1.4.2.3
|
||||
METEOR@1.4.2.6
|
||||
|
||||
@@ -60,7 +60,7 @@ iron:url@1.0.11
|
||||
jquery@1.11.10
|
||||
lai:collection-extensions@0.2.1_1
|
||||
launch-screen@1.1.0
|
||||
less@2.7.8
|
||||
less@2.7.9
|
||||
livedata@1.0.18
|
||||
localstorage@1.0.12
|
||||
logging@1.1.16
|
||||
@@ -69,8 +69,8 @@ mdg:validation-error@0.5.1
|
||||
meteor@1.6.0
|
||||
meteor-base@1.0.4
|
||||
meteorhacks:subs-manager@1.6.4
|
||||
minifier-css@1.2.15
|
||||
minifier-js@1.2.15
|
||||
minifier-css@1.2.16
|
||||
minifier-js@1.2.17
|
||||
minimongo@1.0.19
|
||||
mobile-experience@1.0.4
|
||||
mobile-status-bar@1.0.13
|
||||
@@ -108,7 +108,7 @@ spacebars-compiler@1.1.0
|
||||
splendido:accounts-emails-field@1.2.0
|
||||
splendido:accounts-meld@1.3.1
|
||||
srp@1.0.10
|
||||
standard-minifier-js@1.2.1
|
||||
standard-minifier-js@1.2.2
|
||||
templates:array@1.0.3
|
||||
templating@1.3.0
|
||||
templating-compiler@1.3.0
|
||||
|
||||
@@ -19,3 +19,24 @@
|
||||
app-drawer-layout.layout {
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
#accountSummary > #background {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#accountSummary > #background > #backgroundFrontLayer {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
background-size: cover;
|
||||
background-image: url(/png/paper-dice-crown.png);
|
||||
}
|
||||
|
||||
@@ -8,7 +8,9 @@
|
||||
<paper-toast id="global-toast" duration="5000">
|
||||
{{> Template.dynamic template=globalToastTemplate data=globalToastData }}
|
||||
</paper-toast>
|
||||
{{> dialogStack}}
|
||||
<dicecloud-wrapper>
|
||||
{{> dialogStack}}
|
||||
</dicecloud-wrapper>
|
||||
</template>
|
||||
|
||||
<template name="appDrawer">
|
||||
|
||||
@@ -45,6 +45,7 @@
|
||||
|
||||
"/custom_components/dicecloud-icons/dicecloud-icons.html",
|
||||
"/custom_components/dicecloud-selector/dicecloud-selector.html",
|
||||
"/custom_components/dicecloud-wrapper/dicecloud-wrapper.html",
|
||||
"/custom_components/paper-checkbox/paper-checkbox.html",
|
||||
"/custom_components/paper-diff-slider/paper-diff-slider.html",
|
||||
"/custom_components/app-theme.html"
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
<!--
|
||||
Wrap some content in a polymer element, but do nothing else
|
||||
This is a dirty hack to prevent unwarpped elements from having their events
|
||||
broken by Blaze.
|
||||
-->
|
||||
|
||||
<link rel="import" href="../../components/polymer/polymer.html">
|
||||
|
||||
<dom-module id="dicecloud-wrapper">
|
||||
<template>
|
||||
<content></content>
|
||||
</template>
|
||||
<script>
|
||||
Polymer({
|
||||
is: "dicecloud-wrapper"
|
||||
});
|
||||
</script>
|
||||
</dom-module>
|
||||
Reference in New Issue
Block a user