You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_feedback.scss 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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.aui-dialog2{
  41. .aui-dialog2{
  42. &-header {
  43. background-color: $feedbackContentBg;
  44. border-bottom-color: transparent;
  45. padding-top: 30px;
  46. h2 {
  47. color: $feedbackTextColor;
  48. text-align: center;
  49. }
  50. }
  51. &-content {
  52. background-color: $feedbackContentBg;
  53. text-align: center;
  54. padding: 10px 40px 20px 40px;
  55. .input-control{
  56. &__input {
  57. background-color: $feedbackInputBg;
  58. color: $feedbackInputTextColor;
  59. &::-webkit-input-placeholder {
  60. color: $feedbackInputPlaceholderColor;
  61. }
  62. &::-moz-placeholder { /* Firefox 19+ */
  63. color: $feedbackInputPlaceholderColor;
  64. }
  65. &:-ms-input-placeholder {
  66. color: $feedbackInputPlaceholderColor;
  67. }
  68. }
  69. }
  70. .rating {
  71. line-height: 1.2;
  72. text-align: center;
  73. margin-top: 10px;
  74. .star-label {
  75. height: 16px;
  76. font-size: 14px;
  77. color: $rateStarLabelColor;
  78. }
  79. .star-btn {
  80. display: inline-block;
  81. color: $rateStarDefault;
  82. font-size: $rateStarSize;
  83. position: relative;
  84. cursor: pointer;
  85. outline: none;
  86. text-decoration: none;
  87. @include transition(all .2s ease);
  88. &.starHover,
  89. &.active,
  90. &:hover {
  91. color: $rateStarActivity;
  92. };
  93. }
  94. }
  95. .details {
  96. padding-left: 60px;
  97. padding-right: 60px;
  98. margin-top: 20px;
  99. textarea {
  100. min-height: 100px;
  101. }
  102. }
  103. }
  104. &-footer {
  105. background-color: $feedbackContentBg;
  106. border-top-color: transparent;
  107. .button-control {
  108. color: $feedbackCancelFontColor;
  109. }
  110. }
  111. }
  112. }