/** * 需要动态加载进header标签的tab的css样式 * @remarks * 防止拖拽时页签样式失效 * 由于“拖拽中”的元素是由第三方插件动态生成并附加到body上的,本组件的css样式无法被应用 * 所以在组件初始化的过程中直接在head标签上创建一个style标签,用于包含tab页签的相关样式 * (顺便隐藏掉“monaco-aria-container”元素,该元素由monaco-editor生成) */ export declare const GLOBAL_TAB_CSS = "\n.tab-item.from-ide-code-view {\n box-sizing: border-box;\n display: flex;\n align-items: center;\n}\n.tab-item.from-ide-code-view .tab-item-content.drag-tab-moving--from-code-view {\n display: flex;\n align-items: center;\n height: 40px;\n overflow: hidden;\n background-color: #E8E9E9;\n border-radius: 5px;\n border: 1px solid #8e959b;\n}\n.tab-item.from-ide-code-view .tab-item-content.drag-tab-moving--from-code-view .tab-item-close {\n margin-right: 5px;\n color: #878787;\n}\n.tab-item.from-ide-code-view .tab-item-content.drag-tab-moving--from-code-view .tab-item-icon {\n padding-left: 0px;\n}\n.tab-item.from-ide-code-view .tab-item-content.drag-tab-moving--from-code-view .tab-item-text {\n display: block;\n padding: 0px 6px 2px 14px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.monaco-aria-container {\n display: none !important;\n}\n";