2016-09-13 16:15:07 +00:00
|
|
|
@-webkit-keyframes shake-rotate {
|
|
|
|
0% {
|
|
|
|
-webkit-transform:scale(1) rotate(0deg);
|
|
|
|
transform:scale(1) rotate(0deg)
|
|
|
|
}
|
2015-11-05 17:27:26 +00:00
|
|
|
|
2016-09-13 16:15:07 +00:00
|
|
|
50% {
|
|
|
|
-webkit-transform:scale(.8) rotate(-5deg);
|
|
|
|
transform:scale(.8) rotate(-5deg)
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
-webkit-transform:scale(1) rotate(3deg);
|
|
|
|
transform:scale(1) rotate(3deg)
|
|
|
|
}
|
2015-11-05 17:27:26 +00:00
|
|
|
}
|
|
|
|
|
2016-09-13 16:15:07 +00:00
|
|
|
@keyframes shake-rotate {
|
|
|
|
0% {
|
|
|
|
-webkit-transform:scale(1) rotate(0deg);
|
|
|
|
transform:scale(1) rotate(0deg)
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
-webkit-transform:scale(.8) rotate(-5deg);
|
|
|
|
transform:scale(.8) rotate(-5deg)
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
-webkit-transform:scale(1) rotate(3deg);
|
|
|
|
transform:scale(1) rotate(3deg)
|
|
|
|
}
|
2015-11-05 17:27:26 +00:00
|
|
|
}
|
|
|
|
|
2016-09-13 16:15:07 +00:00
|
|
|
.shake-rotate {
|
2016-09-14 15:11:53 +00:00
|
|
|
display: inline-block;
|
|
|
|
|
2016-09-13 16:15:07 +00:00
|
|
|
-webkit-animation-duration: .4s;
|
|
|
|
animation-duration: .4s;
|
|
|
|
-webkit-animation-iteration-count: infinite;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
-webkit-animation-name: shake-rotate;
|
|
|
|
animation-name: shake-rotate;
|
|
|
|
-webkit-animation-timing-function: ease-in-out;
|
|
|
|
animation-timing-function: ease-in-out
|
2015-11-05 17:27:26 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 16:20:44 +00:00
|
|
|
.feedback-dialog {
|
2022-10-07 09:16:41 +00:00
|
|
|
margin-bottom: 5px;
|
|
|
|
|
2017-08-07 16:20:44 +00:00
|
|
|
.details {
|
|
|
|
textarea {
|
|
|
|
min-height: 100px;
|
2016-09-27 02:15:24 +00:00
|
|
|
}
|
2017-08-07 16:20:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.input-control {
|
|
|
|
background-color: $feedbackInputBg;
|
|
|
|
color: $feedbackInputTextColor;
|
|
|
|
|
|
|
|
&::-webkit-input-placeholder {
|
|
|
|
color: $feedbackInputPlaceholderColor;
|
|
|
|
}
|
|
|
|
&::-moz-placeholder { /* Firefox 19+ */
|
|
|
|
color: $feedbackInputPlaceholderColor;
|
|
|
|
}
|
|
|
|
&:-ms-input-placeholder {
|
|
|
|
color: $feedbackInputPlaceholderColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rating {
|
|
|
|
line-height: 1.2;
|
|
|
|
margin-top: 10px;
|
|
|
|
text-align: center;
|
2016-09-13 16:15:07 +00:00
|
|
|
|
2017-08-07 16:20:44 +00:00
|
|
|
.star-label {
|
|
|
|
font-size: 14px;
|
|
|
|
height: 16px;
|
2016-10-12 00:08:24 +00:00
|
|
|
}
|
2016-10-18 20:23:52 +00:00
|
|
|
|
2017-08-07 16:20:44 +00:00
|
|
|
.star-btn {
|
2018-04-11 18:31:03 +00:00
|
|
|
color: inherit;
|
2017-08-07 16:20:44 +00:00
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
2018-04-11 18:31:03 +00:00
|
|
|
font-size: 34px;
|
2017-08-07 16:20:44 +00:00
|
|
|
outline: none;
|
|
|
|
position: relative;
|
|
|
|
text-decoration: none;
|
|
|
|
@include transition(all .2s ease);
|
|
|
|
|
|
|
|
&.active,
|
|
|
|
&:hover,
|
|
|
|
&.starHover {
|
2018-04-11 18:31:03 +00:00
|
|
|
color: #36B37E;
|
2017-08-07 16:20:44 +00:00
|
|
|
};
|
|
|
|
|
2016-09-14 15:11:53 +00:00
|
|
|
}
|
2021-06-10 12:48:44 +00:00
|
|
|
.star-btn:focus,
|
|
|
|
.star-btn:active {
|
|
|
|
outline: 1px solid #B8C7E0;
|
|
|
|
}
|
2016-09-14 15:11:53 +00:00
|
|
|
}
|
2017-08-07 16:20:44 +00:00
|
|
|
}
|