Skip to content

Commit

Permalink
Merge pull request #694 from Security-Onion-Solutions/cogburn/detecti…
Browse files Browse the repository at this point in the history
…ons-in-alerts

Cogburn/detections in alerts
  • Loading branch information
coreyogburn authored Dec 12, 2024
2 parents 76c0f8f + ec96bfc commit 66de90a
Show file tree
Hide file tree
Showing 12 changed files with 2,149 additions and 529 deletions.
55 changes: 53 additions & 2 deletions html/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Elastic License 2.0.
*/
/* Vuetify theme overrides */
.v-application {
.v-application, html {
background-color: rgb(var(--v-theme-background)) !important;
}

Expand Down Expand Up @@ -897,4 +897,55 @@ ul ul ul {

.text-primary .v-switch__thumb {
background-color: rgb(var(--v-theme-primary)) !important;
}
}

.groupBy {
position: relative;
}

#detection-col {
top: 70px;
position: sticky;
width: 100%;
max-height: calc(100vh - 64px - 40px - 10px);
overflow-y: auto;
padding-right: 12px !important;
}

.v-theme--dark .highlight-row {
background-color: rgba(255, 255, 255, 0.12) !important;
}

.v-theme--light .highlight-row {
background-color: rgba(0, 0, 0, 0.12) !important;
}

.quicklinks {
display: flex;
flex-direction: row;
justify-content: space-around;
}

.quicklinks > i {
cursor: pointer;
}

.component-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #21212180;
z-index: 1000;
}

.component-overlay .v-container {
height: 100%;
width: 100%;
}

.component-overlay .v-progress-circular {
position: sticky;
top: 50%;
}
1,382 changes: 900 additions & 482 deletions html/index.html

Large diffs are not rendered by default.

Loading

0 comments on commit 66de90a

Please sign in to comment.