3
0

common.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. // 超出行数,自动显示行尾省略号,最多5行
  2. // 来自uview-plus的温馨提示:当您在控制台看到此报错,说明需要在App.vue的style标签加上【lang="scss"】
  3. @for $i from 1 through 5 {
  4. .u-line-#{$i},
  5. .up-line-#{$i} {
  6. /* #ifdef APP-NVUE */
  7. // nvue下,可以直接使用lines属性,这是weex特有样式
  8. lines: $i;
  9. text-overflow: ellipsis;
  10. overflow: hidden;
  11. flex: 1;
  12. /* #endif */
  13. /* #ifndef APP-NVUE */
  14. // vue下,单行和多行显示省略号需要单独处理
  15. @if $i == '1' {
  16. overflow: hidden;
  17. white-space: nowrap;
  18. text-overflow: ellipsis;
  19. } @else {
  20. display: -webkit-box!important;
  21. overflow: hidden;
  22. text-overflow: ellipsis;
  23. word-break: break-all;
  24. -webkit-line-clamp: $i;
  25. -webkit-box-orient: vertical!important;
  26. }
  27. /* #endif */
  28. }
  29. }
  30. // 此处加上!important并非随意乱用,而是因为目前*.nvue页面编译到H5时,
  31. // App.vue的样式会被uni-app的view元素的自带border属性覆盖,导致无效
  32. // 综上,这是uni-app的缺陷导致我们为了多端兼容,而必须要加上!important
  33. // 移动端兼容性较好,直接使用0.5px去实现细边框,不使用伪元素形式实现
  34. .u-border,
  35. .up-border {
  36. border-width: 0.5px!important;
  37. border-color: $u-border-color !important;
  38. border-style: solid;
  39. }
  40. .u-border-top,
  41. .up-border-top {
  42. border-top-width: 0.5px!important;
  43. border-color: $u-border-color!important;
  44. border-top-style: solid;
  45. }
  46. .u-border-left,
  47. .up-border-left {
  48. border-left-width: 0.5px!important;
  49. border-color: $u-border-color!important;
  50. border-left-style: solid;
  51. }
  52. .u-border-right,
  53. .up-border-right {
  54. border-right-width: 0.5px!important;
  55. border-color: $u-border-color!important;
  56. border-right-style: solid;
  57. }
  58. .u-border-bottom,
  59. .up-border-bottom {
  60. border-bottom-width: 0.5px!important;
  61. border-color: $u-border-color!important;
  62. border-bottom-style: solid;
  63. }
  64. .u-border-top-bottom,
  65. .up-border-top-bottom {
  66. border-top-width: 0.5px!important;
  67. border-bottom-width: 0.5px!important;
  68. border-color: $u-border-color!important;
  69. border-top-style: solid;
  70. border-bottom-style: solid;
  71. }
  72. // 去除button的所有默认样式,让其表现跟普通的view、text元素一样
  73. .u-reset-button,
  74. .up-reset-button {
  75. padding: 0;
  76. background-color: transparent;
  77. /* #ifndef APP-PLUS */
  78. font-size: inherit;
  79. line-height: inherit;
  80. color: inherit;
  81. /* #endif */
  82. /* #ifdef APP-NVUE */
  83. border-width: 0;
  84. /* #endif */
  85. }
  86. /* #ifndef APP-NVUE */
  87. .u-reset-button::after,
  88. .up-reset-button::after {
  89. border: none;
  90. }
  91. /* #endif */
  92. .u-hover-class,
  93. .up-hover-class {
  94. opacity: 0.7;
  95. }
  96. .cursor-pointer {
  97. /* #ifdef H5 */
  98. cursor: pointer;
  99. /* #endif */
  100. }