using System; using System.Collections.Generic; using System.Text; namespace Acdiu.AspNetCore.Mvc.Commons.Constants { /// /// 全局 UI 常量定义 /// public static class UIConstants { /// /// 资源路径常量 /// public static class Paths { /// /// 默认 Bootstrap Icons SVG Sprite 文件路径 /// public const string DefaultIconSprite = "/lib/bootstrap-icons-1.13.1/bootstrap-icons.svg"; } /// /// BS SVG 图标默认需要添加的 CSS 类名 /// public static class Classes { /// /// 默认宽度类名,适配响应式根字号(1rem)。如果用户未指定宽度,则默认添加这些类名以确保图标大小适中且响应式。用户可以通过添加其他类名覆盖这些默认值。 /// public const string DefaultWidth = "w-1r"; /// /// 默认高度类名,适配响应式根字号(1rem)。如果用户未指定高度,则默认添加这些类名以确保图标大小适中且响应式。用户可以通过添加其他类名覆盖这些默认值。 /// public const string DefaultHeight = "h-1r"; } } }