mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[improvement] NavBar: support custom theme (#2570)
This commit is contained in:
parent
8bc8e99f74
commit
6e9a097ded
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user