amis/packages/amis-ui/scss
wutong 802f966a53
Merge pull request #9140 from lurunze1226/fix-table-drag-with-fixed-col
fix: Table、Table2组件列固定宽度时禁止拖拽伸缩
2023-12-20 19:03:48 +08:00
..
base style(amis): ErrorBoundary默认提示样式改放amis中 2023-11-22 12:28:28 +08:00
components Merge pull request #9140 from lurunze1226/fix-table-drag-with-fixed-col 2023-12-20 19:03:48 +08:00
helper feat: inputCity 支持itemClassName 2023-07-28 17:52:44 +08:00
layout chore: 调整 affixedOffset 为样式,去掉没必要的 js 计算, 优化 page asideSticky 实现, 部分样式优化 Close: #6493 (#8508) 2023-10-26 16:40:26 +08:00
themes feat: InputText多选模式下的tag自适应展示tooltip(OverflowTpl) (#9055) 2023-12-14 19:36:37 +08:00
_components.scss fix: 修复 table 的 column 的 id 属性可能重复导致样式错误的问题 (#9190) 2023-12-20 18:58:21 +08:00
_functions.scss 调整为 monorepo 2022-06-01 15:06:00 +08:00
_mixins.scss fix:picker配置优化修复 (#9180) 2023-12-20 16:33:18 +08:00
_properties.scss style:深色模式 变量替换 (#9152) 2023-12-20 15:23:31 +08:00
_thirds.scss fix: 修复 sdk css 内联问题 (#5318) 2022-09-06 11:21:44 +08:00
_utilities.scss style: 主题变量整理 (#5712) 2022-11-11 15:40:46 +08:00
_variables.scss style: 降低 sticky zindex Close: #7791 (#7823) 2023-08-15 10:07:48 +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 开发工具中点变量会没反应,是因为我们的变量太多了,得先在开发工具里点一下显示全部变量。