Toast Placement
Instead of asking everything (which makes cutting your toast), you can only put md-toast in the right position.
There are four places in the documentation where you can formally place a toast: top left, top right, bottom left, bottom right . So, firstly, let's put the toast on the top left (this is important for changing the animation, and also allows you to show the toasts in the center below ).
$mdToast.show( $mdToast.simple() .textContent('Simple lala Toast!') .position('top')
now in css just put your toast:
md-toast { left: calc(50vw - 150px); }
This will position the toast in the center of the screen. minus half the toast.
you can also show toasts in the lower center only in javascript:
$mdToast.show( $mdToast.simple() .textContent('Simple lala Toast!') .position('bottom')
and the toast will be located at the bottom and use the desired animation to show it.
Toast coloring
You painted the toast container instead of the actual content of the toast. To color the toast, you can add the following css style:
md-toast.md-success-toast-theme .md-toast-content { background-color: green; }
You can change the theme of the toast so as not to override the default toast style. In addition, changing the position for a specific topic can help to simultaneously use both positions (by default and manually) (by changing the theme).
md-toast.md-thatkookooguy-toast-theme { left: calc(50vw - 150px); }
This is where FORK works from your code.
Thatkookooguy Jan 05 '16 at 15:23 2016-01-05 15:23
source share