forked from membase/ns_server
-
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.
Dashboard group controls revision membase#1
- added styles for the row of disclosure, group name, save & delete controls - changed the behavior of editing the group: - - focus on the group name shows save and delete icons - - blur or clicking save/delete hides the icons & blurs the name field - - typing in the name field extends the width of the field dynamically!! - added styles for vertical spacing of the groups from one another - added a new HTML template for specifically deleting groups - formatted A LOT of code >> attributes should be indented 3 spaces Change-Id: I43450db86b6a115192518508341c138cf0488ba9 Reviewed-on: http://review.couchbase.org/106669 Reviewed-by: Pavel Blagodov <[email protected]> Tested-by: Pavel Blagodov <[email protected]>
- Loading branch information
1 parent
d699f14
commit 2de8a89
Showing
5 changed files
with
200 additions
and
98 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
17 changes: 17 additions & 0 deletions
17
priv/public/ui/app/mn_admin/mn_statistics/mn_statistics_group_delete.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,17 @@ | ||
<div class="dialog-small"> | ||
<h2 class="panel-header"> | ||
Delete Group | ||
</h2> | ||
<form ng-submit="$close()"> | ||
<div class="panel-content"> | ||
<div class="row flex-left"> | ||
<span class="icon fa-warning fa-2x red-3"></span> | ||
<p>Delete this group and all its charts?</p> | ||
</div> | ||
</div> | ||
<div class="panel-footer"> | ||
<a ng-click="$dismiss()">Cancel</a> | ||
<button type="submit" mn-focus="">Delete Group</button> | ||
</div> | ||
</form> | ||
</div> |
Oops, something went wrong.