history.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
  5. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  6. */
  7. .history.data-v-1a0ca80d {
  8. padding: 10px 15px;
  9. overflow: hidden;
  10. }
  11. .history .item.data-v-1a0ca80d {
  12. background: #F4F9FD;
  13. padding: 12px 10px;
  14. border-radius: 12px;
  15. display: -webkit-box;
  16. display: -webkit-flex;
  17. display: flex;
  18. -webkit-box-align: center;
  19. -webkit-align-items: center;
  20. align-items: center;
  21. position: relative;
  22. margin-bottom: 10px;
  23. }
  24. .history .item .tips.data-v-1a0ca80d,
  25. .history .item .fail.data-v-1a0ca80d,
  26. .history .item .loading.data-v-1a0ca80d {
  27. position: absolute;
  28. padding: 0 5px;
  29. top: 0;
  30. right: 0;
  31. height: 20px;
  32. line-height: 20px;
  33. font-size: 11px;
  34. font-family: PingFang SC;
  35. font-weight: 400;
  36. line-height: 20px;
  37. color: #FFFFFF;
  38. border-radius: 12px 12px 0px 12px;
  39. }
  40. .history .item .tips.data-v-1a0ca80d {
  41. background: #3B7652;
  42. }
  43. .history .item .fail.data-v-1a0ca80d {
  44. background: #888888;
  45. }
  46. .history .item .loading.data-v-1a0ca80d {
  47. background: #f24a14;
  48. }
  49. .history .item image.data-v-1a0ca80d {
  50. -webkit-box-flex: 0;
  51. -webkit-flex: 0 0 60px;
  52. flex: 0 0 60px;
  53. height: 60px;
  54. width: 60px;
  55. margin-right: 6px;
  56. }
  57. .history .item .right.data-v-1a0ca80d {
  58. -webkit-box-flex: 1;
  59. -webkit-flex: 1;
  60. flex: 1;
  61. width: 100%;
  62. margin-left: 5px;
  63. }
  64. .history .item .right .title.data-v-1a0ca80d {
  65. width: 70%;
  66. white-space: nowrap;
  67. /*设置不换行*/
  68. overflow: hidden;
  69. /*设置隐藏*/
  70. text-overflow: ellipsis;
  71. /*设置隐藏部分为省略号*/
  72. font-size: 16px;
  73. font-family: PingFang SC;
  74. font-weight: bold;
  75. line-height: 20px;
  76. color: #282828;
  77. opacity: 1;
  78. }
  79. .history .item .right .name.data-v-1a0ca80d {
  80. font-size: 13px;
  81. font-family: PingFang SC;
  82. font-weight: 400;
  83. line-height: 20px;
  84. color: rgba(40, 40, 40, 0.47);
  85. }
  86. .history .item .right .time.data-v-1a0ca80d {
  87. font-size: 10px;
  88. font-family: PingFang SC;
  89. font-weight: 400;
  90. line-height: 20px;
  91. color: rgba(40, 40, 40, 0.47);
  92. }