common.scss 2.4 KB

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