amis2/packages/amis-ui/scss
qkiroc 4f826db3e5
Some checks are pending
CodeQL / Analyze (javascript) (push) Waiting to run
gh-pages / build (20.x) (push) Waiting to run
fix: 修复theme-helper引用报错问题 (#11273)
* fix: 修复theme-helper引用报错问题

* 调整成包依赖

* 调整成包依赖
2024-11-28 15:41:43 +08:00
..
base style(amis): ErrorBoundary默认提示样式改放amis中 2023-11-22 12:28:28 +08:00
components fix: 修复theme-helper引用报错问题 (#11273) 2024-11-28 15:41:43 +08:00
helper feat: inputCity 支持itemClassName 2023-07-28 17:52:44 +08:00
layout style: 避免内容被撑开 (#10208) 2024-05-10 17:20:32 +08:00
themes feat: 编辑器移动端增加尺寸选择功能 (#10995) 2024-10-10 13:56:16 +08:00
_components.scss feat: 复选框\单选框支持更换图标 (#11191) 2024-11-15 10:19:55 +08:00
_functions.scss chore: 优化checkbox\radio样式 (#11171) 2024-11-11 20:09:33 +08:00
_mixins.scss chore: 优化checkbox\radio样式 (#11171) 2024-11-11 20:09:33 +08:00
_properties.scss feat: 美化crud2移动端的卡片样式,支持查询表单折叠 2024-10-14 19:15:37 +08:00
_thirds.scss feat: amis支持进入\强调\退出动画配置 (#11091) 2024-10-23 17:16:32 +08:00
_utilities.scss style: 主题变量整理 (#5712) 2022-11-11 15:40:46 +08:00
_variables.scss fix: dix scss deprecation warning 2024-10-08 16:16:50 +08:00
helper.scss chore: _utilities.scss 移到 helper.css 里面 2022-06-09 10:24:30 +08:00
README.md 调整为 monorepo 2022-06-01 15:06:00 +08:00

开发注意事项

目前 scss 里大量使用了 css 自定义变量,它和之前的 scss 变量明显不同,需要注意一下几点:

  • 目前依然有使用 scss 变量,因为有大量颜色计算,这些计算没法在自定义变量中使用,是所以目前是用两者结合的方式,想修改颜色最好的方式还是 scss 变量,但其他都能方便使用自定义变量修改,后续有可能基于 hsl 的方式来使得颜色也动态计算。
  • components 内的组件不要使用 @if、lighten、darken 等函数,这些功能无法支持自定义变量,解决办法是新增变量,放 _properties.scss 里,这样也能支持用户自定义。
  • 负数需要使用 calc(var(--xxx) * -1)
  • 在变量中使用 sass 功能需要用 #{} 包裹,比如 --borderColorLight: #{lighten($borderColor, 5%)};
  • 在 Chrome 开发工具中点变量会没反应,是因为我们的变量太多了,得先在开发工具里点一下显示全部变量。