Skip to content

Commit

Permalink
Fix popover colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Dunn committed Dec 26, 2024
1 parent ec6789a commit c43e385
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions css/barrel.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
margin: 0;
}

body {
body,
[popover] {
-webkit-font-smoothing: antialiased;
}

Expand Down Expand Up @@ -371,7 +372,8 @@ html {
margin: 0px;
}

body {
body,
[popover] {
font-family: var(--main-font);
line-height: var(--line-height);
font-size: var(--font-size);
Expand Down Expand Up @@ -612,7 +614,9 @@ select {
min-height: calc(min(var(--control-height), 100%));
width: fit-content;
flex-basis: min-content;
line-height: calc(var(--control-height) - calc(var(--control-border-width ) * 2))
line-height: calc(
var(--control-height) - calc(var(--control-border-width) * 2)
);
/*Don't set button height, remember they can be multiine*/
}

Expand Down Expand Up @@ -679,7 +683,6 @@ div {
border-color: var(--border-color);
}


/********************Basic Layout******************************/

/*Headings and lines */
Expand Down Expand Up @@ -1128,10 +1131,11 @@ header:not(.undecorated) .tool-bar {
text-align: start;
}

& button, & .button{
& button,
& .button {
user-select: none;
}

& > *,
& fieldset > * {
margin-block-end: var(--padding);
Expand Down Expand Up @@ -1930,7 +1934,7 @@ iframe.h-center {
user-select: none;
}

.selectable{
.selectable {
user-select: auto !important;
}

Expand Down Expand Up @@ -2232,7 +2236,7 @@ input:invalid:not(.specificity_hack) {
flex-wrap: wrap;
}

.tool-bar{
.tool-bar {
user-select: none;
}

Expand Down

0 comments on commit c43e385

Please sign in to comment.