[improvement] NavBar: support custom theme (#2570)

This commit is contained in:
neverland 2019-01-20 13:44:14 +08:00 committed by GitHub
parent 8bc8e99f74
commit 6e9a097ded
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 7 deletions

View File

@ -1,21 +1,21 @@
@import '../style/var';
.van-nav-bar {
height: 46px;
position: relative;
user-select: none;
text-align: center;
line-height: 46px;
background-color: @white;
height: @nav-bar-height;
line-height: @nav-bar-height;
background-color: @nav-bar-background-color;
.van-icon {
color: @blue;
color: @nav-bar-icon-color;
vertical-align: middle;
}
&__arrow {
min-width: 1em;
font-size: 16px;
font-size: @nav-bar-arrow-size;
+ .van-nav-bar__text {
margin-left: -20px;
@ -33,7 +33,8 @@
&__title {
margin: 0 auto;
max-width: 60%;
font-size: 16px;
color: @nav-bar-title-text-color;
font-size: @nav-bar-title-font-size;
font-weight: 500;
}
@ -53,7 +54,7 @@
}
&__text {
color: @blue;
color: @nav-bar-text-color;
margin: 0 -15px;
padding: 0 15px;
display: inline-block;

View File

@ -74,6 +74,15 @@
@list-text-font-size: 13px;
@list-text-line-height: 50px;
// NavBar
@nav-bar-height: 46px;
@nav-bar-background-color: @white;
@nav-bar-arrow-size: 16px;
@nav-bar-icon-color: @blue;
@nav-bar-text-color: @blue;
@nav-bar-title-font-size: 16px;
@nav-bar-title-text-color: @text-color;
// Notify
@notify-padding: 6px 15px;
@notify-font-size: 14px;