mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 01:51:40 -05:00
bugfix
This commit is contained in:
parent
fe9e64f894
commit
0ce2900c6d
4 changed files with 16 additions and 8 deletions
|
@ -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;
|
||||
|
|
|
@ -30,6 +30,9 @@ body{
|
|||
width:100%;
|
||||
z-index:50;
|
||||
}
|
||||
.footer{
|
||||
text-align:center;
|
||||
}
|
||||
#tlkio{
|
||||
position:fixed;
|
||||
top:0px;
|
||||
|
|
|
@ -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>
|
|
@ -1,3 +1,6 @@
|
|||
Template.footer.footer_code = function(){
|
||||
return getSetting('footer_code');
|
||||
}
|
||||
Template.footer.analytics_code = function(){
|
||||
return getSetting('analytics_code');
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue