我刚发现Pixate
来设置iOS应用的风格。但我遇到了问题。
当我使用Pixate
navigation-bar {
background-image: linear-gradient(rgb(84,177,222), rgb(71,107,222));
}
navigation-bar title {
color: white;
}
它不会设置状态栏的样式,它仍为黑色。正如您在以下屏幕截图中看到的那样:
但是,当我在界面构建器中为导航栏着色时,状态栏确实会获得导航栏的颜色。正如你在这里看到的那样:
Working example with interfacebuilder http://answers.pixate.com/storage/temp/89-combined.png
所以我想:“我可以在CSS
和Interface Builder
”中设置颜色,但状态栏也会变黑。
有什么方法可以让我使用Pixate
吗?
答案 0 :(得分:3)
除了背景颜色外,请尝试指定background-size
。
navigation-bar {
background-size:64px;
background-image: linear-gradient(rgb(84,177,222), rgb(71,107,222));
}
这适合我。