Skip to content

Commit

Permalink
fix: same background colour for popups, remove background color for e…
Browse files Browse the repository at this point in the history
…mbed tableau
  • Loading branch information
dana-cfc4 committed Oct 10, 2023
1 parent 96f2f3a commit bb73a31
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions src/less/tableau.less
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
.tableau-wrapper {
padding: @tableauWrapperPadding;
margin: @tableauWrapperMargin;
background-color: @tableauWrapperBackground;

.tableau-debug {
margin: 0 auto 1rem auto;
Expand Down Expand Up @@ -182,11 +181,19 @@
#tableau-note-popup,
#tableau-sources-popup {
.ui.popup {
background-color: #f9f9f9;
min-width: 600px;
}
}

#tableau-note-popup,
#tableau-sources-popup,
#tableau-download-popup {
.ui.popup {
background-color: @grey-1;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;

&::before {
background-color: #f9f9f9;
background-color: @grey-1;
}

.sources-list > li,
Expand All @@ -197,11 +204,17 @@
a:hover {
color: @secondaryColor;
}
}

.sources-list {
margin: 0;
list-style: decimal inside;
padding-inline-start: 0;
.sources-list {
margin: 0;
list-style: decimal inside;
padding-inline-start: 0;
}

@media screen and (max-width: @largestMobileScreen) {
.ui.popup {
min-width: 300px;
}
}
}
Expand Down

0 comments on commit bb73a31

Please sign in to comment.