insomnia/app/ui/css/components/toast.less

40 lines
717 B
Plaintext
Raw Normal View History

2016-04-10 05:03:18 +00:00
@import '../constants/dimensions';
@import '../constants/colors';
2016-07-21 19:15:35 +00:00
@import '../constants/animations';
2016-04-10 05:03:18 +00:00
.toast {
2016-07-21 19:15:35 +00:00
opacity: 0;
2016-04-10 05:03:18 +00:00
position: absolute;
z-index: 100;
2016-08-29 17:58:59 +00:00
bottom: @padding-md;
right: @padding-md;
background: @bg-light;
color: @font-light-bg;
2016-04-10 05:03:18 +00:00
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
2016-07-21 19:15:35 +00:00
display: flex;
flex-direction: row;
font-size: @font-size-sm;
transition: opacity 300ms;
2016-07-21 19:15:35 +00:00
&.toast--show {
opacity: 1;
}
2016-04-10 05:03:18 +00:00
.toast__message,
.toast__action {
padding: @padding-sm * 1.3 @padding-md * 1.3;
2016-04-10 05:03:18 +00:00
height: auto;
}
.toast__action {
color: darken(@surprise, 10);
text-transform: uppercase;
2016-08-29 17:58:59 +00:00
font-size: @font-size-sm;
2016-04-10 05:03:18 +00:00
&:hover {
2016-08-29 17:58:59 +00:00
background: @hl-xs;
2016-04-10 05:03:18 +00:00
}
}
}