| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /* 客户端自定义markdown元素 */
- .client-formated-markdown-element-item {
- }
- /**
- * 正文文档引用标记,点击此标记会弹出引用
- */
- .client-formated-markdown-doc-refference-flag {
- /* width: 13px;
- height: 13px;
- margin-left: 4px;
- border-radius: 50%;
- cursor: pointer;
- display: inline-block;
- border: 1px solid #888; */
- }
- .client-formated-markdown-doc-refference-flag .refference-flag-circle {
- width: 13px;
- height: 13px;
- margin-left: 4px;
- border-radius: 50%;
- cursor: pointer;
- display: inline-block;
- /* border: 1px solid #888; */
- border: 1px solid var(--color-text-1);
- }
- .client-formated-markdown-doc-refference-flag .refference-flag-circle::before {
- content: '!';
- font-size: 12px;
- /* color: #000; */
- color: var(--color-text-1);
- line-height: 12px;
- text-align: center;
- display: block;
- }
- /* 正文文档来源header */
- .client-formated-markdown-refference-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- /* 正文底部文档引用列表 */
- .client-formated-markdown-doc-refference-container {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- /* 文档来源样式开始 */
- .client-formated-markdown-doc-refference-item {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .client-formated-markdown-doc-refference-item .refference-index {
- display: inline-block;
- background-color: #00aea333;
- color: #00aea3;
- padding: 1px 5px;
- border-radius: 2px;
- margin-right: 5px;
- font-size: 12px;
- cursor: pointer;
- }
- .client-formated-markdown-doc-refference-item .refference-label {
- }
- /* 文档来源样式结束 */
- /* 下载链接样式开始 */
- .client-formated-download-container {
- }
- .client-formated-download-container .download-link {
- display: flex;
- align-items: center;
- }
- .client-formated-download-container .download-link .download-icon {
- display: inline-block;
- margin-right: 5px;
- font-size: 18px;
- }
- /* 下载链接样式结束 */
- .dialog-markdown-container {
- }
- .dialog-markdown-container code {
- overflow-x: auto;
- }
- .dialog-markdown-container img {
- max-width: 600px;
- }
|