在我的应用程序中,我正在尝试更改标题的颜色。为此,我在app.scss文件中添加了一些主题。我可以更改标题栏的背景颜色。但标题的颜色并没有改变。我的app.scss文件是这样的:
$base-color: #588aad; // go big blue!$include_default_icons: false;
@import 'sencha-touch/default/all';
@include sencha-panel;
@include sencha-buttons;
@include sencha-sheet;
@include sencha-picker;
@include sencha-tabs;
@include sencha-toolbar;
@include sencha-toolbar-forms;
@include sencha-indexbar;
@include sencha-list;
@include sencha-layout;
@include sencha-form;
@include sencha-msgbox;
@include sencha-loading-spinner;
@include pictos-iconmask("bookmarks");
@include pictos-iconmask("compose");
@include pictos-iconmask("trash");
@include pictos-iconmask("search");
@include pictos-iconmask("bookmark2");
@include sencha-toolbar-ui('blue', #EEEEEE,'matte');
.x-toolbar .x-toolbar-title {
color: #5a3d23;
}
这是我的面板代码:
Ext.define('MyApp.view.TitlePanel', {
extend: 'Ext.Panel',
config: {
modal: false,
items: [
{
xtype: 'titlebar',
docked: 'top',
height: 120,
ui: 'blue',
title: 'Teritree Bussiness Portal',
items: [
{
xtype: 'image',
docked: 'left',
height: 118,
width: 202,
src: 'resources/images/Logo.PNG'
}
]
}
]
}
});
任何人都可以帮忙吗??? 提前谢谢..
答案 0 :(得分:8)
使用 Firebug或Safari(或Chrome)检查器来了解如何在DOM中嵌入div。
如果我检查标题栏的标题,这就是我的内容
您可以看到一个包含my-titlebar
类的div,其中包含另一个类x-title
的div。如果您在右侧看,您可以看到颜色属性由x-title
CSS类承载。因此,您需要覆盖此类,而不是将颜色属性添加到另一个类。
所以这就是你应该做的:
将cls属性添加到标题栏
xtype: 'titlebar',
cls:'my-titlebar',
docked: 'top',
height: 120,
编写CSS
.my-titlebar .x-title{
color:white;
}
你走了:
最后的建议,只有在你别无选择时才应使用!important
。否则没有意义。
希望这有帮助