Skip to content

Commit

Permalink
fix: use Lumo colors for popup button overlay (#4269) (#4273)
Browse files Browse the repository at this point in the history
Co-authored-by: Tomi Virkki <[email protected]>
  • Loading branch information
vaadin-bot and tomivirkki authored Nov 30, 2022
1 parent 3add351 commit e842ee6
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ export const spreadsheetStyles = css`
border: none;
color: #474747;
outline: none;
background-color: initial;
}
.v-spreadsheet .functionbar .arrow {
position: absolute;
Expand Down Expand Up @@ -1253,7 +1254,7 @@ export const spreadsheetOverlayStyles = css`
#spreadsheet-overlays .v-spreadsheet-popupbutton-overlay {
padding: 4px 4px;
border-radius: 4px;
background-color: white;
background-color: var(--lumo-base-color, #fff);
color: #474747;
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.091);
-webkit-backface-visibility: hidden;
Expand Down Expand Up @@ -1290,7 +1291,6 @@ export const spreadsheetOverlayStyles = css`
gap: 4px;
}
#spreadsheet-overlays .v-spreadsheet-popupbutton-overlay-header {
background: white;
height: 18px;
position: relative;
width: 100%;
Expand Down Expand Up @@ -1322,5 +1322,6 @@ export const spreadsheetOverlayStyles = css`
height: 18px;
line-height: 18px;
text-align: center;
color: var(--lumo-body-text-color);
}
`;

0 comments on commit e842ee6

Please sign in to comment.