-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #933 Fixes #1193 WIP; TOI as mct-include; layout uses flex-box; preparing to move TOI sass into conductor-v2 directory;
- Loading branch information
1 parent
42acf92
commit 1a53430
Showing
7 changed files
with
126 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
platform/features/conductor-v2/conductor/res/templates/time-of-interest.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!-- Note: - val-to-right should be applied when l-toi-holder left < 150px --> | ||
<div class="l-toi-holder show-val hidden" | ||
ng-class="{ 'pinned': toi.pinned, 'val-to-right': toi.left < 20 }" | ||
ng-style="{'left': toi.left + '%'}"> | ||
<div class="l-toi"> | ||
<a class="t-button-unpin icon-button" title="Unset Time of Interest" | ||
ng-click="toi.dismiss()"></a> | ||
<a class="t-button-resync icon-button" title="Re-sync Time of Interest" | ||
ng-click="toi.resync()"></a> | ||
</div> | ||
<span class="l-toi-val">{{toi.toiText}}</span> | ||
</div> | ||
|
||
<!-- Note: - val-to-right should be applied when l-toi-holder left < 150px --> | ||
<div class="l-toi-holder show-val" | ||
ng-class="{ 'pinned': true, 'val-to-right': toi.left < 20 }" | ||
ng-style="{'left': 20 + '%'}"> | ||
<div class="l-toi"> | ||
<span class="l-toi-buttons"> | ||
<a class="t-button-unpin icon-button" title="Unset Time of Interest" | ||
ng-click="toi.dismiss()"></a> | ||
<a class="t-button-resync icon-button" title="Re-sync Time of Interest" | ||
ng-click="toi.resync()"></a> | ||
</span> | ||
<span class="l-toi-val">{{toi.toiText}}2016-09-16 21:30:30</span> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters