mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
added gravatar photo to settings page. moved action items in vault listing to left side for better mobile access
This commit is contained in:
@@ -77,6 +77,16 @@ form div.validation-errors ul {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: @screen-sm-min) {
|
||||||
|
.settings-photo {
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
img {
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Buttons */
|
/* Buttons */
|
||||||
|
|
||||||
.btn-table {
|
.btn-table {
|
||||||
|
|||||||
@@ -11,6 +11,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<form role="form" name="profileForm" ng-submit="profileForm.$valid && save(model)" api-form="savePromise">
|
<form role="form" name="profileForm" ng-submit="profileForm.$valid && save(model)" api-form="savePromise">
|
||||||
<div class="box-body">
|
<div class="box-body">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-sm-9">
|
||||||
<div class="callout callout-danger validation-errors" ng-show="profileForm.$errors">
|
<div class="callout callout-danger validation-errors" ng-show="profileForm.$errors">
|
||||||
<h4>Errors have occured</h4>
|
<h4>Errors have occured</h4>
|
||||||
<ul>
|
<ul>
|
||||||
@@ -36,6 +38,14 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-sm-3 settings-photo">
|
||||||
|
<a href="http://www.gravatar.com/" target="_blank">
|
||||||
|
<img src="//www.gravatar.com/avatar/{{ main.userProfile.email | gravatar }}.jpg?s=150&d=mm" class="img-rounded img-responsive" alt="User Image">
|
||||||
|
</a>
|
||||||
|
<a href="http://www.gravatar.com/" target="_blank" class="btn btn-link">Update Photo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="box-footer">
|
<div class="box-footer">
|
||||||
<button type="submit" class="btn btn-primary btn-flat" ng-disabled="profileForm.$loading">
|
<button type="submit" class="btn btn-primary btn-flat" ng-disabled="profileForm.$loading">
|
||||||
<i class="fa fa-refresh fa-spin loading-icon" ng-show="profileForm.$loading"></i>Save
|
<i class="fa fa-refresh fa-spin loading-icon" ng-show="profileForm.$loading"></i>Save
|
||||||
|
|||||||
@@ -35,19 +35,19 @@
|
|||||||
<table class="table table-striped table-hover">
|
<table class="table table-striped table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th style="max-width: 200px;">Site</th>
|
<th style="width: 75px; min-width: 75px;"></th>
|
||||||
<th>Username</th>
|
<th>Site</th>
|
||||||
<th style="min-width: 150px;"></th>
|
<th style="width: 300px;">Username</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr ng-repeat="site in folderSites = (sites | filter: { folderId: folder.id } | filter: (main.searchVaultText || '') | orderBy: ['name', 'username'])">
|
<tr ng-repeat="site in folderSites = (sites | filter: { folderId: folder.id } | filter: (main.searchVaultText || '') | orderBy: ['name', 'username'])">
|
||||||
<td>{{site.name}}</td>
|
<td>
|
||||||
<td>{{site.username}}</td>
|
|
||||||
<td class="text-right">
|
|
||||||
<button type="button" ng-click="deleteSite(site)" class="btn btn-link btn-table" uib-tooltip="Delete"><i class="fa fa-lg fa-trash"></i></button>
|
<button type="button" ng-click="deleteSite(site)" class="btn btn-link btn-table" uib-tooltip="Delete"><i class="fa fa-lg fa-trash"></i></button>
|
||||||
<button type="button" ng-click="editSite(site)" class="btn btn-link btn-table" uib-tooltip="View/Edit"><i class="fa fa-lg fa-pencil"></i></button>
|
<button type="button" ng-click="editSite(site)" class="btn btn-link btn-table" uib-tooltip="View/Edit"><i class="fa fa-lg fa-pencil"></i></button>
|
||||||
</td>
|
</td>
|
||||||
|
<td>{{site.name}}</td>
|
||||||
|
<td>{{site.username}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Reference in New Issue
Block a user