polish
This commit is contained in:
parent
fc7defd1ee
commit
919d0b9896
@ -68,14 +68,11 @@ h1 {
|
|||||||
margin-left: 20% !important;
|
margin-left: 20% !important;
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
height: 28px !important;
|
height: 28px !important;
|
||||||
float: right;
|
|
||||||
}
|
}
|
||||||
.eachDay {
|
.eachDay {
|
||||||
position: relative;
|
position: relative;
|
||||||
font-family: Lato;
|
font-family: Lato;
|
||||||
color: #353535;
|
|
||||||
max-width: 30%;
|
max-width: 30%;
|
||||||
background-color: #136FB5;
|
|
||||||
box-shadow: 4px 5px 3px 2px #444;
|
box-shadow: 4px 5px 3px 2px #444;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
@ -85,10 +82,10 @@ h1 {
|
|||||||
padding-left: 3%;
|
padding-left: 3%;
|
||||||
padding-right: 5%;
|
padding-right: 5%;
|
||||||
|
|
||||||
-webkit-transition: transform 0.5s ease;
|
-webkit-transition: transform 0.5s ease, background-color 0.5s ease;
|
||||||
-moz-transition: transform 0.5s ease;
|
-moz-transition: transform 0.5s ease, background-color 0.5s ease;
|
||||||
-ms-transition: transform 0.5s ease;
|
-ms-transition: transform 0.5s ease, background-color 0.5s ease;
|
||||||
transition: transform 0.5s ease;
|
transition: transform 0.5s ease, background-color 0.5s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.eachDay:hover {
|
.eachDay:hover {
|
||||||
@ -101,9 +98,8 @@ h1 {
|
|||||||
.recent {
|
.recent {
|
||||||
color: #353535;
|
color: #353535;
|
||||||
font-size: 160%;
|
font-size: 160%;
|
||||||
background-color: #5BEF78;
|
min-width:45%;
|
||||||
min-width:40%;
|
max-width:45%;
|
||||||
max-width:40%;
|
|
||||||
padding-top:3%;
|
padding-top:3%;
|
||||||
padding-bottom:3%;
|
padding-bottom:3%;
|
||||||
}
|
}
|
||||||
@ -122,6 +118,14 @@ h1 {
|
|||||||
padding-top:2%;
|
padding-top:2%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.AC {
|
||||||
|
background-color: #5BEF78;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Health {
|
||||||
|
background-color: #136FB5;
|
||||||
|
}
|
||||||
|
|
||||||
.pulltab {
|
.pulltab {
|
||||||
position:fixed;
|
position:fixed;
|
||||||
margin-top:0%;
|
margin-top:0%;
|
||||||
|
|||||||
@ -19,10 +19,12 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template name="recent">
|
<template name="recent">
|
||||||
|
<div class="recent eachDay {{aftertext}}">
|
||||||
<p class="type">{{aftertext}} </p><p class="date">{{pretext}}</p>
|
<p class="type">{{aftertext}} </p><p class="date">{{pretext}}</p>
|
||||||
{{#if allowed}}
|
{{#if allowed}}
|
||||||
<i class="fa fa-times fa-3x"></i>
|
<i class="fa fa-times fa-3x"></i>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template name="client">
|
<template name="client">
|
||||||
@ -33,13 +35,11 @@
|
|||||||
<div class="scheduleList">
|
<div class="scheduleList">
|
||||||
|
|
||||||
{{#each mostrecent}}
|
{{#each mostrecent}}
|
||||||
<div class="recent eachDay">
|
|
||||||
{{> recent}}
|
{{> recent}}
|
||||||
</div>
|
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
{{#each sched}}
|
{{#each sched}}
|
||||||
<div class="eachDay">
|
<div class="eachDay {{aftertext}}">
|
||||||
{{> day}}
|
{{> day}}
|
||||||
</div>
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|||||||
@ -10,7 +10,7 @@ schedule.permit(['insert', 'update', 'remove']).never().apply();
|
|||||||
SyncedCron.add({
|
SyncedCron.add({
|
||||||
name: 'Remove Entries past today',
|
name: 'Remove Entries past today',
|
||||||
schedule: function(parser) {
|
schedule: function(parser) {
|
||||||
return parser.recur().on('00:00:00').time();
|
return parser.recur().on('14:35:00').time();
|
||||||
},
|
},
|
||||||
job: function() {
|
job: function() {
|
||||||
var today = moment().format("X");
|
var today = moment().format("X");
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user