Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions src/ServicePulse.Host/app/css/particular.css
Original file line number Diff line number Diff line change
Expand Up @@ -1095,6 +1095,19 @@ div.danger.sc-restart-warning > strong {
padding-top: 15px;
}

a.btn-feedback, a.btn-feedback:visited, a.btn-feedback:focus {
color: #fff !important;
background-color: #0DB3C8 !important;
padding: 6px 16px !important;
margin: 14px 0 0 14px;
border-radius: 3px;
font-weight: bold;
}

a.btn-feedback i.fa {
color: #fff;
}

.failed-message {
padding: 0;
height: 100%;
Expand Down Expand Up @@ -1148,6 +1161,16 @@ input[type=checkbox] {
opacity: 1;
}

a.btn-feedback:hover {
background-color: hsl(194, 95%, 61%) !important;
font-weight: bold;
}

a.btn-feedback:active {
background-color: #00729C !important;
font-weight: bold;
}

.check {
padding-right: 0px;
height: 100%;
Expand Down Expand Up @@ -1327,8 +1350,15 @@ span.metadata.danger, i.fa.fa-trash-o.danger, sp-moment.danger {
padding-bottom: 4px;
margin-bottom: 10px;
}

a.btn-feedback {
width: 130px !important;
margin: 10px 15px 22px !important;
padding-left: 20px !important;
}
}


@media only screen and (max-width: 480px) {
.sidebar-label { margin: 3px 0 14px; }

Expand Down
8 changes: 7 additions & 1 deletion src/ServicePulse.Host/app/layout/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<li ng-class="{ active: isActive('/endpoints') }">
<a href="#/endpoints">
<i class="fa fa-heart icon-white"></i>
<span class="navbar-label">Endpoints Overview</span>
<span class="navbar-label">Endpoints</span>
<span ng-show="failedheartbeats > 0" class="badge badge-important ">{{failedheartbeats | number}}</span>
</a>
</li>
Expand All @@ -50,6 +50,12 @@
<span class="navbar-label">Configuration</span>
</a>
</li>
<li>
<a class="btn-feedback" href="https://github.com/Particular/ServicePulse/issues/new" target="_blank">
<i class="fa fa-comment"></i>
<span class="navbar-label">Feedback</span>
</a>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
Expand Down