You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
390 lines
14 KiB
390 lines
14 KiB
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
!*** css ./node_modules/_css-loader@6.7.1@css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/_@umijs_bundler-webpack@4.0.88@@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/_@umijs_bundler-webpack@4.0.88@@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./src/pages/tasks/vnc-view/index.less ***!
|
|
\*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
.vnc-panel-wrapper {
|
|
position: relative;
|
|
height: calc(100vh - 105px);
|
|
overflow: hidden;
|
|
}
|
|
.vnc-panel-wrapper.full-screen {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
z-index: 200;
|
|
height: 100vh;
|
|
background: white;
|
|
}
|
|
.vnc-panel-wrapper-windows {
|
|
position: relative;
|
|
height: calc(90vh);
|
|
overflow: hidden;
|
|
}
|
|
.vnc-panel-wrapper-windows .btn-vnc-resize {
|
|
position: absolute;
|
|
right: 16px;
|
|
top: 48px;
|
|
z-index: 101;
|
|
color: #fff;
|
|
}
|
|
.vnc-panel-wrapper-windows.full-screen {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
z-index: 200;
|
|
height: 100vh;
|
|
background: white;
|
|
}
|
|
.vnc-panel {
|
|
height: 100%;
|
|
margin: 0 auto;
|
|
min-height: 100px;
|
|
}
|
|
|
|
/*!***************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
!*** css ./node_modules/_css-loader@6.7.1@css-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[1].use[1]!./node_modules/_@umijs_bundler-webpack@4.0.88@@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[4].oneOf[1].use[2]!./node_modules/_xterm@4.8.1@xterm/css/xterm.css ***!
|
|
\***************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
/**
|
|
* Copyright (c) 2014 The xterm.js authors. All rights reserved.
|
|
* Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
|
|
* https://github.com/chjj/term.js
|
|
* @license MIT
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*
|
|
* Originally forked from (with the author's permission):
|
|
* Fabrice Bellard's javascript vt100 for jslinux:
|
|
* http://bellard.org/jslinux/
|
|
* Copyright (c) 2011 Fabrice Bellard
|
|
* The original design remains. The terminal itself
|
|
* has been extended to include xterm CSI codes, among
|
|
* other features.
|
|
*/
|
|
|
|
/**
|
|
* Default styles for xterm.js
|
|
*/
|
|
|
|
.xterm {
|
|
font-feature-settings: "liga" 0;
|
|
position: relative;
|
|
-moz-user-select: none;
|
|
user-select: none;
|
|
-ms-user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
.xterm.focus,
|
|
.xterm:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.xterm .xterm-helpers {
|
|
position: absolute;
|
|
top: 0;
|
|
/**
|
|
* The z-index of the helpers must be higher than the canvases in order for
|
|
* IMEs to appear on top.
|
|
*/
|
|
z-index: 5;
|
|
}
|
|
|
|
.xterm .xterm-helper-textarea {
|
|
padding: 0;
|
|
border: 0;
|
|
margin: 0;
|
|
/* Move textarea out of the screen to the far left, so that the cursor is not visible */
|
|
position: absolute;
|
|
opacity: 0;
|
|
left: -9999em;
|
|
top: 0;
|
|
width: 0;
|
|
height: 0;
|
|
z-index: -5;
|
|
/** Prevent wrapping so the IME appears against the textarea at the correct position */
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
resize: none;
|
|
}
|
|
|
|
.xterm .composition-view {
|
|
/* TODO: Composition position got messed up somewhere */
|
|
background: #000;
|
|
color: #FFF;
|
|
display: none;
|
|
position: absolute;
|
|
white-space: nowrap;
|
|
z-index: 1;
|
|
}
|
|
|
|
.xterm .composition-view.active {
|
|
display: block;
|
|
}
|
|
|
|
.xterm .xterm-viewport {
|
|
/* On OS X this is required in order for the scroll bar to appear fully opaque */
|
|
background-color: #000;
|
|
overflow-y: scroll;
|
|
cursor: default;
|
|
position: absolute;
|
|
right: 0;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.xterm .xterm-screen {
|
|
position: relative;
|
|
}
|
|
|
|
.xterm .xterm-screen canvas {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.xterm .xterm-scroll-area {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.xterm-char-measure-element {
|
|
display: inline-block;
|
|
visibility: hidden;
|
|
position: absolute;
|
|
top: 0;
|
|
left: -9999em;
|
|
line-height: normal;
|
|
}
|
|
|
|
.xterm {
|
|
cursor: text;
|
|
}
|
|
|
|
.xterm.enable-mouse-events {
|
|
/* When mouse events are enabled (eg. tmux), revert to the standard pointer cursor */
|
|
cursor: default;
|
|
}
|
|
|
|
.xterm.xterm-cursor-pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.xterm.column-select.focus {
|
|
/* Column selection mode */
|
|
cursor: crosshair;
|
|
}
|
|
|
|
.xterm .xterm-accessibility,
|
|
.xterm .xterm-message {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
z-index: 10;
|
|
color: transparent;
|
|
}
|
|
|
|
.xterm .live-region {
|
|
position: absolute;
|
|
left: -9999px;
|
|
width: 1px;
|
|
height: 1px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.xterm-dim {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.xterm-underline {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
!*** css ./node_modules/_css-loader@6.7.1@css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/_@umijs_bundler-webpack@4.0.88@@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/_@umijs_bundler-webpack@4.0.88@@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Shixuns/New/ImagePreview/xterm-panel/index.less?modules ***!
|
|
\***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
.xterm-panel___S5eQ3 {
|
|
height: calc(100vh - 94px);
|
|
}
|
|
.xterm-panel___S5eQ3 [class~='terminal'] {
|
|
height: 100%;
|
|
}
|
|
.xterm-panel___S5eQ3 [class~='xterm-viewport'] {
|
|
overflow-y: auto !important;
|
|
}
|
|
|
|
/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
!*** css ./node_modules/_css-loader@6.7.1@css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/_@umijs_bundler-webpack@4.0.88@@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/_@umijs_bundler-webpack@4.0.88@@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Shixuns/New/ImagePreview/index.less?modules ***!
|
|
\***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
.wrap___nt3l8 {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
min-width: 1200px;
|
|
}
|
|
.header___pWY1w {
|
|
height: 54px;
|
|
background: #05101a;
|
|
display: flex;
|
|
align-items: center;
|
|
color: #fff;
|
|
padding: 0 20px;
|
|
}
|
|
.header___pWY1w button:disabled {
|
|
color: #7E8595 !important;
|
|
background-color: #42484E !important;
|
|
border: 1px solid #474C51 !important;
|
|
}
|
|
.header___pWY1w .cutDown___LErwR {
|
|
display: inline-flex;
|
|
height: 18px;
|
|
overflow: hidden;
|
|
align-items: center;
|
|
}
|
|
.header___pWY1w .cutDown___LErwR span {
|
|
font-size: 16px;
|
|
}
|
|
.container____IeqS {
|
|
height: calc(100vh - 94px);
|
|
background: #000000;
|
|
}
|
|
.errorData___pJ481 {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
!*** css ./node_modules/_css-loader@6.7.1@css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/_@umijs_bundler-webpack@4.0.88@@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/_@umijs_bundler-webpack@4.0.88@@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/tasks/code-repository/HorizontalTabs/index.less?modules ***!
|
|
\***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
.scrollbar___lLOKh {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 40px;
|
|
overflow: hidden;
|
|
flex: 1 1;
|
|
}
|
|
.scrollbar___lLOKh .scrollbarContent___J5uQ6 {
|
|
flex: 1 1;
|
|
white-space: nowrap;
|
|
width: -webkit-max-content;
|
|
width: -moz-max-content;
|
|
width: max-content;
|
|
}
|
|
.scrollbar___lLOKh .scrollbarTrack___ptQqt {
|
|
width: 100%;
|
|
flex-shrink: 0;
|
|
height: 4px;
|
|
background: #162028;
|
|
position: relative;
|
|
}
|
|
.scrollbar___lLOKh .scrollbarTrack___ptQqt .scrollbarThumb___GFuZv {
|
|
position: absolute;
|
|
z-index: 10;
|
|
left: 0;
|
|
top: 0;
|
|
height: 4px;
|
|
background: #1D2B37;
|
|
cursor: pointer;
|
|
}
|
|
.item___MSfbI {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 0 20px;
|
|
height: 100%;
|
|
cursor: pointer;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
border-radius: 2px;
|
|
margin-right: 1px;
|
|
background: #1E2429;
|
|
color: #AFB1B3;
|
|
position: relative;
|
|
}
|
|
.item___MSfbI:hover {
|
|
background: #28323A;
|
|
}
|
|
.item___MSfbI > span {
|
|
font-size: 14px;
|
|
margin-left: 8px;
|
|
}
|
|
.item___MSfbI .icon___AXhP9 {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 20px;
|
|
height: 20px;
|
|
padding-top: 2px;
|
|
padding-left: 3px;
|
|
}
|
|
.item___MSfbI .icon___AXhP9 b[class~='icon-shouqi4'] {
|
|
font-size: 12px;
|
|
display: inline-block;
|
|
transform: scale(0.5) rotate(90deg);
|
|
}
|
|
.item___MSfbI .icon___AXhP9 b[class~='icon-a-xialazhankai'] {
|
|
font-size: 12px;
|
|
display: inline-block;
|
|
transform: scale(0.5);
|
|
}
|
|
.item___MSfbI .dot___BA766 {
|
|
width: 6px;
|
|
height: 6px;
|
|
background: #58ffc7;
|
|
margin-left: 8px;
|
|
border-radius: 50%;
|
|
}
|
|
.active___Rkf93 {
|
|
background: #28323A !important;
|
|
}
|
|
.active___Rkf93:after {
|
|
content: '';
|
|
position: absolute;
|
|
z-index: 2;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
bottom: 0;
|
|
width: 100px;
|
|
height: 2px;
|
|
background: #5295CA;
|
|
max-width: 100%;
|
|
}
|
|
.pathActive___l4hB4 {
|
|
color: #2ea4ff !important;
|
|
}
|
|
.paths___gzBRM ul[class~='ant-dropdown-menu'] {
|
|
background-color: #010e1f;
|
|
padding: 0;
|
|
}
|
|
.paths___gzBRM li[class~='ant-dropdown-menu-item']:hover {
|
|
background-color: #323030;
|
|
}
|
|
.paths___gzBRM span[class~='ant-dropdown-menu-title-content'] span {
|
|
color: #747a7f;
|
|
}
|
|
|