This commit is contained in:
Sacha Greif 2012-09-24 10:09:53 +09:00
parent fe9e64f894
commit 0ce2900c6d
4 changed files with 16 additions and 8 deletions

View file

@ -141,6 +141,10 @@ body {
z-index: 50; }
/* line 33, ../sass/partials/_main.scss */
.footer {
text-align: center; }
/* line 36, ../sass/partials/_main.scss */
#tlkio {
position: fixed;
top: 0px;
@ -152,13 +156,13 @@ body {
transition: ease-out right 300ms 0ms;
z-index: 1000;
background: #333; }
/* line 40, ../sass/partials/_main.scss */
/* line 43, ../sass/partials/_main.scss */
#tlkio.open {
right: 0px;
-webkit-box-shadow: -1px 0px 5px rgba(0, 0, 0, 0.15);
-moz-box-shadow: -1px 0px 5px rgba(0, 0, 0, 0.15);
box-shadow: -1px 0px 5px rgba(0, 0, 0, 0.15); }
/* line 44, ../sass/partials/_main.scss */
/* line 47, ../sass/partials/_main.scss */
#tlkio .open-chat {
display: block;
background: #7ac0e4;

View file

@ -30,6 +30,9 @@ body{
width:100%;
z-index:50;
}
.footer{
text-align:center;
}
#tlkio{
position:fixed;
top:0px;

View file

@ -5,10 +5,8 @@
</div>
{{/constant}}
{{/if}}
{{#constant}}
<div class="footer grid">
{{{footer_code}}}
</div>
{{{analytics_code}}}
{{/constant}}
<div class="footer grid">
{{{footer_code}}}
</div>
{{{analytics_code}}}
</template>

View file

@ -1,3 +1,6 @@
Template.footer.footer_code = function(){
return getSetting('footer_code');
}
Template.footer.analytics_code = function(){
return getSetting('analytics_code');
}