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
32 lines (26 loc) • 610 B
CSS
.hint {
/* Position the hint */
position: absolute;
left: 2px;
right: auto;
bottom: 7px;
/* Copy styles from ng-messages */
font-size: 12px;
line-height: 14px;
transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
/* Set our own color */
color: grey;
}
/* NOTE: Check the demo's HTML to see some additional RTL support CSS */
/* Setup animations similar to the ng-messages */
.hint.ng-hide,
.hint.ng-enter,
.hint.ng-leave.ng-leave-active {
bottom: 26px;
opacity: 0;
}
.hint.ng-leave,
.hint.ng-enter.ng-enter-active {
bottom: 7px;
opacity: 1;
}