d1ce649fb2
Discourse Theme / ci (push) Failing after 0s
- 将原有的 custom_cursor 重命名为 default_cursor,并实现默认光标功能 - 新增 hover_cursor 配置,为链接和按钮元素提供悬停光标效果 - 新增 pointer_cursor 配置,为链接元素提供专用指针光标 - 新增 text_cursor 配置,为输入框和文本域提供文本编辑光标 - 在 settings.yml 中添加对应的配置项和描述信息 - 实现多层级光标样式的 SCSS 逻辑处理
38 lines
708 B
YAML
38 lines
708 B
YAML
enable_welcome_banner:
|
|
default: true
|
|
description: "Overrides the core `enable welcome banner` site setting"
|
|
|
|
search_experience:
|
|
type: enum
|
|
default: search_field
|
|
choices:
|
|
- search_field
|
|
- search_icon
|
|
description: "Overrides the core `search experience` site setting"
|
|
|
|
home_bg_image:
|
|
type: upload
|
|
default: ""
|
|
description: "首页背景图"
|
|
|
|
default_cursor:
|
|
type: upload
|
|
default: ""
|
|
description: "默认光标 SVG 文件"
|
|
|
|
hover_cursor:
|
|
type: upload
|
|
default: ""
|
|
description: "悬停光标 SVG 文件"
|
|
|
|
pointer_cursor:
|
|
type: upload
|
|
default: ""
|
|
description: "链接光标 SVG 文件"
|
|
|
|
text_cursor:
|
|
type: upload
|
|
default: ""
|
|
description: "文本光标 SVG 文件"
|
|
|