mirror of
https://github.com/SigNoz/signoz.git
synced 2026-04-25 13:20:24 +01:00
Some checks are pending
build-staging / prepare (push) Waiting to run
build-staging / js-build (push) Blocked by required conditions
build-staging / go-build (push) Blocked by required conditions
build-staging / staging (push) Blocked by required conditions
Release Drafter / update_release_draft (push) Waiting to run
* refactor: remove light mode styles from various components and update color variables * fix: remove hardcoded background in celery
71 lines
1.0 KiB
SCSS
71 lines
1.0 KiB
SCSS
.widget-header-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 36px;
|
|
width: 100%;
|
|
padding: 0.5rem;
|
|
box-sizing: border-box;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
|
|
cursor: move;
|
|
|
|
.ant-input-group-addon {
|
|
border: none;
|
|
background-color: var(--l1-background);
|
|
}
|
|
.search-header-icons {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.widget-header-title-container {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.widget-header-title {
|
|
max-width: 80%;
|
|
}
|
|
|
|
.widget-header-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.widget-header-more-options {
|
|
visibility: hidden;
|
|
border: none;
|
|
box-shadow: none;
|
|
cursor: pointer;
|
|
font: 14px;
|
|
font-weight: 600;
|
|
padding: 8px;
|
|
}
|
|
|
|
.widget-header-more-options-visible {
|
|
visibility: visible;
|
|
}
|
|
|
|
.widget-api-actions {
|
|
padding-right: 0.25rem;
|
|
}
|
|
|
|
.long-tooltip {
|
|
.ant-tooltip-content {
|
|
max-height: 500px;
|
|
overflow: auto;
|
|
}
|
|
&.ant-tooltip {
|
|
max-width: 500px;
|
|
}
|
|
}
|
|
|
|
.info-tooltip {
|
|
cursor: pointer;
|
|
}
|