Hi guys.
I have on the main view, the navbar with transparent color, on the page-content I have a List View component, so when I slide the List view, the navbar color starts to change color, first gray and finish white
I don’t want change color, any ideas?
Start…
I start to move the list view
I keep moving forward
html…
<div class="page img_home" data-name="home">
<!-- NavBar -->
<div class="navbar navbar-transparent">
<div class="navbar-bg"></div>
<div class="navbar-inner">
<div class="left">
</div>
<div class="title navbar-tipo-letra"></div>
</div>
</div>
<!-- Bottom Toolbar -->
<div class="toolbar toolbar-bottom toolbar-custom">
<div class="toolbar-inner">
<!-- Toolbar links -->
<a href="#" class="link my-link.active-state">
<i class="icon f7-icons">start</i>
<span>Inicio</span>
</a>
<a href="/settings/" class="link">
<i class="icon f7-icons color-white">gear_alt</i>
<span class="my-color-off">Configurar</span>
</a>
</div>
</div>
<div class="page-content">
<div class="list" id="lista-torneos">
<div class="block-torneo">
<div class="torneo">
<img src="http://.com.mx/MiScore/Imagenes/Torneo_1_1_1.png"/>
</div>
</div>
</div>
</div>
CSS…
.img_home{
background-size: cover;
background-image: url(../img/BackGroundDefault.png);
}
.my-color-off{
color: white;
}
.list{
margin-top: 15px;
}
.block-torneo{
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
}
.torneo{
width: 100%;
overflow: hidden;
}
.torneo img{
width: 100%;
height: auto;
}