我一直在敲打这个......我不知道为什么我的md工具栏的背景仍然是白色的,即使我改变了CSS。
我在这里有一个项目样本:
http://abc.morado.xyz:32782/#/index
我的默认HTML页面呈现所有视图如下所示:
<div layout="row" class="full-height transparent">
<!-- left sidebar -->
<!--<md-sidenav class="admin-sidebar-left md-sidenav-left md-whiteframe-z2" md-component-id="left" md-is-locked-open="layout.sideMenuSize !== 'hidden' && $mdMedia('gt-sm')" ui-view="sidebarLeft" ng-class="{ 'admin-sidebar-collapsed': layout.sideMenuSize == 'icon' }" ng-mouseover="layoutController.activateHover()" ng-mouseleave="layoutController.removeHover()"></md-sidenav>-->
<!-- main content -->
<div id="admin-panel" layout="column" flex class="transparent">
<!-- loading animation -->
<tri-loader></tri-loader>
<!-- top toolbar -->
<md-toolbar class=" transparent" ng-if="layout.showToolbar" md-theme="{{triSkin.elements.toolbar}}" ui-view="toolbar" ng-class="[layout.toolbarSize,layout.toolbarClass]"></md-toolbar>
<!-- scrollable content -->
<md-content ng-class="layout.contentClass" flex tri-default-content ui-view="content"></md-content>
<div ui-view="belowContent"></div>
</div>
<!-- right sidebar -->
<md-sidenav layout layout-fill class="md-sidenav-right md-whiteframe-z2" md-component-id="notifications" ui-view="sidebarRight"></md-sidenav>
标题会在我的配置文件中呈现:
.state('triangular.header', {
abstract: true,
views: {
toolbar: {
templateProvider: function($templateCache, $http, triLayout) {
return $http.get(triLayout.layout.toolbarTemplateUrl, {cache: $templateCache })
.then(function(response) {
return response.data;
});
},
controllerProvider: function(triLayout) {
return triLayout.layout.toolbarController;
},
controllerAs: 'vm'
},
content: {
templateProvider: function($templateCache, $http, triLayout) {
return $http.get(triLayout.layout.contentTemplateUrl, {cache: $templateCache })
.then(function(response) {
return response.data;
});
}
},
belowContent: {
template: '<div ui-view="belowContent"></div>'
}
}
})
我在网上看过这些解决方案,但是我的情况并不适用......
https://github.com/angular/material/issues/4379
My own styles in angular material ui
如果您转到上面的链接并尝试自己使用CSS,您会发现在md-toolbar标签或所述标签内的div上设置背景,只会使背景变为不透明的白色。
感谢您的帮助!
答案 0 :(得分:0)
我不知道我的md工具栏的背景何时保持白色,即使我更改了CSS
该元素的背景是透明的,正如您在CSS中指定的那样。
你看到的白色只是身体元素的背景。