Files
signoz/frontend/src/container/GridCardLayout/WidgetHeader/WidgetHeader.styles.scss
Yunus M feea9e9b36
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… (#11080)
* refactor: remove light mode styles from various components and update color variables

* fix: remove hardcoded background in celery
2026-04-25 06:57:25 +00:00

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;
}