-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hide decision buttons until hover and show on hover. #26
- Loading branch information
1 parent
be607aa
commit 910924f
Showing
3 changed files
with
46 additions
and
30 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
30 changes: 30 additions & 0 deletions
30
ui/web/src/main/resources/templates/support/sourceBlock.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,30 @@ | ||
<!DOCTYPE html> | ||
<div xmlns:th="http://www.thymeleaf.org" | ||
xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout" class="sourceBlock"> | ||
<div class="sourceBlockBody"> | ||
<div class="matchingProperties"> | ||
<div class="status"></div> | ||
<div class="filePath"></div> | ||
<div class="folderStats"> | ||
<span class="message"></span> | ||
<span class="data"> | ||
Files <span class="badge files"></span> | ||
Matched <span class="badge matched"></span> | ||
Matchable <span class="badge matchable"></span> | ||
Dups <span class="badge duplicates"></span> | ||
</span> | ||
</div> | ||
<div class="fileName"></div> | ||
<div class="fileSize"></div> | ||
<div class="timeStamp"></div> | ||
</div> | ||
<div class="source_image" title="SimpleHint"> | ||
<a href="#" class="source_anch"><img class="img-thumbnail" /></a> | ||
</div> | ||
<div class="decisionBlock"> | ||
<span class="decisionButton btn_LATER glyphicon glyphicon-time" value="later" ></span> | ||
<span class="decisionButton btn_APPROVE glyphicon glyphicon-star" value="approve" grade="PICTURE"></span> | ||
<span class="decisionButton btn_DUPLICATE glyphicon glyphicon-remove" value="duplicate" grade="IMPORT"></span> | ||
</div> | ||
</div> | ||
</div> |