Init
This commit is contained in:
@@ -0,0 +1,145 @@
|
||||
.catalog-page {
|
||||
min-height: calc(100vh - 6rem);
|
||||
}
|
||||
|
||||
.catalog-card {
|
||||
border: 1px solid #dbe5ef;
|
||||
border-radius: 1rem;
|
||||
box-shadow: 0 0.75rem 2rem rgba(15, 32, 55, 0.08);
|
||||
}
|
||||
|
||||
.catalog-card .card-header {
|
||||
background: linear-gradient(135deg, #edf5ff, #f7fbff);
|
||||
border-bottom: 1px solid #dbe5ef;
|
||||
border-radius: 1rem 1rem 0 0;
|
||||
}
|
||||
|
||||
.catalog-list {
|
||||
max-height: 68vh;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.catalog-list-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.catalog-list-card .catalog-list-search {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.catalog-list-card .catalog-list {
|
||||
flex: 1 1 auto;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.catalog-list-card .catalog-list-page-scroll {
|
||||
max-height: none;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.catalog-list .table tbody tr {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.catalog-list .table tbody tr.table-active {
|
||||
--bs-table-bg: #e9f3ff;
|
||||
}
|
||||
|
||||
.catalog-section-title {
|
||||
font-size: 0.9rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
color: #52708f;
|
||||
}
|
||||
|
||||
.catalog-form-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.catalog-helper {
|
||||
color: #5e7288;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.catalog-checkbox-list {
|
||||
max-height: 20rem;
|
||||
overflow: auto;
|
||||
border: 1px solid #dbe5ef;
|
||||
border-radius: 0.75rem;
|
||||
padding: 0.75rem;
|
||||
background: #fbfdff;
|
||||
}
|
||||
|
||||
.catalog-checkbox-list .form-check {
|
||||
padding: 0.35rem 0 0.35rem 1.8rem;
|
||||
}
|
||||
|
||||
.catalog-chip {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
border-radius: 999px;
|
||||
padding: 0.25rem 0.65rem;
|
||||
background: #eef6ff;
|
||||
color: #36516e;
|
||||
font-size: 0.85rem;
|
||||
margin: 0.15rem;
|
||||
}
|
||||
|
||||
.catalog-color-preview {
|
||||
width: 100%;
|
||||
height: 2.75rem;
|
||||
border-radius: 0.75rem;
|
||||
border: 1px solid #dbe5ef;
|
||||
background: rgb(255, 0, 0);
|
||||
}
|
||||
|
||||
.catalog-empty {
|
||||
padding: 1rem;
|
||||
border: 1px dashed #bfd0e2;
|
||||
border-radius: 0.75rem;
|
||||
color: #5e7288;
|
||||
background: #fbfdff;
|
||||
}
|
||||
|
||||
.catalog-slot-indicator {
|
||||
display: inline-block;
|
||||
width: 0.75rem;
|
||||
height: 0.75rem;
|
||||
border-radius: 50%;
|
||||
border: 1px solid #9caec2;
|
||||
background: #e5ebf1;
|
||||
}
|
||||
|
||||
.catalog-slot-indicator-active {
|
||||
border-color: #248a55;
|
||||
background: #2fb66d;
|
||||
box-shadow: 0 0 0 0.2rem rgba(47, 182, 109, 0.16);
|
||||
}
|
||||
|
||||
.catalog-slot-summary {
|
||||
border-top: 1px solid #dbe5ef;
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
.catalog-slot-summary-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.catalog-summary-label {
|
||||
color: #5e7288;
|
||||
font-size: 0.78rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.catalog-summary-value {
|
||||
color: #24364a;
|
||||
font-size: 0.98rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
@@ -0,0 +1,127 @@
|
||||
.complex-plan-page {
|
||||
min-height: calc(100vh - 6rem);
|
||||
}
|
||||
|
||||
.complex-plan-panel {
|
||||
border: 1px solid #dbe5ef;
|
||||
border-radius: 0.75rem;
|
||||
background: #ffffff;
|
||||
box-shadow: 0 0.75rem 2rem rgba(15, 32, 55, 0.08);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.complex-plan-panel-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
gap: 1rem;
|
||||
padding: 1rem 1.25rem;
|
||||
background: #f7fbff;
|
||||
border-bottom: 1px solid #dbe5ef;
|
||||
}
|
||||
|
||||
.complex-plan-section-title {
|
||||
font-size: 0.9rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
color: #52708f;
|
||||
}
|
||||
|
||||
.complex-plan-helper {
|
||||
color: #5e7288;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.complex-plan-table-wrap {
|
||||
max-height: calc(100vh - 24rem);
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.complex-plan-table-wrap th,
|
||||
.complex-plan-table-wrap td {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.complex-plan-run-row {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.complex-plan-run-row.active td {
|
||||
background: #eef6ff;
|
||||
}
|
||||
|
||||
.complex-plan-pagination {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 0.75rem;
|
||||
padding: 0.75rem 1rem;
|
||||
border-top: 1px solid #dbe5ef;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.complex-plan-form {
|
||||
padding: 1rem 1.25rem 1.25rem;
|
||||
}
|
||||
|
||||
.complex-plan-delete-btn {
|
||||
padding: 0.15rem 0.45rem;
|
||||
}
|
||||
|
||||
.complex-plan-detail {
|
||||
padding: 1.25rem;
|
||||
min-height: 24rem;
|
||||
}
|
||||
|
||||
.complex-plan-detail-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.complex-plan-field {
|
||||
border-bottom: 1px solid #eef4fb;
|
||||
padding-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.complex-plan-field-label {
|
||||
color: #6b7d90;
|
||||
font-size: 0.8rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.03em;
|
||||
margin-bottom: 0.2rem;
|
||||
}
|
||||
|
||||
.complex-plan-field-value {
|
||||
font-weight: 600;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.complex-plan-json {
|
||||
background: #f7fbff;
|
||||
border: 1px solid #dbe5ef;
|
||||
border-radius: 0.5rem;
|
||||
padding: 0.75rem;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
max-height: 18rem;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.complex-plan-added-surveys {
|
||||
border: 1px solid #dbe5ef;
|
||||
border-radius: 0.5rem;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.complex-plan-added-surveys th,
|
||||
.complex-plan-added-surveys td {
|
||||
padding: 0.5rem 0.75rem;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.complex-plan-detail-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,256 @@
|
||||
.current-plans-page {
|
||||
height: calc(100vh - 4.25rem);
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.current-plans-page > .d-flex:first-child {
|
||||
flex: 0 0 auto;
|
||||
margin-bottom: 0.75rem !important;
|
||||
}
|
||||
|
||||
#current-plans-alert {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.current-plans-layout {
|
||||
flex: 1 1 auto;
|
||||
min-height: 0;
|
||||
height: auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.current-plans-layout > [class*="col-"] {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.current-plans-layout > [class*="col-"] > .catalog-card,
|
||||
.current-plans-layout > [class*="col-"] > .current-plans-main-column {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.current-plans-main-column {
|
||||
min-height: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.current-plans-sidebar,
|
||||
.current-plans-missions-card,
|
||||
.current-plans-modes-card {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.current-plans-sidebar {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.current-plans-sidebar > .card-header,
|
||||
.current-plans-sidebar > .card-body:not(.catalog-list) {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.current-plans-sidebar .catalog-list {
|
||||
flex: 1 1 auto;
|
||||
min-height: 0;
|
||||
max-height: none;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.current-plans-missions-card {
|
||||
display: flex;
|
||||
flex: 0 0 auto;
|
||||
flex-direction: column;
|
||||
max-height: none;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.current-plans-missions-card .card-body {
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.current-plans-missions-card .current-plans-table-wrap {
|
||||
max-height: 15rem;
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
.current-plans-modes-card {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
flex-direction: column;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.current-plans-modes-card .card-header {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.current-plans-modes-card .card-body {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
flex-direction: column;
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.current-plans-modes-card .current-plans-table-wrap {
|
||||
flex: 1 1 auto;
|
||||
min-height: 0;
|
||||
max-height: none;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.current-plans-modes-card .catalog-empty {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 12rem;
|
||||
}
|
||||
|
||||
.current-plans-satellites-table tbody tr,
|
||||
#current-plans-missions-body tr {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.current-plans-selected-row > td {
|
||||
background: rgba(13, 110, 253, 0.12) !important;
|
||||
}
|
||||
|
||||
.current-plans-table-wrap {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.current-plans-pagination {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.current-plans-id {
|
||||
font-family: var(--bs-font-monospace);
|
||||
font-size: 0.82rem;
|
||||
}
|
||||
|
||||
.current-plans-main-text {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.current-plans-sub-text {
|
||||
color: #6c757d;
|
||||
font-size: 0.82rem;
|
||||
}
|
||||
|
||||
.current-plans-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
max-width: 100%;
|
||||
border: 1px solid rgba(108, 117, 125, 0.35);
|
||||
border-radius: 999px;
|
||||
padding: 0.1rem 0.45rem;
|
||||
font-size: 0.78rem;
|
||||
color: #495057;
|
||||
background: rgba(248, 249, 250, 0.9);
|
||||
}
|
||||
|
||||
.current-plans-mode-params {
|
||||
min-width: 11rem;
|
||||
}
|
||||
|
||||
#current-plans-modes-body tr.current-plans-mode-row-drop > td {
|
||||
background: rgba(25, 135, 84, 0.14) !important;
|
||||
}
|
||||
|
||||
#current-plans-modes-body tr.current-plans-mode-row-slots > td {
|
||||
background: rgba(255, 193, 7, 0.18) !important;
|
||||
}
|
||||
|
||||
#current-plans-modes-body tr.current-plans-mode-row-drop:hover > td {
|
||||
background: rgba(25, 135, 84, 0.22) !important;
|
||||
}
|
||||
|
||||
#current-plans-modes-body tr.current-plans-mode-row-slots:hover > td {
|
||||
background: rgba(255, 193, 7, 0.28) !important;
|
||||
}
|
||||
|
||||
.current-plans-badge-drop {
|
||||
border-color: rgba(25, 135, 84, 0.45);
|
||||
color: #0f5132;
|
||||
background: rgba(25, 135, 84, 0.14);
|
||||
}
|
||||
|
||||
.current-plans-badge-slots {
|
||||
border-color: rgba(255, 193, 7, 0.55);
|
||||
color: #664d03;
|
||||
background: rgba(255, 193, 7, 0.22);
|
||||
}
|
||||
|
||||
@media (max-width: 1199.98px) {
|
||||
.current-plans-page {
|
||||
height: auto;
|
||||
min-height: 0;
|
||||
overflow: visible;
|
||||
padding-bottom: 1rem !important;
|
||||
}
|
||||
|
||||
.current-plans-layout {
|
||||
height: auto;
|
||||
min-height: 0;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.current-plans-layout > [class*="col-"] {
|
||||
display: block;
|
||||
min-height: auto;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.current-plans-main-column,
|
||||
.current-plans-sidebar,
|
||||
.current-plans-missions-card,
|
||||
.current-plans-modes-card,
|
||||
.current-plans-missions-card .card-body,
|
||||
.current-plans-modes-card .card-body {
|
||||
height: auto;
|
||||
min-height: auto;
|
||||
}
|
||||
|
||||
.current-plans-missions-card {
|
||||
max-height: none;
|
||||
}
|
||||
|
||||
.current-plans-sidebar .catalog-list,
|
||||
.current-plans-table-wrap,
|
||||
.current-plans-missions-card .current-plans-table-wrap,
|
||||
.current-plans-modes-card .current-plans-table-wrap {
|
||||
max-height: none;
|
||||
overflow: visible;
|
||||
}
|
||||
}
|
||||
|
||||
.current-plans-actions-col {
|
||||
min-width: 13rem;
|
||||
}
|
||||
|
||||
.current-plans-actions-cell {
|
||||
min-width: 13rem;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.current-plans-action-btn + .current-plans-action-btn {
|
||||
margin-left: 0.35rem;
|
||||
}
|
||||
|
||||
#current-plans-create-modal .form-label {
|
||||
font-weight: 600;
|
||||
}
|
||||
@@ -0,0 +1,172 @@
|
||||
.dynamic-plan-page {
|
||||
min-height: calc(100vh - 6rem);
|
||||
}
|
||||
|
||||
.dynamic-plan-panel {
|
||||
border: 1px solid #dbe5ef;
|
||||
border-radius: 0.5rem;
|
||||
background: #ffffff;
|
||||
box-shadow: 0 0.75rem 2rem rgba(15, 32, 55, 0.08);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.dynamic-plan-panel-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
gap: 1rem;
|
||||
padding: 1rem 1.25rem;
|
||||
background: #f7fbff;
|
||||
border-bottom: 1px solid #dbe5ef;
|
||||
}
|
||||
|
||||
.dynamic-plan-section-title {
|
||||
font-size: 0.9rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
color: #52708f;
|
||||
}
|
||||
|
||||
.dynamic-plan-helper {
|
||||
color: #5e7288;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.dynamic-plan-form,
|
||||
.dynamic-plan-result {
|
||||
padding: 1rem 1.25rem 1.25rem;
|
||||
}
|
||||
|
||||
.dynamic-plan-runs {
|
||||
padding: 0.75rem;
|
||||
}
|
||||
|
||||
.dynamic-plan-mode-group {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.dynamic-plan-mode-group .btn {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.dynamic-plan-revolution-group {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.dynamic-plan-revolution-group .btn {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.dynamic-plan-run-item {
|
||||
width: 100%;
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
gap: 0.75rem;
|
||||
align-items: center;
|
||||
border: 1px solid #e5edf6;
|
||||
border-radius: 0.5rem;
|
||||
background: #ffffff;
|
||||
padding: 0.75rem;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.dynamic-plan-run-item + .dynamic-plan-run-item {
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.dynamic-plan-run-main {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.dynamic-plan-run-title {
|
||||
font-weight: 700;
|
||||
color: #2c4057;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.dynamic-plan-run-details {
|
||||
margin-top: 0.25rem;
|
||||
color: #63788f;
|
||||
font-size: 0.82rem;
|
||||
}
|
||||
|
||||
.dynamic-plan-run-status {
|
||||
white-space: nowrap;
|
||||
font-size: 0.78rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
color: #52708f;
|
||||
}
|
||||
|
||||
.dynamic-plan-result-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.dynamic-plan-map-controls {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
border: 1px solid #dbe5ef;
|
||||
border-radius: 0.5rem;
|
||||
background: #f7fbff;
|
||||
padding: 0.75rem;
|
||||
}
|
||||
|
||||
.dynamic-plan-map-actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-end;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.dynamic-plan-field {
|
||||
border-bottom: 1px solid #eef4fb;
|
||||
padding-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.dynamic-plan-field-label {
|
||||
color: #6b7d90;
|
||||
font-size: 0.8rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.03em;
|
||||
margin-bottom: 0.2rem;
|
||||
}
|
||||
|
||||
.dynamic-plan-field-value {
|
||||
font-weight: 600;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.dynamic-plan-json {
|
||||
background: #f7fbff;
|
||||
border: 1px solid #dbe5ef;
|
||||
border-radius: 0.5rem;
|
||||
padding: 0.75rem;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
max-height: 18rem;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.dynamic-plan-result-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.dynamic-plan-map-controls {
|
||||
align-items: stretch;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.dynamic-plan-map-actions {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,134 @@
|
||||
.group-state-sidebar .catalog-list {
|
||||
max-height: 76vh;
|
||||
}
|
||||
|
||||
.group-state-interval-cell {
|
||||
min-width: 16rem;
|
||||
font-size: 0.9rem;
|
||||
color: #42576d;
|
||||
}
|
||||
|
||||
.group-state-time-grid {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) 14rem;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.group-state-table-wrap {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.group-state-matrix-table {
|
||||
min-width: 48rem;
|
||||
}
|
||||
|
||||
.group-state-matrix-table thead th {
|
||||
min-width: 12rem;
|
||||
background: #f6faff;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.group-state-matrix-table tbody th {
|
||||
min-width: 12rem;
|
||||
background: #f9fbfe;
|
||||
}
|
||||
|
||||
.group-state-matrix-cell {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.2rem;
|
||||
font-size: 0.9rem;
|
||||
color: #344b63;
|
||||
}
|
||||
|
||||
.group-state-matrix-diagonal {
|
||||
text-align: center;
|
||||
color: #7c8ea1;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.group-state-chart-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.group-state-chart-card {
|
||||
border: 1px solid #dbe5ef;
|
||||
border-radius: 1rem;
|
||||
padding: 1rem;
|
||||
background: linear-gradient(180deg, #fbfdff, #f4f9ff);
|
||||
}
|
||||
|
||||
.group-state-chart-title {
|
||||
font-size: 0.95rem;
|
||||
font-weight: 700;
|
||||
color: #3e5c7a;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.group-state-chart-svg {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.group-state-chart-ring {
|
||||
fill: none;
|
||||
stroke: #c8d7e8;
|
||||
stroke-width: 2;
|
||||
}
|
||||
|
||||
.group-state-chart-inner {
|
||||
fill: #ffffff;
|
||||
stroke: #e6eef7;
|
||||
stroke-width: 1.5;
|
||||
}
|
||||
|
||||
.group-state-chart-center {
|
||||
font-size: 0.9rem;
|
||||
fill: #53708d;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.group-state-chart-center-value {
|
||||
font-size: 1.5rem;
|
||||
fill: #1f3650;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.group-state-chart-legend {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.group-state-legend-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.6rem;
|
||||
font-size: 0.9rem;
|
||||
color: #3d536b;
|
||||
}
|
||||
|
||||
.group-state-legend-color {
|
||||
width: 0.9rem;
|
||||
height: 0.9rem;
|
||||
border-radius: 999px;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
@media (max-width: 991.98px) {
|
||||
.group-state-time-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.group-state-interval-cell {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.group-state-matrix-table {
|
||||
min-width: 36rem;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,732 @@
|
||||
|
||||
.main-container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
width: 700px;
|
||||
min-width: 700px;
|
||||
max-width: 700px;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
background-color: #f8f9fa;
|
||||
border-right: 1px solid #dee2e6;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.sidebar-content {
|
||||
padding: 1rem;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.sidebar-header {
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: 1px solid #dee2e6;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.sidebar-controls {
|
||||
margin-bottom: 1rem;
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
.cesium-container {
|
||||
flex: 1;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
#cesiumContainer {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
/* Стили для тепловой карты */
|
||||
.heatmap-toggle {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.heatmap-toggle .btn {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.switch {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 60px;
|
||||
height: 34px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.switch input {
|
||||
opacity: 0;
|
||||
width: 0;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
.slider {
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: #ccc;
|
||||
transition: .4s;
|
||||
}
|
||||
|
||||
.slider:before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
height: 26px;
|
||||
width: 26px;
|
||||
left: 4px;
|
||||
bottom: 4px;
|
||||
background-color: white;
|
||||
transition: .4s;
|
||||
}
|
||||
|
||||
input:checked + .slider {
|
||||
background-color: #2196F3;
|
||||
}
|
||||
|
||||
input:checked + .slider:before {
|
||||
transform: translateX(26px);
|
||||
}
|
||||
|
||||
.slider.round {
|
||||
border-radius: 34px;
|
||||
}
|
||||
|
||||
.slider.round:before {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
/* Стили таблицы */
|
||||
.table-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.table-responsive {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 4px;
|
||||
background-color: white;
|
||||
overflow: hidden;
|
||||
/* Прокрутка теперь здесь */
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.table {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
margin-bottom: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.table thead {
|
||||
flex: 0 0 auto;
|
||||
display: table;
|
||||
width: 100%;
|
||||
table-layout: fixed;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 2;
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
.table tbody {
|
||||
flex: 1 1 auto;
|
||||
display: block;
|
||||
/* Убираем overflow-y: auto отсюда */
|
||||
}
|
||||
|
||||
.table tbody tr {
|
||||
display: table;
|
||||
width: 100%;
|
||||
table-layout: fixed;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.2s;
|
||||
}
|
||||
|
||||
.table tbody tr:hover {
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
.table th, .table td {
|
||||
padding: 0.5rem 0.75rem;
|
||||
vertical-align: middle;
|
||||
font-size: 0.85rem;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.table thead th {
|
||||
font-weight: 600;
|
||||
background-color: #f8f9fa;
|
||||
border-bottom: 2px solid #dee2e6;
|
||||
/* Убираем position: sticky отсюда */
|
||||
}
|
||||
|
||||
/* Фиксированные ширины столбцов */
|
||||
#table-stations th:nth-child(1),
|
||||
#table-stations td:nth-child(1) {
|
||||
width: 40px;
|
||||
min-width: 40px;
|
||||
max-width: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#table-stations th:nth-child(2),
|
||||
#table-stations td:nth-child(2) {
|
||||
width: 60%;
|
||||
min-width: 60%;
|
||||
max-width: 60%;
|
||||
}
|
||||
|
||||
#table-stations th:nth-child(3),
|
||||
#table-stations td:nth-child(3) {
|
||||
width: 40%;
|
||||
min-width: 40%;
|
||||
max-width: 40%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/* Фиксированные ширины столбцов */
|
||||
#table-request th:nth-child(1),
|
||||
#table-request td:nth-child(1) {
|
||||
width: 40px;
|
||||
min-width: 40px;
|
||||
max-width: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#table-request th:nth-child(2),
|
||||
#table-request td:nth-child(2) {
|
||||
width: 45%;
|
||||
min-width: 45%;
|
||||
max-width: 45%;
|
||||
}
|
||||
|
||||
#table-request th:nth-child(3),
|
||||
#table-request td:nth-child(3) {
|
||||
width: 10%;
|
||||
min-width: 10%;
|
||||
max-width: 10%;
|
||||
}
|
||||
|
||||
|
||||
#table-request th:nth-child(4),
|
||||
#table-request td:nth-child(4) {
|
||||
width: 25%;
|
||||
min-width: 25%;
|
||||
max-width: 25%;
|
||||
}
|
||||
|
||||
#table-request th:nth-child(5),
|
||||
#table-request td:nth-child(5) {
|
||||
width: 10%;
|
||||
min-width: 10%;
|
||||
max-width: 10%;
|
||||
}
|
||||
#table-request th:nth-child(6),
|
||||
#table-request td:nth-child(6) {
|
||||
width: 10%;
|
||||
min-width: 10%;
|
||||
max-width: 10%;
|
||||
}
|
||||
#table-request th:nth-child(7),
|
||||
#table-request td:nth-child(7) {
|
||||
width: 10%;
|
||||
min-width: 10%;
|
||||
max-width: 10%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#slotsTable th:nth-child(1),
|
||||
#slotsTable td:nth-child(1) {
|
||||
width: 14%;
|
||||
min-width: 14%;
|
||||
max-width: 14%;
|
||||
}
|
||||
|
||||
#slotsTable th:nth-child(2),
|
||||
#slotsTable td:nth-child(2) {
|
||||
width: 14%;
|
||||
min-width:14%;
|
||||
max-width: 14%;
|
||||
}
|
||||
|
||||
#slotsTable th:nth-child(3),
|
||||
#slotsTable td:nth-child(3) {
|
||||
width: 28%;
|
||||
min-width: 28%;
|
||||
max-width: 28%;
|
||||
}
|
||||
#slotsTable th:nth-child(4),
|
||||
#slotsTable td:nth-child(4) {
|
||||
width: 14%;
|
||||
min-width: 14%;
|
||||
max-width: 14%;
|
||||
}
|
||||
|
||||
#slotsTable th:nth-child(5),
|
||||
#slotsTable td:nth-child(5) {
|
||||
width: 14%;
|
||||
min-width: 14%;
|
||||
max-width: 14%;
|
||||
}
|
||||
#slotsTable th:nth-child(6),
|
||||
#slotsTable td:nth-child(6) {
|
||||
width: 8%;
|
||||
min-width: 8%;
|
||||
max-width: 8%;
|
||||
}
|
||||
#slotsTable th:nth-child(7),
|
||||
#slotsTable td:nth-child(7) {
|
||||
width: 8%;
|
||||
min-width: 8%;
|
||||
max-width: 8%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#table-satellites th:nth-child(1),
|
||||
#table-satellites td:nth-child(1) {
|
||||
width: 20%;
|
||||
min-width: 20%;
|
||||
max-width: 20%;
|
||||
}
|
||||
|
||||
#table-satellites th:nth-child(2),
|
||||
#table-satellites td:nth-child(2) {
|
||||
width: 60%;
|
||||
min-width: 60%;
|
||||
max-width: 60%;
|
||||
}
|
||||
|
||||
#table-satellites th:nth-child(3),
|
||||
#table-satellites td:nth-child(3) {
|
||||
width: 10%;
|
||||
min-width: 10%;
|
||||
max-width: 20%;
|
||||
}
|
||||
|
||||
#table-satellites th:nth-child(4),
|
||||
#table-satellites td:nth-child(4) {
|
||||
width: 10%;
|
||||
min-width: 10%;
|
||||
max-width: 20%;
|
||||
}
|
||||
|
||||
|
||||
/* Стили для сортировки */
|
||||
.table th.sortable {
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
user-select: none;
|
||||
transition: background-color 0.2s;
|
||||
padding-right: 25px;
|
||||
}
|
||||
|
||||
.table th.sortable:hover {
|
||||
background-color: #e9ecef;
|
||||
}
|
||||
|
||||
.sort-icon {
|
||||
position: absolute;
|
||||
right: 8px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
font-size: 0.8em;
|
||||
opacity: 0.5;
|
||||
transition: opacity 0.2s, color 0.2s;
|
||||
}
|
||||
|
||||
.table th.sortable:hover .sort-icon {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.table th.sortable.asc .sort-icon,
|
||||
.table th.sortable.desc .sort-icon {
|
||||
opacity: 1;
|
||||
color: #0d6efd;
|
||||
}
|
||||
|
||||
.table th.sortable.desc .sort-icon i {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
/* Чекбоксы */
|
||||
.request-checkbox {
|
||||
cursor: pointer;
|
||||
margin: 0;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
#selectAllCheckbox {
|
||||
cursor: pointer;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Бейджи */
|
||||
.badge {
|
||||
font-size: 0.75rem;
|
||||
padding: 0.25rem 0.5rem;
|
||||
min-width: 40px;
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
/* Счетчик */
|
||||
.selected-counter {
|
||||
font-size: 0.8rem;
|
||||
color: #6c757d;
|
||||
margin-top: 0.5rem;
|
||||
padding-top: 0.5rem;
|
||||
border-top: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
/* Сообщение "Нет заявок" */
|
||||
.no-requests {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100%;
|
||||
color: #6c757d;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* Полоса прокрутки теперь у .table-responsive */
|
||||
.table-responsive::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
.table-responsive::-webkit-scrollbar-track {
|
||||
background: #f1f1f1;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.table-responsive::-webkit-scrollbar-thumb {
|
||||
background: #888;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.table-responsive::-webkit-scrollbar-thumb:hover {
|
||||
background: #555;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Стили для таблицы слотов */
|
||||
.slots-container {
|
||||
animation: fadeIn 0.3s ease-in;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; transform: translateY(10px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
|
||||
.slots-header {
|
||||
padding: 10px 0;
|
||||
border-bottom: 2px solid #0d6efd;
|
||||
}
|
||||
|
||||
.slots-actions .btn {
|
||||
padding: 5px 10px;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.slots-actions .btn i {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
#slotsTable {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
#slotsTable th {
|
||||
padding: 8px 10px;
|
||||
font-weight: 600;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
background-color: #f8f9fa;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
#slotsTable td {
|
||||
padding: 6px 10px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#slotsTable .sortable-slot {
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
#slotsTable .sortable-slot:hover {
|
||||
background-color: #e9ecef;
|
||||
}
|
||||
|
||||
#slotsTable .sortable-slot .sort-icon {
|
||||
margin-left: 5px;
|
||||
font-size: 0.8rem;
|
||||
color: #6c757d;
|
||||
}
|
||||
|
||||
#slotsTable .sortable-slot:hover .sort-icon {
|
||||
color: #0d6efd;
|
||||
}
|
||||
|
||||
#slotsTable .badge {
|
||||
font-size: 0.75rem;
|
||||
padding: 4px 8px;
|
||||
}
|
||||
|
||||
#slotsTable .text-nowrap {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.coverage-satellites-list {
|
||||
max-height: 150px;
|
||||
overflow-y: auto;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.slots-summary {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.slots-summary .row {
|
||||
row-gap: 5px;
|
||||
}
|
||||
|
||||
.slots-summary small {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Адаптивность */
|
||||
@media (max-width: 768px) {
|
||||
.slots-summary .row > div {
|
||||
flex: 0 0 50%;
|
||||
max-width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
.slots-summary .row > div {
|
||||
flex: 0 0 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.slots-actions .btn {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.slots-actions .btn:not(:last-child) {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* Панель инструментов карты */
|
||||
.cesium-toolbar {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
z-index: 1000;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.toolbar-group {
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 6px;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
||||
padding: 5px;
|
||||
backdrop-filter: blur(10px);
|
||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
/* Кнопки панели инструментов */
|
||||
.cesium-toolbar-btn {
|
||||
background: white;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 4px;
|
||||
padding: 8px 12px;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
font-size: 0.9rem;
|
||||
color: #495057;
|
||||
transition: all 0.2s ease;
|
||||
min-width: 120px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.cesium-toolbar-btn:hover {
|
||||
background: #e9ecef;
|
||||
border-color: #adb5bd;
|
||||
color: #0d6efd;
|
||||
transform: translateY(-1px);
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.cesium-toolbar-btn:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.cesium-toolbar-btn.active {
|
||||
background: #0d6efd;
|
||||
border-color: #0d6efd;
|
||||
color: white;
|
||||
box-shadow: 0 2px 8px rgba(13, 110, 253, 0.4);
|
||||
}
|
||||
|
||||
.cesium-toolbar-btn.active:hover {
|
||||
background: #0b5ed7;
|
||||
border-color: #0b5ed7;
|
||||
}
|
||||
|
||||
.cesium-toolbar-btn i {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.btn-label {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/* Информация о линейке */
|
||||
.ruler-info {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
border-radius: 6px;
|
||||
padding: 10px 15px;
|
||||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
|
||||
animation: slideDown 0.3s ease;
|
||||
}
|
||||
|
||||
@keyframes slideDown {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.ruler-info-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.ruler-info i {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.ruler-info .btn-close {
|
||||
opacity: 0.7;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
|
||||
.ruler-info .btn-close:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Стили для линий линейки */
|
||||
.ruler-line {
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
z-index: 1000;
|
||||
background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.2) 100%);
|
||||
height: 2px;
|
||||
animation: pulse 2s infinite;
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0%, 100% {
|
||||
opacity: 0.6;
|
||||
}
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
/* Стили для маркеров точек */
|
||||
.ruler-marker {
|
||||
position: absolute;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background: #ff4444;
|
||||
border: 2px solid white;
|
||||
border-radius: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
box-shadow: 0 0 10px rgba(255, 68, 68, 0.8);
|
||||
pointer-events: none;
|
||||
z-index: 1001;
|
||||
}
|
||||
|
||||
/* Стили для меток расстояния */
|
||||
.ruler-label {
|
||||
position: absolute;
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
color: white;
|
||||
padding: 4px 8px;
|
||||
border-radius: 4px;
|
||||
font-size: 12px;
|
||||
pointer-events: none;
|
||||
z-index: 1002;
|
||||
white-space: nowrap;
|
||||
transform: translate(-50%, -100%);
|
||||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
/* Стили для временной линии при наведении */
|
||||
.ruler-temp-line {
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
z-index: 999;
|
||||
height: 2px;
|
||||
background: rgba(255, 255, 255, 0.5);
|
||||
width: 0;
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
.rva-page {
|
||||
min-height: calc(100vh - 6rem);
|
||||
}
|
||||
|
||||
.rva-card {
|
||||
border: 1px solid #dbe5ef;
|
||||
border-radius: 1rem;
|
||||
box-shadow: 0 0.75rem 2rem rgba(15, 32, 55, 0.08);
|
||||
}
|
||||
|
||||
.rva-card .card-header {
|
||||
background: linear-gradient(135deg, #edf5ff, #f7fbff);
|
||||
border-bottom: 1px solid #dbe5ef;
|
||||
border-radius: 1rem 1rem 0 0;
|
||||
}
|
||||
|
||||
.rva-section-title {
|
||||
font-size: 0.9rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
color: #52708f;
|
||||
}
|
||||
|
||||
.rva-helper {
|
||||
color: #5e7288;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.rva-stations {
|
||||
max-height: 26rem;
|
||||
overflow: auto;
|
||||
border: 1px solid #dbe5ef;
|
||||
border-radius: 0.75rem;
|
||||
padding: 0.75rem;
|
||||
background: #fbfdff;
|
||||
}
|
||||
|
||||
.rva-station-item {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
width: 100%;
|
||||
gap: 0.65rem;
|
||||
padding: 0.55rem 0.25rem;
|
||||
border-bottom: 1px solid #eef4fb;
|
||||
}
|
||||
|
||||
.rva-station-item.form-check {
|
||||
margin-bottom: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rva-station-item .form-check-input {
|
||||
margin-left: 0;
|
||||
margin-top: 0.2rem;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.rva-station-label {
|
||||
display: block;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.rva-station-item:last-child {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
#rva-results-head th {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#rva-results-body td {
|
||||
white-space: nowrap;
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
.satellite-pdcm-sidebar .catalog-list {
|
||||
max-height: 76vh;
|
||||
}
|
||||
|
||||
.satellite-pdcm-sidebar th:first-child,
|
||||
.satellite-pdcm-sidebar td:first-child {
|
||||
width: 45%;
|
||||
}
|
||||
|
||||
.satellite-pdcm-summary-root {
|
||||
min-height: 1.5rem;
|
||||
}
|
||||
|
||||
.satellite-pdcm-status {
|
||||
display: inline-flex;
|
||||
width: 0.75rem;
|
||||
height: 0.75rem;
|
||||
border-radius: 999px;
|
||||
margin-right: 0.5rem;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.satellite-pdcm-status-active {
|
||||
background: #2f9e44;
|
||||
box-shadow: 0 0 0 0.2rem rgba(47, 158, 68, 0.16);
|
||||
}
|
||||
|
||||
.satellite-pdcm-status-inactive {
|
||||
background: #9aa9b8;
|
||||
box-shadow: 0 0 0 0.2rem rgba(154, 169, 184, 0.16);
|
||||
}
|
||||
|
||||
.satellite-pdcm-interval-cell {
|
||||
min-width: 10.5rem;
|
||||
font-size: 0.85rem;
|
||||
color: #42576d;
|
||||
white-space: normal;
|
||||
overflow-wrap: anywhere;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.satellite-pdcm-satellite-name {
|
||||
color: #1f3650;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.satellite-pdcm-interval-line {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.satellite-pdcm-summary-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.satellite-pdcm-summary-card {
|
||||
border: 1px solid #dbe5ef;
|
||||
border-radius: 0.9rem;
|
||||
padding: 0.9rem 1rem;
|
||||
background: linear-gradient(180deg, #fbfdff, #f5f9ff);
|
||||
}
|
||||
|
||||
.satellite-pdcm-summary-label {
|
||||
font-size: 0.8rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
color: #6d8398;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.satellite-pdcm-summary-value {
|
||||
color: #1f3650;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.satellite-pdcm-table-wrap {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.satellite-pdcm-table {
|
||||
min-width: 92rem;
|
||||
}
|
||||
|
||||
.satellite-pdcm-table thead th {
|
||||
background: #f6faff;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.satellite-pdcm-table td {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@media (max-width: 991.98px) {
|
||||
.satellite-pdcm-sidebar th:first-child,
|
||||
.satellite-pdcm-sidebar td:first-child {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.satellite-pdcm-interval-cell {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.satellite-pdcm-table {
|
||||
min-width: 72rem;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user