jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/toast/toast.css

27 lines
604 B
CSS
Raw Normal View History

2016-06-09 23:54:03 -07:00
.toast {
position: fixed;
min-width: 288px;
box-sizing: border-box;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
border-radius: 2px;
font-size: 14px;
cursor: default;
-webkit-transition: -webkit-transform .3s ease-out;
transition: transform .3s ease-out;
background: #303030;
color: #fff;
min-height: initial;
padding: 1em 1.5em;
bottom: 1em;
left: 1em;
font-size: 110%;
z-index: 9999999;
-webkit-transform: translateY(200px);
transform: translateY(200px);
}
2016-08-01 22:55:52 -07:00
.toastVisible {
-webkit-transform: none;
transform: none;
}