diff --git a/polygerrit-ui/app/elements/change/gr-file-list/gr-file-list.html b/polygerrit-ui/app/elements/change/gr-file-list/gr-file-list.html index 96b06282f1..cb854b2ac5 100644 --- a/polygerrit-ui/app/elements/change/gr-file-list/gr-file-list.html +++ b/polygerrit-ui/app/elements/change/gr-file-list/gr-file-list.html @@ -250,7 +250,7 @@ limitations under the License. display: block; } .row.selected { - background-color: #fff; + background-color: var(--view-background-color); } .stats { display: none; diff --git a/polygerrit-ui/app/elements/change/gr-included-in-dialog/gr-included-in-dialog.html b/polygerrit-ui/app/elements/change/gr-included-in-dialog/gr-included-in-dialog.html index 77f95ec0fc..85140615c3 100644 --- a/polygerrit-ui/app/elements/change/gr-included-in-dialog/gr-included-in-dialog.html +++ b/polygerrit-ui/app/elements/change/gr-included-in-dialog/gr-included-in-dialog.html @@ -29,7 +29,7 @@ limitations under the License. padding: 4.5em 1em 1em 1em; } header { - background: #fff; + background: var(--view-background-color); border-bottom: 1px solid var(--border-color); left: 0; padding: 1em; diff --git a/polygerrit-ui/app/elements/change/gr-messages-list/gr-messages-list.html b/polygerrit-ui/app/elements/change/gr-messages-list/gr-messages-list.html index 761e8eefc2..ec917159d0 100644 --- a/polygerrit-ui/app/elements/change/gr-messages-list/gr-messages-list.html +++ b/polygerrit-ui/app/elements/change/gr-messages-list/gr-messages-list.html @@ -48,7 +48,7 @@ limitations under the License. } @keyframes fadeOut { 0% { background-color: #fff9c4; } - 100% { background-color: #fff; } + 100% { background-color: var(--view-background-color); } } #messageControlsContainer { align-items: center; diff --git a/polygerrit-ui/app/elements/core/gr-main-header/gr-main-header.html b/polygerrit-ui/app/elements/core/gr-main-header/gr-main-header.html index bdf5d3ba91..595ad335a0 100644 --- a/polygerrit-ui/app/elements/core/gr-main-header/gr-main-header.html +++ b/polygerrit-ui/app/elements/core/gr-main-header/gr-main-header.html @@ -121,7 +121,7 @@ limitations under the License. text-decoration: none; } .dropdown-content { - background-color: #fff; + background-color: var(--view-background-color); box-shadow: 0 1px 5px rgba(0, 0, 0, .3); } @media screen and (max-width: 50em) { diff --git a/polygerrit-ui/app/elements/core/gr-search-bar/gr-search-bar.html b/polygerrit-ui/app/elements/core/gr-search-bar/gr-search-bar.html index 1117bacef5..39b2f7ee5e 100644 --- a/polygerrit-ui/app/elements/core/gr-search-bar/gr-search-bar.html +++ b/polygerrit-ui/app/elements/core/gr-search-bar/gr-search-bar.html @@ -28,7 +28,7 @@ limitations under the License. display: flex; } gr-autocomplete { - background-color: white; + background-color: var(--view-background-color); border: 1px solid var(--border-color); border-radius: 2px 0 0 2px; flex: 1; diff --git a/polygerrit-ui/app/elements/diff/gr-diff-view/gr-diff-view.html b/polygerrit-ui/app/elements/diff/gr-diff-view/gr-diff-view.html index 839d3f6011..e20a7650e4 100644 --- a/polygerrit-ui/app/elements/diff/gr-diff-view/gr-diff-view.html +++ b/polygerrit-ui/app/elements/diff/gr-diff-view/gr-diff-view.html @@ -57,7 +57,7 @@ limitations under the License. } } gr-fixed-panel { - background-color: #fff; + background-color: var(--view-background-color); border-bottom: 1px solid var(--border-color); z-index: 1; } diff --git a/polygerrit-ui/app/elements/diff/gr-diff/gr-diff.html b/polygerrit-ui/app/elements/diff/gr-diff/gr-diff.html index 008a85b5e9..f45b2d35e4 100644 --- a/polygerrit-ui/app/elements/diff/gr-diff/gr-diff.html +++ b/polygerrit-ui/app/elements/diff/gr-diff/gr-diff.html @@ -87,7 +87,7 @@ limitations under the License. } .blank, .content { - background-color: #fff; + background-color: var(--view-background-color); } .full-width { width: 100%; diff --git a/polygerrit-ui/app/elements/gr-app.html b/polygerrit-ui/app/elements/gr-app.html index 62f802b953..7cfb3b0f2f 100644 --- a/polygerrit-ui/app/elements/gr-app.html +++ b/polygerrit-ui/app/elements/gr-app.html @@ -64,9 +64,10 @@ limitations under the License.