Skip to content

Commit

Permalink
Fix panel input bg (#368)
Browse files Browse the repository at this point in the history
* Show project administrators

* Fix panel input bg
  • Loading branch information
kyle-ssg authored Sep 28, 2021
1 parent 3e668ca commit 03a2edc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions frontend/web/styles/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ $nav-icon-color-dark: $dark-highlight;

// Input
$input-bg: #fff;
$input-bg-alt: #f7f7f7;
$input-bg-dark: $dark-bg-0;
$input-color-dark: $body-text-dark;

Expand Down
12 changes: 12 additions & 0 deletions frontend/web/styles/project/_panel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@
.panel-heading {
background-color: transparent;
}
input[type="text"] {
background: $input-bg-alt;
}
}
&--nested {
border-top-left-radius: 0 !important;
Expand All @@ -73,6 +76,15 @@

}
}
.dark {
.panel {
&--transparent {
input[type="text"] {
background: $input-bg-dark;
}
}
}
}

.header{
&--icon{
Expand Down

0 comments on commit 03a2edc

Please sign in to comment.