| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- /*!
- * # Fomantic-UI - Toast
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
- /*******************************
- Toast container
- *******************************/
- .ui.toast-container {
- position: fixed;
- z-index: 9999;
- }
- .ui.top.right.toast-container {
- top: 0.85714286em;
- right: 0.85714286em;
- margin-left: 0.85714286em;
- }
- .ui.top.left.toast-container {
- top: 0.85714286em;
- left: 0.85714286em;
- margin-right: 0.85714286em;
- }
- .ui.top.center.toast-container {
- left: 50%;
- -webkit-transform: translate(-50%, 0);
- transform: translate(-50%, 0);
- top: 0.85714286em;
- }
- .ui.bottom.right.toast-container {
- bottom: 0.85714286em;
- right: 0.85714286em;
- margin-left: 0.85714286em;
- }
- .ui.bottom.left.toast-container {
- bottom: 0.85714286em;
- left: 0.85714286em;
- margin-right: 0.85714286em;
- }
- .ui.bottom.center.toast-container {
- left: 50%;
- -webkit-transform: translate(-50%, 0);
- transform: translate(-50%, 0);
- bottom: 0.85714286em;
- }
- /*******************************
- Toast
- *******************************/
- .toast {
- display: block;
- border-radius: 0.28571429rem;
- padding: 0.78571429em 1em;
- margin: 0 0 6px;
- color: rgba(255, 255, 255, 0.9);
- }
- .floating.toast,
- .hoverfloating.toast:hover {
- -webkit-box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- }
- .hoverfloating.message:hover {
- -webkit-box-shadow: 0 0 0 1px inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- }
- .center.toast-container .toast-box,
- .right.toast-container .toast-box {
- margin-left: auto;
- }
- .center.toast-container .toast-box {
- margin-right: auto;
- }
- .visible.toast-box,
- .animating.toast-box,
- .toast-box {
- display: table !important;
- }
- .toast-container .compact {
- display: block;
- width: 300px;
- }
- .toast-container .message,
- .toast:hover {
- opacity: 1;
- cursor: pointer;
- }
- .icon.toast .content {
- padding-left: 3em;
- }
- .toast > .content > .header {
- font-weight: bold;
- }
- .info.toast {
- background-color: #31CCEC;
- }
- .warning.toast {
- background-color: #F2C037;
- }
- .success.toast {
- background-color: #21BA45;
- }
- .error.toast {
- background-color: #DB2828;
- }
- .toast-box .info.attached.progress .bar {
- background: #12a1bf !important;
- }
- .toast-box .warning.attached.progress .bar {
- background: #cf9b0d !important;
- }
- .toast-box .success.attached.progress .bar {
- background: #15792d !important;
- }
- .toast-box .error.attached.progress .bar {
- background: #9c1a1a !important;
- }
- /*--------------
- Colors
- -------------- */
- .primary.toast {
- background-color: #2185D0;
- }
- .inverted.primary.toast,
- .toast-box .inverted.primary.attached.progress .bar {
- background-color: #54C8FF;
- }
- .secondary.toast {
- background-color: #1B1C1D;
- }
- .inverted.secondary.toast,
- .toast-box .inverted.secondary.attached.progress .bar {
- background-color: #545454;
- }
- .red.toast {
- background-color: #DB2828;
- }
- .inverted.red.toast,
- .toast-box .inverted.red.attached.progress .bar {
- background-color: #FF695E;
- }
- .orange.toast {
- background-color: #F2711C;
- }
- .inverted.orange.toast,
- .toast-box .inverted.orange.attached.progress .bar {
- background-color: #FF851B;
- }
- .yellow.toast {
- background-color: #FBBD08;
- }
- .inverted.yellow.toast,
- .toast-box .inverted.yellow.attached.progress .bar {
- background-color: #FFE21F;
- }
- .olive.toast {
- background-color: #B5CC18;
- }
- .inverted.olive.toast,
- .toast-box .inverted.olive.attached.progress .bar {
- background-color: #D9E778;
- }
- .green.toast {
- background-color: #21BA45;
- }
- .inverted.green.toast,
- .toast-box .inverted.green.attached.progress .bar {
- background-color: #2ECC40;
- }
- .teal.toast {
- background-color: #00B5AD;
- }
- .inverted.teal.toast,
- .toast-box .inverted.teal.attached.progress .bar {
- background-color: #6DFFFF;
- }
- .blue.toast {
- background-color: #2185D0;
- }
- .inverted.blue.toast,
- .toast-box .inverted.blue.attached.progress .bar {
- background-color: #54C8FF;
- }
- .violet.toast {
- background-color: #6435C9;
- }
- .inverted.violet.toast,
- .toast-box .inverted.violet.attached.progress .bar {
- background-color: #A291FB;
- }
- .purple.toast {
- background-color: #A333C8;
- }
- .inverted.purple.toast,
- .toast-box .inverted.purple.attached.progress .bar {
- background-color: #DC73FF;
- }
- .pink.toast {
- background-color: #E03997;
- }
- .inverted.pink.toast,
- .toast-box .inverted.pink.attached.progress .bar {
- background-color: #FF8EDF;
- }
- .brown.toast {
- background-color: #A5673F;
- }
- .inverted.brown.toast,
- .toast-box .inverted.brown.attached.progress .bar {
- background-color: #D67C1C;
- }
- .grey.toast {
- background-color: #767676;
- }
- .inverted.grey.toast,
- .toast-box .inverted.grey.attached.progress .bar {
- background-color: #DCDDDE;
- }
- .black.toast {
- background-color: #1B1C1D;
- }
- .inverted.black.toast,
- .toast-box .inverted.black.attached.progress .bar {
- background-color: #545454;
- }
- .inverted.toast {
- color: #AAAAAA;
- }
- /*--------------
- Icon
- ---------------*/
- .icon.toast > .icon:not(.close) {
- display: inline-block;
- vertical-align: middle;
- font-size: 1.5em;
- position: absolute;
- }
- .icon.toast > .content {
- display: inline-block;
- vertical-align: middle;
- }
- /*---------------
- Progress Bar
- ----------------*/
- .toast-box .attached.progress .bar {
- min-width: 0;
- }
- .toast-box .active.progress .bar:after {
- -webkit-animation: progress-active 2s ease infinite !important;
- animation: progress-active 2s ease infinite !important;
- }
- .toast-box {
- margin-bottom: 6px;
- }
- .toast-box .toast,
- .toast-box .message {
- margin-top: 0;
- margin-bottom: 0;
- position: relative;
- }
- .toast-box .attached.progress {
- z-index: 1;
- }
- .toast-box .bottom.attached.progress {
- margin: -3px 0 6px;
- }
- .toast-box .top.attached.progress {
- margin: 6px 0 -3px;
- }
- /* --------
- Close Icon
- -----------*/
- .toast-box .message > .close.icon {
- top: 0.3em;
- right: 0.3em;
- }
- .toast-box .toast > .close.icon {
- cursor: pointer;
- position: absolute;
- margin: 0;
- top: 0.3em;
- right: 0.3em;
- opacity: 0.7;
- -webkit-transition: opacity 0.1s ease;
- transition: opacity 0.1s ease;
- }
- .toast-box .toast > .close.icon:hover {
- opacity: 1;
- }
|