2019-02-06 10:24:29 +00:00
|
|
|
@import "variables";
|
2018-06-19 06:12:36 +00:00
|
|
|
|
|
|
|
vn-snackbar #shapes {
|
2020-04-02 12:52:02 +00:00
|
|
|
max-height: 330px;
|
|
|
|
margin-left: -200px;
|
2018-08-08 06:53:19 +00:00
|
|
|
position: fixed;
|
2018-02-20 09:00:19 +00:00
|
|
|
z-index: 100;
|
2020-04-02 12:52:02 +00:00
|
|
|
width: 400px;
|
2018-08-08 06:53:19 +00:00
|
|
|
left: 50%;
|
|
|
|
bottom: 0
|
2018-06-19 06:12:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
vn-snackbar .shape {
|
2020-04-02 09:39:39 +00:00
|
|
|
background-color: rgba(0, 0, 0, .8);
|
2020-04-02 12:20:57 +00:00
|
|
|
box-shadow: 0 0 6px $color-shadow;
|
2018-06-19 06:12:36 +00:00
|
|
|
transition: transform 300ms ease-in-out;
|
2020-04-02 12:52:02 +00:00
|
|
|
transform: translateY(320px);
|
2018-08-08 06:53:19 +00:00
|
|
|
box-sizing: border-box;
|
2020-04-02 12:20:57 +00:00
|
|
|
border-radius: 3px;
|
2018-08-08 06:53:19 +00:00
|
|
|
margin-bottom: 15px;
|
|
|
|
color: white;
|
2020-04-02 12:20:57 +00:00
|
|
|
padding: 12px;
|
2018-08-08 06:53:19 +00:00
|
|
|
|
2020-02-10 06:24:12 +00:00
|
|
|
& > .text {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
vn-chip {
|
|
|
|
position: absolute;
|
2020-04-02 12:52:02 +00:00
|
|
|
left: -16px;
|
|
|
|
top: -16px;
|
2020-02-10 06:24:12 +00:00
|
|
|
}
|
2018-06-19 06:12:36 +00:00
|
|
|
}
|
2018-02-20 09:00:19 +00:00
|
|
|
|
|
|
|
&.shown {
|
2018-08-08 06:53:19 +00:00
|
|
|
transform: translateY(0);
|
2018-02-20 09:00:19 +00:00
|
|
|
}
|
2018-06-19 06:12:36 +00:00
|
|
|
|
|
|
|
&.success {
|
2020-04-02 09:39:39 +00:00
|
|
|
background-color: rgba(163, 209, 49, .8);
|
2018-06-19 06:12:36 +00:00
|
|
|
color: #445911;
|
2018-02-20 09:00:19 +00:00
|
|
|
|
|
|
|
& > button {
|
2020-04-02 09:39:39 +00:00
|
|
|
color: rgba(1, 1, 1, .6);
|
2018-02-20 09:00:19 +00:00
|
|
|
}
|
|
|
|
}
|
2018-06-19 06:12:36 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
&.error {
|
2020-04-02 09:39:39 +00:00
|
|
|
background-color: rgba(198, 40, 40, .8);
|
2018-02-20 09:00:19 +00:00
|
|
|
|
|
|
|
& > button {
|
2020-04-02 09:39:39 +00:00
|
|
|
color: rgba(1, 1, 1, .6);
|
2018-02-20 09:00:19 +00:00
|
|
|
}
|
|
|
|
}
|
2018-06-19 06:12:36 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
& > button {
|
|
|
|
background-color: transparent;
|
2018-08-08 06:53:19 +00:00
|
|
|
text-transform: uppercase;
|
2020-04-02 12:20:57 +00:00
|
|
|
margin-left: 8px;
|
2018-02-20 09:00:19 +00:00
|
|
|
font-weight: bold;
|
2018-08-08 06:53:19 +00:00
|
|
|
cursor: pointer;
|
2019-02-08 16:49:51 +00:00
|
|
|
color: $color-main;
|
2018-08-08 06:53:19 +00:00
|
|
|
float: right;
|
|
|
|
border: none;
|
2020-04-02 12:20:57 +00:00
|
|
|
padding: 8px;
|
2020-04-02 12:52:02 +00:00
|
|
|
margin: -8px;
|
2018-02-20 09:00:19 +00:00
|
|
|
}
|
|
|
|
}
|