Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
style: TT-582 add a border radius to current elapsed time box
  • Loading branch information
LuisMS7 committed Mar 15, 2022
commit a1db874232b1f41363cf2f5cf7f9cccc9d64ae29
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
.current{
.current-elapsed-time-box{
border-color: #FF5E0A;
border-width: 2px;
background-color: #FF5E0A;
color: white;
border-radius: .25rem;
}

.clock-out{
Expand All @@ -14,12 +15,11 @@
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);
-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;
}


Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
</p>
</div>
<div class="col-2 col-sm-3">
<div class="current d-flex flex-column justify-content-center align-items-center" style="width: 50%">
<div class="current-elapsed-time-box d-flex flex-column justify-content-center align-items-center" style="width: 50%">
<h6>Current</h6>
<h3>{{ currentWorkingTime }}</h3>
</div>
</div>
<div class="col-7 clock-out">
<button
class="btn bt-clock-out"
type="button"
<button
class="btn bt-clock-out"
type="button"
(click)="clockOut()">
Clock Out
</button>
Expand All @@ -24,7 +24,7 @@ <h3>{{ currentWorkingTime }}</h3>
<h6 class="text-left"><strong>Summary</strong></h6>
<hr class="mb-4" />
<div class ="container px-0">

<div class="row pb-4">
<div class="col-12 col-sm-4">
<h6>Day</h6>
Expand All @@ -39,5 +39,5 @@ <h6>Month</h6>
<h3>{{ timeEntriesSummary?.month | timeDetails }}</h3>
</div>
</div>

</div>