import { animation } from "src/core/theme"; import { css, themeVars } from "src/types/vars"; // 一些界面内的提示框, 比如克隆按钮, PR信息, Runner信息 等 export const tippyBox = css` .tippy-box { margin-top: -3px; border-radius: 12px; overflow: hidden; animation: ${animation}; // 边框线同步 github 样式 &[data-theme="default"], &[data-theme="box-with-header"] { border: unset; box-shadow: ${themeVars.github.shadow.floating.small}; } // 带标题的提示框 (Runner信息) &[data-theme="box-with-header"] { .tippy-content { background-color: ${themeVars.color.menu}; .ui.attached.header { background-color: ${themeVars.color.body}; } } } } `;