Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

_feedback.scss 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. @-webkit-keyframes shake-rotate {
  2. 0% {
  3. -webkit-transform:scale(1) rotate(0deg);
  4. transform:scale(1) rotate(0deg)
  5. }
  6. 50% {
  7. -webkit-transform:scale(.8) rotate(-5deg);
  8. transform:scale(.8) rotate(-5deg)
  9. }
  10. to {
  11. -webkit-transform:scale(1) rotate(3deg);
  12. transform:scale(1) rotate(3deg)
  13. }
  14. }
  15. @keyframes shake-rotate {
  16. 0% {
  17. -webkit-transform:scale(1) rotate(0deg);
  18. transform:scale(1) rotate(0deg)
  19. }
  20. 50% {
  21. -webkit-transform:scale(.8) rotate(-5deg);
  22. transform:scale(.8) rotate(-5deg)
  23. }
  24. to {
  25. -webkit-transform:scale(1) rotate(3deg);
  26. transform:scale(1) rotate(3deg)
  27. }
  28. }
  29. .shake-rotate {
  30. display: inline-block;
  31. -webkit-animation-duration: .4s;
  32. animation-duration: .4s;
  33. -webkit-animation-iteration-count: infinite;
  34. animation-iteration-count: infinite;
  35. -webkit-animation-name: shake-rotate;
  36. animation-name: shake-rotate;
  37. -webkit-animation-timing-function: ease-in-out;
  38. animation-timing-function: ease-in-out
  39. }
  40. .feedback-dialog {
  41. .details {
  42. margin-top: 20px;
  43. padding-left: 60px;
  44. padding-right: 60px;
  45. textarea {
  46. min-height: 100px;
  47. }
  48. }
  49. .input-control {
  50. background-color: $feedbackInputBg;
  51. color: $feedbackInputTextColor;
  52. &::-webkit-input-placeholder {
  53. color: $feedbackInputPlaceholderColor;
  54. }
  55. &::-moz-placeholder { /* Firefox 19+ */
  56. color: $feedbackInputPlaceholderColor;
  57. }
  58. &:-ms-input-placeholder {
  59. color: $feedbackInputPlaceholderColor;
  60. }
  61. }
  62. .rating {
  63. line-height: 1.2;
  64. margin-top: 10px;
  65. text-align: center;
  66. .star-label {
  67. color: $rateStarLabelColor;
  68. font-size: 14px;
  69. height: 16px;
  70. }
  71. .star-btn {
  72. color: $rateStarDefault;
  73. cursor: pointer;
  74. display: inline-block;
  75. font-size: $rateStarSize;
  76. outline: none;
  77. position: relative;
  78. text-decoration: none;
  79. @include transition(all .2s ease);
  80. &.active,
  81. &:hover,
  82. &.starHover {
  83. color: $rateStarActivity;
  84. };
  85. }
  86. }
  87. }