Skip to content

Commit 99da95e

Browse files
authored
fix ui glitches (#968)
1 parent 0f860d6 commit 99da95e

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

src/ServicePulse.Host/app/css/particular.css

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1991,6 +1991,10 @@ h1 .endpoint-status i.fa-envelope, .endpoint-status i.fa-exclamation-triangle {
19911991
text-decoration: none;
19921992
}
19931993

1994+
.endpoint-status a[ng-if="endpoint.errorCount"] {
1995+
top: -11px;
1996+
}
1997+
19941998
.monitoring-head .endpoint-status {
19951999
top: 4px;
19962000
}
@@ -1999,6 +2003,10 @@ h1 .endpoint-status i.fa-envelope, .endpoint-status i.fa-exclamation-triangle {
19992003
top: 0;
20002004
}
20012005

2006+
.monitoring-head .endpoint-status a[ng-if="endpoint.errorCount"] {
2007+
top: -5px;
2008+
}
2009+
20022010
.monitoring-head i.fa.fa-envelope {
20032011
font-size: 26px;
20042012
position: relative;
@@ -2257,7 +2265,7 @@ i.fa.pa-endpoint-lost.endpoints-overview {
22572265
.toolbar-menus.endpoint-details {
22582266
display: flex;
22592267
margin-bottom: 5px;
2260-
justify-content: end;
2268+
justify-content: flex-end;
22612269
}
22622270

22632271
.nav.nav-pills.period-selector {
@@ -3023,7 +3031,7 @@ a.remove-endpoint:hover i {
30233031
}
30243032
.filter-group {
30253033
display: flex;
3026-
justify-content: right;
3034+
justify-content: flex-end;
30273035
width: 50%;
30283036
position: relative;
30293037
top: -3px;
@@ -3139,7 +3147,7 @@ a.remove-endpoint:hover i {
31393147
}
31403148

31413149
.select-all {
3142-
width: 146px;
3150+
width: 127px;
31433151
}
31443152

31453153
.pa-check, .pa-uncheck {

src/ServicePulse.Host/app/img/check.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/ServicePulse.Host/app/img/uncheck.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/ServicePulse.Host/app/js/views/failed_messages/failed-messages-view.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h3 class="active group-title group-message-count">{{vm.selectedExceptionGroup.c
3131
<div class="row" ng-show="vm.failedMessages.length > 0">
3232
<div class="col-sm-12">
3333
<div class="btn-toolbar">
34-
<button type="button" class="btn btn-default select-all" ng-click="vm.selectAllMessages()"><span ng-show="vm.selectedIds.length == 0"><i class="fa pa-check"></i> Select all</span><span ng-hide="vm.selectedIds.length == 0"><i class="fa pa-uncheck"></i> Clear selection</span></button>
34+
<button type="button" class="btn btn-default select-all" ng-click="vm.selectAllMessages()"><span ng-show="vm.selectedIds.length == 0">Select all</span><span ng-hide="vm.selectedIds.length == 0">Clear selection</span></button>
3535
<button type="button" class="btn btn-default" ng-click="vm.retrySelected()" ng-disabled="vm.selectedIds.length == 0"><i class="fa fa-repeat"></i> Retry {{vm.selectedIds.length | number}} selected</button>
3636
<button type="button" class="btn btn-default" confirm-title="Are you sure you want to delete the selected messages?" confirm-message="If you delete, these messages won't be available for retrying unless they're later restored." confirm-click="vm.archiveSelected()" ng-disabled="vm.selectedIds.length == 0"><i class="fa fa-trash"></i> Delete {{vm.selectedIds.length | number}} selected</button>
3737
<button type="button" class="btn btn-default" confirm-title="Are you sure you want to retry the whole group?" confirm-message="Retrying a whole group can take some time and put extra load on your system. Are you sure you want to retry all these messages?" confirm-click="vm.retryExceptionGroup(vm.selectedExceptionGroup)"><i class="fa fa-repeat"></i> Retry all</button>

src/ServicePulse.Host/app/modules/monitoring/views/monitored_endpoints.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
<div class="container monitoring-view" ng-show="endpoints.length" ng-if="!isPlatformTrialExpired && !isPlatformExpired && !isInvalidDueToUpgradeProtectionExpired">
66
<div class="row monitoring-head">
7-
<div class="col-xs-6 no-side-padding list-section">
7+
<div class="col-xs-4 no-side-padding list-section">
88
<h1>Endpoints overview</h1>
99
</div>
10-
<div class="col-xs-6 no-side-padding toolbar-menus">
10+
<div class="col-xs-8 no-side-padding toolbar-menus">
1111
<div class="filter-group filter-monitoring">
1212
<ul class="nav nav-pills period-selector">
1313
<li role="presentation" ng-repeat="period in periods" ng-class="(period.value == selectedPeriod.value ? 'active' : 'notselected')">

0 commit comments

Comments
 (0)