2021-07-26 18:41:36 +00:00
|
|
|
.manage-schedule-page {
|
|
|
|
&__header-wrap {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2021-12-01 23:37:33 +00:00
|
|
|
height: 38px;
|
2021-07-26 18:41:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-08-05 14:48:00 +00:00
|
|
|
|
|
|
|
.form-field {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2021-07-26 18:41:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
margin-right: $pad-large;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
font-size: $large;
|
|
|
|
|
|
|
|
.fleeticon {
|
|
|
|
color: $core-fleet-blue;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fleeticon-success-check {
|
|
|
|
color: $ui-success;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fleeticon-offline {
|
|
|
|
color: $ui-error;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fleeticon-mia {
|
|
|
|
color: $core-fleet-black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__description {
|
2021-11-10 18:46:16 +00:00
|
|
|
margin: 0;
|
2021-12-01 23:37:33 +00:00
|
|
|
margin-bottom: $pad-xxlarge;
|
2021-07-26 18:41:36 +00:00
|
|
|
|
|
|
|
h2 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $core-fleet-black;
|
|
|
|
font-weight: $regular;
|
|
|
|
font-size: $small;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
2021-08-05 14:48:00 +00:00
|
|
|
color: $core-dark-blue-grey;
|
2021-07-26 18:41:36 +00:00
|
|
|
margin: 0;
|
|
|
|
font-size: $x-small;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__action-button-container {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
font-size: $x-small;
|
2021-07-29 19:47:04 +00:00
|
|
|
|
|
|
|
img {
|
|
|
|
transform: scale(0.5);
|
|
|
|
}
|
2021-07-26 18:41:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__advanced-button {
|
2021-08-09 16:38:13 +00:00
|
|
|
margin-right: $pad-medium;
|
2021-07-26 18:41:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__modal-buttons {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
.button:first-child {
|
|
|
|
margin-right: $pad-medium;
|
|
|
|
}
|
|
|
|
}
|
2021-08-05 14:48:00 +00:00
|
|
|
|
|
|
|
.Select.is-open {
|
|
|
|
.Select-value-label {
|
|
|
|
color: $core-vibrant-blue !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-23 17:10:43 +00:00
|
|
|
&__details {
|
|
|
|
display: inline-flex;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-left: $pad-small;
|
|
|
|
margin-top: -20px;
|
|
|
|
|
|
|
|
.hint {
|
|
|
|
color: $core-fleet-black;
|
|
|
|
|
|
|
|
&--brand {
|
|
|
|
color: $core-vibrant-blue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__all-teams-table {
|
|
|
|
.table-container__header {
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
border-right: 1px solid #e2e4ea !important;
|
|
|
|
}
|
2021-10-06 16:55:57 +00:00
|
|
|
|
|
|
|
.query_name__header {
|
2021-10-22 20:05:49 +00:00
|
|
|
width: calc(50%);
|
2021-10-06 16:55:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.interval__header {
|
2021-10-22 20:05:49 +00:00
|
|
|
width: calc(20%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.performance_header {
|
|
|
|
width: calc(30%);
|
|
|
|
max-width: none;
|
2021-10-06 16:55:57 +00:00
|
|
|
}
|
2021-09-23 17:10:43 +00:00
|
|
|
}
|
2021-07-26 18:41:36 +00:00
|
|
|
}
|