diff --git a/docs/quickreference.md b/docs/quickreference.md index cf2e8c6..3a6a90a 100644 --- a/docs/quickreference.md +++ b/docs/quickreference.md @@ -578,6 +578,17 @@ H2 部分 `` +### 列表箭头样式展示表格 + +:- | :- +:- | :- +`visualEffectState.inactive` | 后台应一直显示为非激活状态。 +`titleBarStyle` _string_ _(win/mac)_ | 窗口标题栏样式。默认值 _(default)_ +`titleBarStyle.default` | 分别返回 _mac_ 或者 _win_ 的标准标题栏 + + +`` + 列表 --- diff --git a/scripts/style.css b/scripts/style.css index 3a2e664..09faa67 100644 --- a/scripts/style.css +++ b/scripts/style.css @@ -208,14 +208,26 @@ table.show-header thead { display: table-header-group; } -table.style-list td + td { +table.style-list td + td, table.style-list-arrow td + td { padding-top: 0 !important; } -table.style-list td { + +table.style-list td, table.style-list-arrow td { display: block; text-align: left !important; } +table.style-list-arrow td:first-child::before { + content: ''; + display: inline-block; + width: 0px; + height: 0px; + border-right: 8px solid transparent; + border-top: 5px solid transparent; + border-left: 8px solid #228e6c; + border-bottom: 5px solid transparent; +} + tt, code { font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; font-size: 1em; @@ -649,6 +661,7 @@ body:not(.home) .h3wrap > h3:hover a::after { width: 0.5rem; border-color: #228e6c; background: transparent; + border-style: solid; top: 14px; }