angular-material-npfixed
Version:
The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible Material Design UI components. Angular Material is supported internally at Google by the Angular.js, M
78 lines (73 loc) • 1.48 kB
CSS
.menu-panel-container {
pointer-events: auto;
}
.menu-panel {
width: 256px;
background-color: #fff;
border-radius: 4px;
}
.menu-panel .menu-divider {
width: 100%;
height: 1px;
min-height: 1px;
max-height: 1px;
margin-top: 4px;
margin-bottom: 4px;
background-color: rgba(0, 0, 0, 0.11);
}
.menu-panel .menu-content {
display: flex;
flex-direction: column;
padding: 8px 0;
max-height: 305px;
overflow-y: auto;
min-width: 256px;
}
.menu-panel .menu-item {
display: flex;
flex-direction: row;
min-height: 48px;
height: 48px;
align-content: center;
justify-content: flex-start;
}
.menu-panel .menu-item > * {
width: 100%;
margin: auto 0;
padding-left: 16px;
padding-right: 16px;
}
.menu-panel .menu-item > a.md-button {
padding-top: 5px;
}
.menu-panel .menu-item > .md-button {
display: inline-block;
border-radius: 0;
margin: auto 0;
font-size: 15px;
text-transform: none;
font-weight: 400;
height: 100%;
padding-left: 16px;
padding-right: 16px;
width: 100%;
text-align: left;
}
.menu-panel .menu-item > .md-button::-moz-focus-inner {
padding: 0;
border: 0;
}
.menu-panel .menu-item > .md-button md-icon {
margin: auto 16px auto 0;
}
.menu-panel .menu-item > .md-button p {
display: inline-block;
margin: auto;
}
.menu-panel .menu-item > .md-button span {
margin-top: auto;
margin-bottom: auto;
}
.menu-panel .menu-item > .md-button .md-ripple-container {
border-radius: inherit;
}