diff --git a/src/app/modules/time-clock/components/time-entries-summary/time-entries-summary.component.css b/src/app/modules/time-clock/components/time-entries-summary/time-entries-summary.component.css index e69de29bb..52f46bed6 100644 --- a/src/app/modules/time-clock/components/time-entries-summary/time-entries-summary.component.css +++ b/src/app/modules/time-clock/components/time-entries-summary/time-entries-summary.component.css @@ -0,0 +1,25 @@ +.current-elapsed-time-box{ + border-color: #FF5E0A; + border-width: 2px; + background-color: #FF5E0A; + color: white; + border-radius: .25rem; +} + +.clock-out{ + text-align: center; +} + +.bt-clock-out{ + background: #00baee; + color: #fff; + padding: 7px 20px; +} + +.bt-clock-out:hover{ + background: #10a5ce; + box-shadow: 0px 1px 5px 2px rgba(0,0,0,0.56); + -webkit-box-shadow: 0px 1px 5px 2px rgba(0,0,0,0.56); + -moz-box-shadow: 0px 1px 5px 2px rgba(0,0,0,0.56); + color: #fff; +} diff --git a/src/app/modules/time-clock/components/time-entries-summary/time-entries-summary.component.html b/src/app/modules/time-clock/components/time-entries-summary/time-entries-summary.component.html index dcca3ca07..97fb1c24e 100644 --- a/src/app/modules/time-clock/components/time-entries-summary/time-entries-summary.component.html +++ b/src/app/modules/time-clock/components/time-entries-summary/time-entries-summary.component.html @@ -1,22 +1,43 @@ +
+ You clocked in at + {{ activeTimeEntry?.start_date | date:'shortTime' }} +
+- You clocked in at - {{ activeTimeEntry?.start_date | date:'shortTime' }} -
Hi {{ username }}, please select a project to clock-in.
@@ -19,7 +15,4 @@