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.
234 lines
4.2 KiB
234 lines
4.2 KiB
.Resizer {
|
|
background: #000;
|
|
opacity: 0.2;
|
|
z-index: 1;
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
-moz-background-clip: padding;
|
|
-webkit-background-clip: padding;
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
.Resizer:hover {
|
|
-webkit-transition: all 2s ease;
|
|
transition: all 2s ease;
|
|
}
|
|
|
|
.Resizer.horizontal {
|
|
height: 11px;
|
|
margin: -5px 0;
|
|
border-top: 5px solid rgba(255, 255, 255, 0);
|
|
border-bottom: 5px solid rgba(255, 255, 255, 0);
|
|
cursor: row-resize;
|
|
width: 100%;
|
|
}
|
|
.filestyles{
|
|
color: #28b887 !important;
|
|
font-size: 25px !important;
|
|
margin-left:20px;
|
|
}
|
|
.Resizer.horizontal:hover {
|
|
border-top: 5px solid rgba(0, 0, 0, 0.5);
|
|
border-bottom: 5px solid rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.Resizer.vertical {
|
|
width: 11px;
|
|
margin: 0 -5px;
|
|
border-left: 5px solid rgba(255, 255, 255, 0);
|
|
border-right: 5px solid rgba(255, 255, 255, 0);
|
|
cursor: col-resize;
|
|
}
|
|
|
|
.Resizer.vertical:hover {
|
|
border-left: 5px solid rgba(0, 0, 0, 0.5);
|
|
border-right: 5px solid rgba(0, 0, 0, 0.5);
|
|
}
|
|
.Resizer.disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
.Resizer.disabled:hover {
|
|
border-color: transparent;
|
|
}
|
|
|
|
.jupyter_area{
|
|
|
|
.jupyter_header{
|
|
position: relative;
|
|
height: 60px;
|
|
line-height: 60px;
|
|
background-color: #070F1A;
|
|
padding-left: 30px;
|
|
z-index:999999;
|
|
.jupyter_title{
|
|
display: flex;
|
|
flex-direction: column;
|
|
// justify-content: space-around;
|
|
align-items: center;
|
|
height: 100%;
|
|
color: #fff;
|
|
.title_desc{
|
|
margin-top: 12px;
|
|
font-size: 16px;
|
|
}
|
|
.title_time{
|
|
font-size: 12px;
|
|
}
|
|
// text-align: center;
|
|
}
|
|
|
|
.jupyter_btn{
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 14px;
|
|
|
|
.btn_common{
|
|
color: #888;
|
|
}
|
|
.btn_common:hover{
|
|
// background-color: #29BD8B;
|
|
// color: #29BD8B;
|
|
color: #1890ff;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.jupyter_ctx{
|
|
position: relative;
|
|
height: calc(100vh - 60px);
|
|
}
|
|
|
|
.update_notice{
|
|
text-align: center;
|
|
.update_txt{
|
|
line-height: 18px;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.RightPaneDrawer{
|
|
.RightPaneDrawertop{
|
|
width:330px;
|
|
height:29px;
|
|
background:rgba(17,28,36,1);
|
|
}
|
|
|
|
.ant-drawer-content-wrapper{
|
|
width:330px !important;
|
|
//box-shadow: -2px 0 8px #070F1A !important;
|
|
}
|
|
.ant-drawer-body{
|
|
padding: 0px;
|
|
}
|
|
.ant-drawer-wrapper-body{
|
|
padding-top: 60px;
|
|
background: #070F1A;
|
|
padding-bottom: 40px;
|
|
}
|
|
|
|
.ant-pagination{
|
|
color:#fff !important;
|
|
}
|
|
|
|
}
|
|
|
|
.newjupyter_data_sets_area{
|
|
background:#070F1A !important;
|
|
.jupyter_h2_title {
|
|
padding-left: 20px;
|
|
height:49px;
|
|
line-height: 49px;
|
|
background: #070F1A !important;
|
|
//border-bottom: 1px solid #17212F !important;
|
|
color:#FFFFFF !important;
|
|
//border-top: 1px solid #17212F !important;
|
|
}
|
|
.iconfont{
|
|
color:#28b887!important;
|
|
font-size: 30px !important;
|
|
margin-right: 20px;
|
|
}
|
|
.jupyter_pagination{
|
|
border-top: 1px solid #070F1A !important;
|
|
padding-left: 50px;
|
|
}
|
|
|
|
.jupyter_name{
|
|
color:#FFFFFF !important;
|
|
}
|
|
.file_path_input{
|
|
position: absolute;
|
|
right: -50%;
|
|
}
|
|
}
|
|
|
|
.maxnamewidth150 {
|
|
max-width: 150px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
cursor: default;
|
|
width: 150px;
|
|
}
|
|
.sortinxdirection{
|
|
display: flex;
|
|
flex-direction:row;
|
|
}
|
|
|
|
.lineheighttaj{
|
|
line-height: 50px !important;
|
|
}
|
|
.colorlineheighttaj{
|
|
color: #ffffff;
|
|
}
|
|
|
|
.jupytertitle_time{
|
|
.ant-statistic-content{
|
|
font-size: 20px !important;
|
|
}
|
|
.ant-statistic-content-value{
|
|
color:#fff !important;
|
|
font-size: 14px !important;
|
|
}
|
|
}
|
|
|
|
.jupyter_data_list{
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
.bortop17212F{
|
|
border-top: 1px solid #17212F !important;
|
|
}
|
|
|
|
.borbottom17212F{
|
|
border-bottom: 1px solid #17212F !important;
|
|
}
|
|
|
|
.jupyterfilepaths{
|
|
color: #888 !important;
|
|
font-size: 16px !important;
|
|
padding-left: 20px;
|
|
background: #070F1A !important;
|
|
}
|
|
|
|
.maxnamewidth186JUPYTER{
|
|
max-width: 186px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
cursor: default;
|
|
width: 186px;
|
|
}
|
|
|
|
.maxnamewidth181{
|
|
max-width:181px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
cursor: default;
|
|
width: 181px;
|
|
} |