diff --git a/html/template/sync/intelligence-root.html b/html/template/sync/intelligence-root.html index 9082ed13..2700eb67 100644 --- a/html/template/sync/intelligence-root.html +++ b/html/template/sync/intelligence-root.html @@ -11,40 +11,6 @@ function onLoad() {} window.addEventListener("load", onLoad); - {{ end }} {{ define "content" }} @@ -71,7 +37,7 @@
Species
- @@ -80,17 +46,18 @@
Signal Type
- +
Sort By
- diff --git a/scss/custom.scss b/scss/custom.scss index 127ac70d..c480684c 100644 --- a/scss/custom.scss +++ b/scss/custom.scss @@ -53,6 +53,7 @@ $theme-colors: map-merge( @import "./rmo/status.scss"; @import "./sync/cell.scss"; @import "./sync/dashboard.scss"; +@import "./sync/intelligence.scss"; @import "./sync/notification.scss"; @import "./sync/pool-csv-upload.scss"; @import "./sync/settings.scss"; diff --git a/scss/sync/intelligence.scss b/scss/sync/intelligence.scss new file mode 100644 index 00000000..8c898c89 --- /dev/null +++ b/scss/sync/intelligence.scss @@ -0,0 +1,32 @@ +.pane-header { + font-weight: 600; +} +.workbench-map { + height: 320px; + background-color: #e9ecef; + border: 1px dashed #adb5bd; + display: flex; + align-items: center; + justify-content: center; + text-align: center; + font-weight: 500; + color: #6c757d; +} +.scroll-pane { + max-height: 75vh; + overflow-y: auto; +} +.signal-item:hover { + background-color: #f1f3f5; + cursor: pointer; +} +.tool-button { + width: 100%; + margin-bottom: 0.5rem; +} +.filter-label { + font-size: 0.75rem; + text-transform: uppercase; + color: #6c757d; + font-weight: 600; +}