index.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. @import '../common/index.css';
  2. .van-notice-bar {
  3. display: -webkit-flex;
  4. display: flex;
  5. -webkit-align-items: center;
  6. align-items: center;
  7. height: 40px;
  8. height: var(--notice-bar-height, 40px);
  9. padding: 0 16px;
  10. padding: var(--notice-bar-padding, 0 16px);
  11. font-size: 14px;
  12. font-size: var(--notice-bar-font-size, 14px);
  13. color: #ed6a0c;
  14. color: var(--notice-bar-text-color, #ed6a0c);
  15. line-height: 24px;
  16. line-height: var(--notice-bar-line-height, 24px);
  17. background-color: #fffbe8;
  18. background-color: var(--notice-bar-background-color, #fffbe8);
  19. }
  20. .van-notice-bar--withicon {
  21. position: relative;
  22. padding-right: 40px;
  23. }
  24. .van-notice-bar--wrapable {
  25. height: auto;
  26. padding: 8px 16px;
  27. padding: var(--notice-bar-wrapable-padding, 8px 16px);
  28. }
  29. .van-notice-bar--wrapable .van-notice-bar__wrap {
  30. height: auto;
  31. }
  32. .van-notice-bar--wrapable .van-notice-bar__content {
  33. position: relative;
  34. white-space: normal;
  35. }
  36. .van-notice-bar__left-icon {
  37. display: -webkit-flex;
  38. display: flex;
  39. -webkit-align-items: center;
  40. align-items: center;
  41. margin-right: 4px;
  42. vertical-align: middle;
  43. }
  44. .van-notice-bar__left-icon,
  45. .van-notice-bar__right-icon {
  46. font-size: 16px;
  47. font-size: var(--notice-bar-icon-size, 16px);
  48. min-width: 22px;
  49. min-width: var(--notice-bar-icon-min-width, 22px);
  50. }
  51. .van-notice-bar__right-icon {
  52. position: absolute;
  53. top: 10px;
  54. right: 15px;
  55. }
  56. .van-notice-bar__wrap {
  57. position: relative;
  58. -webkit-flex: 1;
  59. flex: 1;
  60. overflow: hidden;
  61. height: 24px;
  62. height: var(--notice-bar-line-height, 24px);
  63. }
  64. .van-notice-bar__content {
  65. position: absolute;
  66. white-space: nowrap;
  67. }
  68. .van-notice-bar__content.van-ellipsis {
  69. max-width: 100%;
  70. }