uni.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. // 引入uView UI全局 scss 变量文件
  14. @import '@/uni_modules/vk-uview-ui/theme.scss';
  15. /* 颜色变量 */
  16. /* 行为相关颜色 */
  17. $uni-color-primary: #006af4;
  18. $uni-color-success: #4cd964;
  19. $uni-color-warning: #f0ad4e;
  20. $uni-color-error: #FA5151;
  21. /* 文字基本颜色 */
  22. $uni-text-color: #000;//基本色
  23. $uni-text-color-inverse: #fff;//反色
  24. $uni-text-color-grey: #999; //辅助灰色,如加载更多的提示信息
  25. $uni-text-color-placeholder: #808080;
  26. $uni-text-color-disable:#c0c0c0;
  27. /* 背景颜色 */
  28. $uni-bg-color:#f7f7f7;
  29. $uni-bg-color-grey:#f8f8f8;
  30. $uni-bg-color-hover:#f1f1f1; //点击状态颜色
  31. $uni-bg-color-mask:rgba(0, 0, 0, 0.4); //遮罩颜色
  32. /* 边框颜色 */
  33. $uni-border-color:#c8c7cc;
  34. /* 标题尺寸 */
  35. $uni-title-font-size-1: 36rpx;
  36. $uni-title-font-size-2: 26rpx;
  37. $uni-title-font-size-3: 24rpx;
  38. /* 文字尺寸 */
  39. $uni-font-size-1: 24rpx;
  40. $uni-font-size-2: 20rpx;
  41. $uni-font-size-3: 18rpx;
  42. /* 卡片圆角 */
  43. $uni-card-border-radius: 20rpx;
  44. @mixin backgroundImg($url) {
  45. background-image: url($url);
  46. background-repeat: no-repeat;
  47. background-size: 100% 100%;
  48. }
  49. @mixin scrollbar() {
  50. // 滚动条整体部分
  51. &::-webkit-scrollbar {
  52. width: 6px;
  53. height: 6px;
  54. }
  55. // 滚动条的轨道的两端按钮,允许通过点击微调小方块的位置。
  56. &::-webkit-scrollbar-button {
  57. display: none;
  58. }
  59. // 滚动条的轨道(里面装有Thumb)
  60. &::-webkit-scrollbar-track {
  61. background: transparent;
  62. }
  63. // 滚动条的轨道(里面装有Thumb)
  64. &::-webkit-scrollbar-track-piece {
  65. background-color: transparent;
  66. }
  67. // 滚动条里面的小方块,能向上向下移动(或往左往右移动,取决于是垂直滚动条还是水平滚动条)
  68. &::-webkit-scrollbar-thumb {
  69. background: rgba(144, 147, 153, 0.3);
  70. cursor: pointer;
  71. border-radius: 4px;
  72. }
  73. // 边角,即两个滚动条的交汇处
  74. &::-webkit-scrollbar-corner {
  75. display: none;
  76. }
  77. // 两个滚动条的交汇处上用于通过拖动调整元素大小的小控件
  78. &::-webkit-resizer {
  79. display: none;
  80. }
  81. }
  82. // 单行文字溢出
  83. @mixin text-overflow() {
  84. overflow: hidden;
  85. text-overflow: ellipsis;
  86. white-space: nowrap;
  87. }
  88. // 多行文字溢出
  89. @mixin text-line-overflow($line) {
  90. display: -webkit-box;
  91. -webkit-box-orient: vertical;
  92. -webkit-line-clamp: $line;
  93. overflow: hidden;
  94. }