vc_messages.less 864 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .vc_message {
  2. display: none;
  3. position: fixed;
  4. .box-sizing(border-box);
  5. padding: 10px;
  6. text-align: center;
  7. top: 56px;
  8. left: 0;
  9. width: 100%;
  10. background: #CCCCCC;
  11. color: #000000;
  12. &.success, &.type-success {
  13. background: #d8edc7;
  14. border-bottom: 1px solid #cae1b7;
  15. color: #8A987E;
  16. }
  17. &.error, &.type-error {
  18. background: #EBE4C7;
  19. border-bottom: 1px solid #DDD2B3;
  20. color: #938D7C;
  21. }
  22. }
  23. .vc_panel-message {
  24. display: none;
  25. z-index: 100000;
  26. position: absolute;
  27. .box-sizing(border-box);
  28. padding: 10px;
  29. text-align: center;
  30. top: 38px;
  31. left: 0;
  32. width: 100%;
  33. background: #CCCCCC;
  34. color: #000000;
  35. &.type-success {
  36. background: #d8edc7;
  37. border-bottom: 1px solid #cae1b7;
  38. color: #8A987E;
  39. }
  40. &.type-error {
  41. background: #EBE4C7;
  42. border-bottom: 1px solid #DDD2B3;
  43. color: #938D7C;
  44. }
  45. }