mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
119 lines
2.0 KiB
SCSS
119 lines
2.0 KiB
SCSS
.manage-schedule-page {
|
|
&__header-wrap {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 38px;
|
|
}
|
|
|
|
&__header {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.form-field {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
&__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 {
|
|
margin: 0;
|
|
margin-bottom: $pad-xxlarge;
|
|
|
|
h2 {
|
|
text-transform: uppercase;
|
|
color: $core-fleet-black;
|
|
font-weight: $regular;
|
|
font-size: $small;
|
|
}
|
|
|
|
p {
|
|
color: $ui-fleet-black-75;
|
|
margin: 0;
|
|
font-size: $x-small;
|
|
font-style: italic;
|
|
}
|
|
}
|
|
|
|
&__action-button-container {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
&__advanced-button {
|
|
margin-right: $pad-medium;
|
|
}
|
|
|
|
.Select.is-open {
|
|
.Select-value-label {
|
|
color: $core-vibrant-blue !important;
|
|
}
|
|
}
|
|
|
|
.schedule-table {
|
|
.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;
|
|
max-width: 175px; // Truncates at smaller widths
|
|
}
|
|
.interval__cell {
|
|
width: auto;
|
|
}
|
|
.actions__cell {
|
|
width: auto;
|
|
}
|
|
@media (min-width: $break-1400) {
|
|
.interval_cell {
|
|
width: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.no-team-schedule {
|
|
border: 1px solid #e2e4ea;
|
|
box-sizing: border-box;
|
|
border-radius: 8px;
|
|
}
|
|
}
|