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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__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 {
|
2022-11-01 19:59:26 +00:00
|
|
|
color: $ui-fleet-black-75;
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__advanced-button {
|
2021-08-09 16:38:13 +00:00
|
|
|
margin-right: $pad-medium;
|
2021-07-26 18:41:36 +00:00
|
|
|
}
|
|
|
|
|
2021-08-05 14:48:00 +00:00
|
|
|
.Select.is-open {
|
|
|
|
.Select-value-label {
|
|
|
|
color: $core-vibrant-blue !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-04 16:56:30 +00:00
|
|
|
.schedule-table {
|
2022-04-07 19:12:38 +00:00
|
|
|
.data-table-block {
|
|
|
|
.data-table__table {
|
|
|
|
thead {
|
|
|
|
.query_name__header {
|
|
|
|
width: $col-lg;
|
|
|
|
}
|
|
|
|
.interval__header {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.actions__header {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
@media (min-width: $break-1400) {
|
|
|
|
.interval__header {
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tbody {
|
|
|
|
.query_name__cell {
|
|
|
|
width: $col-lg;
|
2023-01-25 16:10:15 +00:00
|
|
|
max-width: 175px; // Truncates at smaller widths
|
2022-04-07 19:12:38 +00:00
|
|
|
}
|
|
|
|
.interval__cell {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.actions__cell {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
@media (min-width: $break-1400) {
|
|
|
|
.interval_cell {
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-09-23 17:10:43 +00:00
|
|
|
}
|
2022-04-07 19:12:38 +00:00
|
|
|
|
|
|
|
.no-team-schedule {
|
|
|
|
border: 1px solid #e2e4ea;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
2021-07-26 18:41:36 +00:00
|
|
|
}
|