| @@ -94,8 +94,12 @@ | ||
| 94 | 94 | padding: 10px; |
| 95 | 95 | font-weight: bold; |
| 96 | 96 | text-align: center; |
| 97 | 97 | } |
| 98 | + | |
| 99 | + .visualizer-settings__charts-footer { | |
| 100 | + font-size: small; | |
| 101 | + } | |
| 98 | 102 | |
| 99 | 103 | .visualizer-settings__charts-controls { |
| 100 | 104 | width: 100%; |
| 101 | 105 | position: absolute; |
| @@ -107,8 +111,13 @@ | ||
| 107 | 111 | } |
| 108 | 112 | } |
| 109 | 113 | } |
| 110 | 114 | |
| 115 | + .dataTables_wrapper { | |
| 116 | + background: #fff; | |
| 117 | + padding: 10px; | |
| 118 | + } | |
| 119 | + | |
| 111 | 120 | .visualizer-no-charts { |
| 112 | 121 | padding-top: 25px; |
| 113 | 122 | } |
| 114 | 123 | } |
| @@ -114,8 +123,13 @@ | ||
| 114 | 123 | } |
| 115 | 124 | |
| 116 | 125 | .visualizer-settings__chart { |
| 117 | 126 | text-align: center; |
| 127 | + | |
| 128 | + .dataTables_wrapper { | |
| 129 | + background: #fff; | |
| 130 | + padding: 10px; | |
| 131 | + } | |
| 118 | 132 | } |
| 119 | 133 | |
| 120 | 134 | .visualizer-settings__controls { |
| 121 | 135 | margin: 0; |
| @@ -225,8 +239,133 @@ | ||
| 225 | 239 | } |
| 226 | 240 | } |
| 227 | 241 | } |
| 228 | 242 | |
| 243 | +.visualizer-json-query-modal { | |
| 244 | + .components-modal__content { | |
| 245 | + padding-left: 0; | |
| 246 | + padding-right: 0; | |
| 247 | + | |
| 248 | + .components-modal__header { | |
| 249 | + margin: 0; | |
| 250 | + } | |
| 251 | + } | |
| 252 | + | |
| 253 | + .components-icon-button { | |
| 254 | + margin: 10px 0; | |
| 255 | + } | |
| 256 | + | |
| 257 | + .visualizer-json-query-modal-headers-panel { | |
| 258 | + padding: 0 0 1em 2.2em; | |
| 259 | + | |
| 260 | + .components-base-control { | |
| 261 | + display: inline-block; | |
| 262 | + } | |
| 263 | + | |
| 264 | + .visualizer-json-query-modal-field-separator { | |
| 265 | + padding: 0 10px; | |
| 266 | + } | |
| 267 | + } | |
| 268 | + | |
| 269 | + .viz-editor-table { | |
| 270 | + tbody { | |
| 271 | + tr { | |
| 272 | + &:first-child { | |
| 273 | + background-color: #ececec !important; | |
| 274 | + } | |
| 275 | + } | |
| 276 | + } | |
| 277 | + | |
| 278 | + tr { | |
| 279 | + th { | |
| 280 | + background-color: #cccccc; | |
| 281 | + } | |
| 282 | + } | |
| 283 | + | |
| 284 | + thead { | |
| 285 | + tr { | |
| 286 | + th { | |
| 287 | + &:nth-child(n+1) { | |
| 288 | + cursor: move !important; | |
| 289 | + } | |
| 290 | + } | |
| 291 | + } | |
| 292 | + } | |
| 293 | + } | |
| 294 | + | |
| 295 | + #visualizer-json-query-table { | |
| 296 | + margin-bottom: 10px; | |
| 297 | + } | |
| 298 | + | |
| 299 | + ul { | |
| 300 | + list-style: disc; | |
| 301 | + margin-left: 10px; | |
| 302 | + } | |
| 303 | +} | |
| 304 | + | |
| 305 | +.visualizer-db-query-modal { | |
| 306 | + .CodeMirror-scroll { | |
| 307 | + overflow: hidden !important; | |
| 308 | + height: 50%; | |
| 309 | + margin: 0; | |
| 310 | + padding: 0; | |
| 311 | + } | |
| 312 | + | |
| 313 | + .CodeMirror-wrap { | |
| 314 | + height: 200px; | |
| 315 | + padding: 15px; | |
| 316 | + color: #fff; | |
| 317 | + background: #282923; | |
| 318 | + font-size: 15px; | |
| 319 | + margin-bottom: 20px; | |
| 320 | + | |
| 321 | + .CodeMirror-cursor { | |
| 322 | + border-left: 1px solid #fff !important; | |
| 323 | + } | |
| 324 | + | |
| 325 | + .CodeMirror-placeholder { | |
| 326 | + color: #fff; | |
| 327 | + } | |
| 328 | + | |
| 329 | + pre { | |
| 330 | + color: #fff !important; | |
| 331 | + } | |
| 332 | + | |
| 333 | + .cm-keyword { | |
| 334 | + color: #f92472 !important; | |
| 335 | + } | |
| 336 | + | |
| 337 | + .cm-comment { | |
| 338 | + color: #74705d !important; | |
| 339 | + } | |
| 340 | + | |
| 341 | + .cm-number { | |
| 342 | + color: #fff !important; | |
| 343 | + } | |
| 344 | + | |
| 345 | + .cm-string { | |
| 346 | + color: #fff !important; | |
| 347 | + } | |
| 348 | + } | |
| 349 | + | |
| 350 | + ul { | |
| 351 | + list-style: disc; | |
| 352 | + margin-left: 10px; | |
| 353 | + } | |
| 354 | + | |
| 355 | + .db-wizard-error { | |
| 356 | + color: #f00; | |
| 357 | + } | |
| 358 | + | |
| 359 | + .visualizer-db-query-actions { | |
| 360 | + .components-button { | |
| 361 | + &:first-child { | |
| 362 | + margin-right: 10px; | |
| 363 | + } | |
| 364 | + } | |
| 365 | + } | |
| 366 | +} | |
| 367 | + | |
| 229 | 368 | .htContextMenu { |
| 230 | 369 | &:not( .htGhostTable ) { |
| 231 | 370 | z-index: 999999; |
| 232 | 371 | } |
| @@ -231,10 +370,28 @@ | ||
| 231 | 370 | z-index: 999999; |
| 232 | 371 | } |
| 233 | 372 | } |
| 234 | 373 | |
| 235 | -.htDatepickerHolder { | |
| 374 | +.htDatepickerHolder, | |
| 375 | +.CodeMirror-hints, | |
| 376 | +.DTCR_clonedTable, | |
| 377 | +.DTCR_pointer { | |
| 236 | 378 | z-index: 999999 !important; |
| 379 | +} | |
| 380 | + | |
| 381 | +.components-panel { | |
| 382 | + .components-select-control { | |
| 383 | + height:auto !important; | |
| 384 | + } | |
| 385 | +} | |
| 386 | +@media ( min-width: 768px ) { | |
| 387 | + .visualizer-json-query-modal { | |
| 388 | + width: 668px; | |
| 389 | + } | |
| 390 | + | |
| 391 | + .visualizer-db-query-modal .CodeMirror-wrap { | |
| 392 | + min-width: 550px; | |
| 393 | + } | |
| 237 | 394 | } |
| 238 | 395 | |
| 239 | 396 | @media ( max-width: 768px ) { |
| 240 | 397 | .visualizer-settings { |