-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
98 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,108 +1,82 @@ | ||
html, | ||
body, | ||
#root { | ||
height: 100%; | ||
height: 100%; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
-webkit-user-select: none; | ||
margin: 0; | ||
-webkit-user-select: none; | ||
} | ||
|
||
::-webkit-scrollbar { | ||
/*滚动条整体样式*/ | ||
width: 8px; /*高宽分别对应横竖滚动条的尺寸*/ | ||
height: 8px; | ||
/*滚动条整体样式*/ | ||
width: 8px; /*高宽分别对应横竖滚动条的尺寸*/ | ||
height: 8px; | ||
} | ||
|
||
::-webkit-scrollbar-thumb { | ||
/*滚动条里面小方块*/ | ||
border-radius: 5px; | ||
/*-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);*/ | ||
background: #e0e0e0; | ||
/*滚动条里面小方块*/ | ||
border-radius: 5px; | ||
/*-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);*/ | ||
background: #e0e0e0; | ||
} | ||
|
||
::-webkit-scrollbar-track { | ||
/*滚动条里面轨道*/ | ||
/*-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);*/ | ||
border-radius: 0; | ||
background: #f7f7f7; | ||
/*滚动条里面轨道*/ | ||
/*-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);*/ | ||
border-radius: 0; | ||
background: #f7f7f7; | ||
} | ||
|
||
.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; | ||
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; | ||
-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%; | ||
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%; | ||
} | ||
|
||
.Resizer.horizontal:hover { | ||
border-top: 5px solid rgba(0, 0, 0, 0.5); | ||
border-bottom: 5px solid rgba(0, 0, 0, 0.5); | ||
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; | ||
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); | ||
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; | ||
cursor: not-allowed; | ||
} | ||
|
||
.Resizer.disabled:hover { | ||
border-color: transparent; | ||
border-color: transparent; | ||
} | ||
|
||
/*.card-container > .ant-tabs-card > .ant-tabs-content {*/ | ||
/* !*height: 120px;*!*/ | ||
/* margin-top: -16px;*/ | ||
/*}*/ | ||
|
||
/*.card-container > .ant-tabs-card > .ant-tabs-content > .ant-tabs-tabpane {*/ | ||
/* background: #fff !important;*/ | ||
/* !*padding: 16px !important;*!*/ | ||
/*}*/ | ||
|
||
/*.card-container > .ant-tabs-card > .ant-tabs-bar {*/ | ||
/* border-color: #fff !important;*/ | ||
/*}*/ | ||
|
||
/*.card-container > .ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {*/ | ||
/* border-color: transparent !important;*/ | ||
/* background: transparent !important;*/ | ||
/*}*/ | ||
|
||
/*.card-container > .ant-tabs-card > .ant-tabs-bar .ant-tabs-tab-active {*/ | ||
/* border-color: #fff !important;*/ | ||
/* background: #fff !important;*/ | ||
/*}*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.