summaryrefslogtreecommitdiffstats
path: root/polygerrit-ui/app/elements/shared/gr-page-nav/gr-page-nav.html
diff options
context:
space:
mode:
Diffstat (limited to 'polygerrit-ui/app/elements/shared/gr-page-nav/gr-page-nav.html')
-rw-r--r--polygerrit-ui/app/elements/shared/gr-page-nav/gr-page-nav.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/polygerrit-ui/app/elements/shared/gr-page-nav/gr-page-nav.html b/polygerrit-ui/app/elements/shared/gr-page-nav/gr-page-nav.html
index f98a62cbaa..3885497fde 100644
--- a/polygerrit-ui/app/elements/shared/gr-page-nav/gr-page-nav.html
+++ b/polygerrit-ui/app/elements/shared/gr-page-nav/gr-page-nav.html
@@ -1,4 +1,5 @@
<!--
+@license
Copyright (C) 2017 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
@@ -21,8 +22,8 @@ limitations under the License.
<template>
<style include="shared-styles">
#nav {
- background-color: #f5f5f5;
- border: 1px solid #eee;
+ background-color: var(--table-header-background-color);
+ border: 1px solid var(--border-color);
border-top: none;
height: 100%;
position: absolute;
@@ -39,7 +40,7 @@ limitations under the License.
}
</style>
<nav id="nav">
- <content></content>
+ <slot></slot>
</nav>
</template>
<script src="gr-page-nav.js"></script>