Added confirmation page for monitoring + a few tweaks.
This commit is contained in:
parent
1b173b79d4
commit
0bdce5debb
24 changed files with 431 additions and 72 deletions
55
app/styles/views/_confirmMonitoring.scss
Normal file
55
app/styles/views/_confirmMonitoring.scss
Normal file
|
@ -0,0 +1,55 @@
|
|||
.confirm-monitoring {
|
||||
@extend .jumbotron, .container;
|
||||
|
||||
.actions {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.back-button {
|
||||
@extend .btn, .btn-lg, .btn-info;
|
||||
}
|
||||
|
||||
.summary {
|
||||
@extend .well;
|
||||
|
||||
display: table;
|
||||
margin: {
|
||||
left: auto;
|
||||
right: auto;
|
||||
top: 30px;
|
||||
bottom: 30px;
|
||||
};
|
||||
|
||||
border: 3px dashed $gray;
|
||||
|
||||
.icon {
|
||||
@extend .fa, .fa-heartbeat;
|
||||
|
||||
display: table-cell;
|
||||
|
||||
color: $brand-primary;
|
||||
font-size: 64px;
|
||||
}
|
||||
|
||||
.node {
|
||||
@extend .dl-horizontal;
|
||||
|
||||
display: table-cell;
|
||||
|
||||
overflow: hidden;
|
||||
|
||||
font-family: monospace;
|
||||
font-size: 24px;
|
||||
|
||||
dt {
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
dd {
|
||||
text-overflow: ellipsis;
|
||||
margin-left: 120px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -10,7 +10,7 @@
|
|||
}
|
||||
|
||||
.actions {
|
||||
margin-bottom: 10px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.token-hint {
|
||||
|
@ -24,18 +24,32 @@
|
|||
}
|
||||
|
||||
.summary {
|
||||
.node {
|
||||
@extend .well;
|
||||
@extend .well;
|
||||
|
||||
border: 3px dashed $gray;
|
||||
font-family: monospace;
|
||||
font-size: 32px;
|
||||
}
|
||||
display: table;
|
||||
|
||||
margin: {
|
||||
left: auto;
|
||||
right: auto;
|
||||
top: 30px;
|
||||
bottom: 30px;
|
||||
}
|
||||
|
||||
border: 3px dashed $gray;
|
||||
font-family: monospace;
|
||||
font-size: 32px;
|
||||
|
||||
.icon {
|
||||
@extend .fa, .fa-trash;
|
||||
|
||||
display: table-cell;
|
||||
|
||||
padding-right: 18px;
|
||||
}
|
||||
|
||||
.node {
|
||||
display: table-cell;
|
||||
}
|
||||
}
|
||||
|
||||
.back-button {
|
||||
|
|
|
@ -55,26 +55,47 @@ f-node-form {
|
|||
color: $brand-primary;
|
||||
}
|
||||
|
||||
.monitoring-active-info {
|
||||
@extend .alert-success;
|
||||
}
|
||||
|
||||
.monitoring-confirmation-info {
|
||||
@extend .alert, .alert-info;
|
||||
@extend .alert-info;
|
||||
}
|
||||
|
||||
.monitoring-confirmation-pending-info {
|
||||
@extend .alert, .alert-warning;
|
||||
@extend .alert-warning;
|
||||
}
|
||||
|
||||
.monitoring-confirmation-info, .monitoring-confirmation-pending-info {
|
||||
.monitoring-active-info,
|
||||
.monitoring-confirmation-info,
|
||||
.monitoring-confirmation-pending-info {
|
||||
@extend .alert;
|
||||
|
||||
display: table;
|
||||
|
||||
.icon, .message {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
.icon {
|
||||
@extend .fa, .fa-exclamation-triangle;
|
||||
@extend .fa;
|
||||
|
||||
font-size: 24px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.icon, .message {
|
||||
display: table-cell;
|
||||
.monitoring-active-info {
|
||||
.icon {
|
||||
@extend .fa-heartbeat;
|
||||
}
|
||||
}
|
||||
|
||||
.monitoring-confirmation-info,
|
||||
.monitoring-confirmation-pending-info {
|
||||
.icon {
|
||||
@extend .fa-exclamation-triangle;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue