|
| 1 | +.targets { |
| 2 | + margin-top: 32px; |
| 3 | +} |
| 4 | + |
| 5 | +.targets .targets-header { |
| 6 | + display: flex; |
| 7 | + align-items: center; |
| 8 | + justify-content: space-between; |
| 9 | + margin-bottom: 16px; |
| 10 | +} |
| 11 | + |
| 12 | +.targets .targets-title { |
| 13 | + font-size: 32px; |
| 14 | + font-weight: 700; |
| 15 | +} |
| 16 | + |
| 17 | +.targets .targets-controls { |
| 18 | + margin-bottom: 24px; |
| 19 | +} |
| 20 | + |
| 21 | +.targets .targets-controls .controls.row { |
| 22 | + display: flex; |
| 23 | + align-items: center; |
| 24 | + gap: 12px; |
| 25 | + margin-bottom: 16px; |
| 26 | +} |
| 27 | + |
| 28 | +.targets .targets-controls .controls.row:last-child { |
| 29 | + margin-bottom: 0; |
| 30 | +} |
| 31 | + |
| 32 | +.targets .targets-controls .controls.row label { |
| 33 | + font-weight: 600; |
| 34 | + color: #333; |
| 35 | + min-width: 60px; |
| 36 | +} |
| 37 | + |
| 38 | +.targets .targets-metric-select { |
| 39 | + min-width: 150px; |
| 40 | +} |
| 41 | + |
| 42 | +.targets .loading-section { |
| 43 | + display: flex; |
| 44 | + justify-content: center; |
| 45 | + align-items: center; |
| 46 | + padding: 40px; |
| 47 | +} |
| 48 | + |
| 49 | +.targets .error-section { |
| 50 | + display: flex; |
| 51 | + justify-content: center; |
| 52 | + align-items: center; |
| 53 | + padding: 40px; |
| 54 | +} |
| 55 | + |
| 56 | +.targets .error-message { |
| 57 | + color: #d32f2f; |
| 58 | + font-size: 16px; |
| 59 | +} |
| 60 | + |
| 61 | +.targets .targets-section-title { |
| 62 | + font-size: 20px; |
| 63 | + font-weight: 600; |
| 64 | + margin-bottom: 16px; |
| 65 | + color: #333; |
| 66 | +} |
| 67 | + |
| 68 | +.targets .targets-chart-section { |
| 69 | + margin-bottom: 16px; |
| 70 | +} |
| 71 | + |
| 72 | +.targets .targets-chart-container { |
| 73 | + display: flex; |
| 74 | + justify-content: center; |
| 75 | + margin-bottom: 16px; |
| 76 | + overflow-x: auto; |
| 77 | +} |
| 78 | + |
| 79 | +.targets .targets-table-section { |
| 80 | + margin-bottom: 40px; |
| 81 | +} |
| 82 | + |
| 83 | +.targets .targets-table-container { |
| 84 | + background: white; |
| 85 | + border-radius: 8px; |
| 86 | + overflow: hidden; |
| 87 | +} |
| 88 | + |
| 89 | +.targets .targets-table-container .results-table { |
| 90 | + border: 1px solid #e0e0e0; |
| 91 | + border-radius: 4px; |
| 92 | + overflow: hidden; |
| 93 | +} |
| 94 | + |
| 95 | +.targets .targets-table-container .row { |
| 96 | + display: flex; |
| 97 | + border-bottom: 1px solid #e0e0e0; |
| 98 | +} |
| 99 | + |
| 100 | +.targets .targets-table-container .row:last-child { |
| 101 | + border-bottom: none; |
| 102 | +} |
| 103 | + |
| 104 | +.targets .targets-table-container .column-headers { |
| 105 | + font-weight: 600; |
| 106 | + color: #333; |
| 107 | +} |
| 108 | + |
| 109 | +.targets .targets-table-container .result-row { |
| 110 | + transition: background-color 0.2s ease; |
| 111 | +} |
| 112 | + |
| 113 | +.targets .targets-table-container .result-row:hover { |
| 114 | + background-color: #f9f9f9; |
| 115 | +} |
| 116 | + |
| 117 | +.targets .targets-table-container .result-row.clickable { |
| 118 | + cursor: pointer; |
| 119 | +} |
| 120 | + |
| 121 | +.targets .targets-table-container .result-row.clickable:hover { |
| 122 | + background-color: #f0f0f0; |
| 123 | +} |
| 124 | + |
| 125 | +.targets .targets-table-container .name-column { |
| 126 | + flex: 1; |
| 127 | + padding: 16px 32px; |
| 128 | + min-width: 0; |
| 129 | +} |
| 130 | + |
| 131 | +.targets .targets-table-container .value-column { |
| 132 | + flex: 0 0 150px; |
| 133 | + padding: 16px 32px; |
| 134 | + text-align: right; |
| 135 | +} |
| 136 | + |
| 137 | +.targets .table-footer-controls { |
| 138 | + display: flex; |
| 139 | + justify-content: center; |
| 140 | + padding: 16px; |
| 141 | + border-top: 1px solid #e0e0e0; |
| 142 | +} |
| 143 | + |
| 144 | +.targets .load-more-button { |
| 145 | + display: flex; |
| 146 | + align-items: center; |
| 147 | + gap: 8px; |
| 148 | +} |
| 149 | + |
| 150 | +.targets .targets-table-target { |
| 151 | + word-break: break-all; |
| 152 | + overflow: hidden; |
| 153 | + text-overflow: ellipsis; |
| 154 | +} |
| 155 | + |
| 156 | +.targets .targets-table-value { |
| 157 | + font-weight: 500; |
| 158 | + white-space: nowrap; |
| 159 | +} |
| 160 | + |
| 161 | +.targets .targets-empty { |
| 162 | + display: flex; |
| 163 | + justify-content: center; |
| 164 | + align-items: center; |
| 165 | + padding: 80px 40px; |
| 166 | +} |
| 167 | + |
| 168 | +.targets .empty-message { |
| 169 | + color: #666; |
| 170 | + font-size: 16px; |
| 171 | + text-align: center; |
| 172 | +} |
| 173 | + |
| 174 | +.targets .empty-message a { |
| 175 | + text-decoration: underline; |
| 176 | +} |
| 177 | + |
| 178 | +.targets .trend-chart-hover { |
| 179 | + background: white; |
| 180 | + border: 1px solid #ccc; |
| 181 | + border-radius: 4px; |
| 182 | + padding: 8px 12px; |
| 183 | + font-size: 12px; |
| 184 | + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); |
| 185 | +} |
0 commit comments