gpt4 book ai didi

angular - 垫子菜单样式未以 Angular 应用

转载 作者:行者123 更新时间:2023-12-01 22:08:29 24 4
gpt4 key购买 nike

我正在尝试使用 Angular Material 和 flex css 在 Angular 2 中创建一个简单的布局..

下面是我的代码...

<div  class="background" >

<mat-toolbar fxLayout="row" fxLayoutAlign="space-between none" >

<div fxLayout="column" >
<p>SPACE STUDY</p>
<h6>Rockefeller FY 2018</h6>

<div fxShow="true" fxHide.gt-sm="true" fxLayout="column" fxLayoutAlign="start none">

<h6 [matMenuTriggerFor]="dashboarditems">
<mat-icon style="transform: scale(1.2);">line_weight</mat-icon> </h6>

<mat-menu class="mat-menu-panel" [overlapTrigger]="true" #dashboarditems="matMenu"><br/><br/>
<a routerLink='/home' routerLinkActive='active'>
<span matTooltip="HOME"><mat-icon style="color:lightgreen;">home</mat-icon></span></a><br/><br/><br/>

<a >
<span matTooltip="SPACE SURVEY"><mat-icon style="color:deeppink;">explore</mat-icon></span></a><br/><br/><br/>

<a >
<span matTooltip="SPACE ADMIN"><mat-icon style="color:lightblue;">account_circle</mat-icon></span></a><br/><br/><br/>

<a >
<span matTooltip="REPORTS"><mat-icon style="color: orange;">assignment</mat-icon></span></a><br/><br/><br/>

<a >
<span matTooltip="JOINT USE"><mat-icon style="color:yellow;">supervisor_account</mat-icon></span></a><br/><br/><br/>

<a >
<span matTooltip="HELP"><mat-icon style="color:red;">help</mat-icon></span></a><br/><br/><br/>
</mat-menu>
</div>


</div>

<div fxLayout="row" fxShow="true" fxHide.lt-md="true" >
<button mat-raised-button routerLink='/home' routerLinkActive='active'>
<span matTooltip="HOME"><mat-icon style="color:lightgreen;">home</mat-icon></span></button>

<button mat-raised-button >
<span matTooltip="SPACE SURVEY"><mat-icon style="color:deeppink;">explore</mat-icon></span></button>

<button mat-raised-button >
<span matTooltip="SPACE ADMIN"><mat-icon style="color:lightblue;">account_circle</mat-icon></span></button>

<button mat-raised-button >
<span matTooltip="REPORTS"><mat-icon style="color: orange;">assignment</mat-icon></span></button>

<button mat-raised-button >
<span matTooltip="JOINT USE"><mat-icon style="color:yellow;">supervisor_account</mat-icon></span></button>

<button mat-raised-button >
<span matTooltip="HELP"><mat-icon style="color:red;">help</mat-icon></span></button>
</div>

</mat-toolbar>

</div>


<style>

.background {
/* Remember to use the other versions for IE 10 and older browsers! */
display: flex;
min-height: 100%;
font-family: 'verdana', sans-serif;
color: #fff;
height:100vh;
background: #222222;
background: #16222A; /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #16222A , #3A6073); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #16222A , #3A6073); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

p{
font-size:20px;
font-weight:bold;
font-family: 'verdana', sans-serif;
margin:3px;
}

h6{
font-size:12px;
font-weight:bold;
font-family: 'verdana', sans-serif;
}

.mat-raised-button{
text-align:left;
border-radius:10px;
font-size:11px;
font-weight:bold;
font-family: 'verdana', sans-serif;
color:white;
background:transparent;
}

.mat-icon {
transform: scale(1.5);
}

.matTooltip{
font-size:11px;
font-weight:bold;
font-family: 'verdana', sans-serif;
}

.mat-menu-panel {
min-width: 35px;
max-width: 280px;
overflow: auto;
-webkit-overflow-scrolling: touch;
max-height: calc(100vh - 48px);
border-radius: 2px;
outline: 0;
background: transparent;
padding-left: 10px;
}
</style>

这是我的输出

enter image description here

这里我尝试将 mat-menu 容器的背景颜色更改为透明,并设置一些其他样式。

当我在控制台中更改时,它会反射(reflect)回来,如下所示

enter image description here

但是当我在我的代码中应用相同的更改时,没有应用样式。

我还尝试在组件和添加垫菜单的 div 中显式添加 class="mat-menu-panel"。

但仍然没有应用样式..

谁能帮我修改这个样式..

请在此处访问我的示例代码.. https://stackblitz.com/edit/angular-mat-formfield-flex-layout-vc3fsj?file=app%2Fapp.component.html

最佳答案

您的 html 模板中不能有样式。您需要将它们放在单独的样式表中。完成后,由于 Angular 的默认样式封装,它可能不适用于样式化 Material 组件。

你可以

将样式设置为全局 styles.css 文件

样式.css

.mat-menu-panel {
min-width: 35px;

使用 ng-deep 组合器

将你的样式放在组件特定的样式表中

组件.css

:host ::ng-deep  .mat-menu-panel {
min-width: 35px;
/* ...*/

更改组件的封装

将您的样式放在特定于组件的样式表中并更改组件的代码

组件.ts

@Component({
//...
encapsulation: ViewEncapsulation.None
})

对于最后一个,样式将泄漏到整个应用程序(就像在全局样式表中一样)

关于angular - 垫子菜单样式未以 Angular 应用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50024340/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com