语义-UI:包含所有主题变量的备忘单

Semantic-UI: Cheatsheet with all theme variables

正如您在 http://semantic-ui.com/usage/theming.html, there are predefined variables for each element, collection, module etc (for example button.variables: https://github.com/Semantic-Org/Semantic-UI/blob/master/src/themes/amazon/elements/button.variables 看到的那样。

不幸的是,我找不到每个元素、模块、集合等的所有可能变量。是否有类似备忘单的东西,其中包含语义的所有可能主题变量?UI?

您真正要找的是文件夹 src 下的 Labeled as Definitions。

https://github.com/Semantic-Org/Semantic-UI-Meteor-Data/tree/master/lib/semantic-ui/src/definitions

这是一个例子:https://github.com/Semantic-Org/Semantic-UI-Meteor-Data/blob/master/lib/semantic-ui/src/definitions/globals/site.import.less

您只能为每个标签更改几个变量,例如正文:

body {
  margin: 0px;
  padding: 0px;
  overflow-x: @pageOverflowX;
  min-width: @pageMinWidth;
  background: @pageBackground;
  font-family: @pageFont;
  font-size: @fontSize;
  line-height: @lineHeight;
  color: @textColor;
  font-smoothing: @fontSmoothing;
}

希望对您有所帮助!

最佳!

朱尔斯