1 Star 0 Fork 0

choerodon-ui / c7n-performance-table

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index-09dbcdc5-4.css 22.23 KB
一键复制 编辑 原始数据 按行查看 历史
graysheep 提交于 2020-09-11 18:15 . [ADD] Table perfomence demo
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113
.code-box .highlight:not(:first-child) {
border-top: 1px dashed #ebedf0;
}
.code-box-actions {
position: absolute;
top: 10px;
right: 12px;
text-align: right;
}
.code-box-actions > i,
.code-box-actions > form {
display: inline-block;
margin-left: 8px;
}
.code-box-code-copy {
width: 20px;
height: 20px;
color: #697b8c;
font-size: 14px;
line-height: 20px;
text-align: center;
background: #fff;
border-radius: 20px;
cursor: pointer;
opacity: 0;
-webkit-transition: all 0.24s;
transition: all 0.24s;
}
.code-box-code-copy:hover {
color: #697b8c;
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
.code-box-code-copy.icon-check {
color: #00bf96 !important;
font-weight: bold;
}
.code-box-codepen {
width: 20px;
height: 20px;
overflow: hidden;
text-indent: -9999px;
background: transparent url('https://gw.alipayobjects.com/zos/rmsportal/OtZslpOjYXijshDERXwc.svg') center / 14px no-repeat;
border: 0;
cursor: pointer;
opacity: 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.code-box-riddle {
width: 20px;
height: 20px;
overflow: hidden;
text-indent: -9999px;
background: transparent url('https://gw.alipayobjects.com/zos/rmsportal/DlHbxMCyeuyOrqOdbgik.svg') center / 14px no-repeat;
border: 0;
cursor: pointer;
opacity: 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.code-box-codesandbox {
width: 20px;
height: 20px;
overflow: hidden;
text-indent: -9999px;
background: transparent url('https://gw.alipayobjects.com/zos/rmsportal/aaYmtdDyHSCkXyLZVgGK.svg') center / 14px no-repeat;
border: 0;
cursor: pointer;
opacity: 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.code-box-stackblitz {
width: 20px;
height: 20px;
color: #697b8c;
font-size: 16px;
line-height: 18px;
cursor: pointer;
opacity: 0;
-webkit-transition: all 0.24s;
transition: all 0.24s;
}
.highlight-wrapper:hover .code-box-code-copy,
.highlight-wrapper:hover .code-box-codepen,
.highlight-wrapper:hover .code-box-codesandbox,
.highlight-wrapper:hover .code-box-stackblitz,
.highlight-wrapper:hover .code-box-riddle {
opacity: 1;
}
.code-box pre {
width: auto;
margin: 0;
}
.code-box pre code {
background: #fff;
border: none;
}
/* stylelint-disable no-duplicate-selectors */
.color-palettes {
margin: 0 1%;
}
.color-palette {
display: inline-block;
width: 31%;
margin: 45px 1%;
}
.color-palette-pick {
margin-bottom: 8px;
font-size: 20px;
text-align: center;
}
.color-palette-picker {
margin: 12px 0 24px;
}
.color-palette-picker-value {
font-size: 13px;
font-family: Consolas, sans-serif;
}
.main-color {
text-align: left;
}
.main-color-item {
position: relative;
height: 44px;
margin-right: 4px;
padding: 0 12px;
font-size: 14px;
font-family: Consolas, sans-serif;
line-height: 44px;
cursor: pointer;
-webkit-transition: all 0.2s;
transition: all 0.2s;
}
.main-color-item:first-child {
border-radius: 4px 4px 0 0;
}
.main-color-item:last-child {
border-radius: 0 0 4px 4px;
}
.main-color-item:hover {
margin-right: -8px;
border-radius: 0 4px 4px 0;
}
.main-color-item .main-color-text {
float: left;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.main-color-item .main-color-value {
position: relative;
left: 3px;
float: right;
-webkit-transform: scale(0.85);
-ms-transform: scale(0.85);
transform: scale(0.85);
-webkit-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
transform-origin: 100% 50%;
opacity: 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.color-title {
margin: 0 0 24px;
color: #5c6b77;
font-weight: 500;
font-size: 22px;
text-align: center;
text-transform: capitalize;
}
.color-description {
display: block;
color: #777;
font-weight: lighter;
font-size: 14px;
}
.main-color:hover .main-color-value {
left: 0;
opacity: 0.7;
}
.color-palette-horizontal {
width: 100%;
}
.color-palette-horizontal .main-color {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.color-palette-horizontal .main-color-item {
position: relative;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
height: 86px;
margin-right: 0;
padding: 0;
padding-top: 37px;
line-height: normal;
text-align: center;
border-radius: 0;
}
.color-palette-horizontal .main-color-item .main-color-text {
float: none;
}
.color-palette-horizontal .main-color-item:hover {
height: 96px;
margin-top: -10px;
border-radius: 4px 4px 0 0;
}
.color-palette-horizontal .main-color-value {
position: absolute;
bottom: 0;
left: 0;
float: none;
width: 100%;
text-align: center;
-webkit-transform-origin: unset;
-ms-transform-origin: unset;
transform-origin: unset;
}
.color-palette-horizontal .main-color:hover .main-color-item {
padding-top: 8px;
}
.color-palette-horizontal .main-color:hover .main-color-value {
bottom: 8px;
opacity: 0.7;
}
.main-color .palatte-blue-1 {
background: #e6ebf5;
}
.main-color .palatte-blue-2 {
background: #dadee8;
}
.main-color .palatte-blue-3 {
background: #b6bfdb;
}
.main-color .palatte-blue-4 {
background: #8a99cf;
}
.main-color .palatte-blue-5 {
background: #6374c2;
}
.main-color .palatte-blue-6 {
background: #3f51b5;
}
.main-color .palatte-blue-7 {
background: #2b378f;
}
.main-color .palatte-blue-8 {
background: #1a2169;
}
.main-color .palatte-blue-9 {
background: #0d1042;
}
.main-color .palatte-blue-10 {
background: #05061c;
}
.main-color .palatte-purple-1 {
background: #ebdfed;
}
.main-color .palatte-purple-2 {
background: #ded3e0;
}
.main-color .palatte-purple-3 {
background: #ceb8d4;
}
.main-color .palatte-purple-4 {
background: #b98dc7;
}
.main-color .palatte-purple-5 {
background: #a466ba;
}
.main-color .palatte-purple-6 {
background: #8e44ad;
}
.main-color .palatte-purple-7 {
background: #692e87;
}
.main-color .palatte-purple-8 {
background: #481c61;
}
.main-color .palatte-purple-9 {
background: #290e3b;
}
.main-color .palatte-purple-10 {
background: #0e0514;
}
.main-color .palatte-cyan-1 {
background: #e6fffb;
}
.main-color .palatte-cyan-2 {
background: #b5f5ec;
}
.main-color .palatte-cyan-3 {
background: #87e8de;
}
.main-color .palatte-cyan-4 {
background: #5cdbd3;
}
.main-color .palatte-cyan-5 {
background: #36cfc9;
}
.main-color .palatte-cyan-6 {
background: #13c2c2;
}
.main-color .palatte-cyan-7 {
background: #08979c;
}
.main-color .palatte-cyan-8 {
background: #006d75;
}
.main-color .palatte-cyan-9 {
background: #00474f;
}
.main-color .palatte-cyan-10 {
background: #002329;
}
.main-color .palatte-green-1 {
background: #e6fff5;
}
.main-color .palatte-green-2 {
background: #9bf2d4;
}
.main-color .palatte-green-3 {
background: #6ee6c0;
}
.main-color .palatte-green-4 {
background: #45d9af;
}
.main-color .palatte-green-5 {
background: #21cca1;
}
.main-color .palatte-green-6 {
background: #00bf96;
}
.main-color .palatte-green-7 {
background: #00997d;
}
.main-color .palatte-green-8 {
background: #007362;
}
.main-color .palatte-green-9 {
background: #004d44;
}
.main-color .palatte-green-10 {
background: #002623;
}
.main-color .palatte-magenta-1 {
background: #fff0f6;
}
.main-color .palatte-magenta-2 {
background: #ffd6e7;
}
.main-color .palatte-magenta-3 {
background: #ffadd2;
}
.main-color .palatte-magenta-4 {
background: #ff85c0;
}
.main-color .palatte-magenta-5 {
background: #f759ab;
}
.main-color .palatte-magenta-6 {
background: #eb2f96;
}
.main-color .palatte-magenta-7 {
background: #c41d7f;
}
.main-color .palatte-magenta-8 {
background: #9e1068;
}
.main-color .palatte-magenta-9 {
background: #780650;
}
.main-color .palatte-magenta-10 {
background: #520339;
}
.main-color .palatte-red-1 {
background: #ffeae6;
}
.main-color .palatte-red-2 {
background: #ffafa3;
}
.main-color .palatte-red-3 {
background: #fc8679;
}
.main-color .palatte-red-4 {
background: #f0584d;
}
.main-color .palatte-red-5 {
background: #e32b24;
}
.main-color .palatte-red-6 {
background: #d50000;
}
.main-color .palatte-red-7 {
background: #b00006;
}
.main-color .palatte-red-8 {
background: #8a0009;
}
.main-color .palatte-red-9 {
background: #63000a;
}
.main-color .palatte-red-10 {
background: #3d0008;
}
.main-color .palatte-volcano-1 {
background: #fff2e8;
}
.main-color .palatte-volcano-2 {
background: #ffd8bf;
}
.main-color .palatte-volcano-3 {
background: #ffbb96;
}
.main-color .palatte-volcano-4 {
background: #ff9c6e;
}
.main-color .palatte-volcano-5 {
background: #ff7a45;
}
.main-color .palatte-volcano-6 {
background: #fa541c;
}
.main-color .palatte-volcano-7 {
background: #d4380d;
}
.main-color .palatte-volcano-8 {
background: #ad2102;
}
.main-color .palatte-volcano-9 {
background: #871400;
}
.main-color .palatte-volcano-10 {
background: #610b00;
}
.main-color .palatte-orange-1 {
background: #fff7e6;
}
.main-color .palatte-orange-2 {
background: #ffe7ba;
}
.main-color .palatte-orange-3 {
background: #ffd591;
}
.main-color .palatte-orange-4 {
background: #ffc069;
}
.main-color .palatte-orange-5 {
background: #ffa940;
}
.main-color .palatte-orange-6 {
background: #fa8c16;
}
.main-color .palatte-orange-7 {
background: #d46b08;
}
.main-color .palatte-orange-8 {
background: #ad4e00;
}
.main-color .palatte-orange-9 {
background: #873800;
}
.main-color .palatte-orange-10 {
background: #612500;
}
.main-color .palatte-gold-1 {
background: #fffbe6;
}
.main-color .palatte-gold-2 {
background: #fff1b8;
}
.main-color .palatte-gold-3 {
background: #ffe58f;
}
.main-color .palatte-gold-4 {
background: #ffd666;
}
.main-color .palatte-gold-5 {
background: #ffc53d;
}
.main-color .palatte-gold-6 {
background: #faad14;
}
.main-color .palatte-gold-7 {
background: #d48806;
}
.main-color .palatte-gold-8 {
background: #ad6800;
}
.main-color .palatte-gold-9 {
background: #874d00;
}
.main-color .palatte-gold-10 {
background: #613400;
}
.main-color .palatte-yellow-1 {
background: #feffe6;
}
.main-color .palatte-yellow-2 {
background: #ffffb8;
}
.main-color .palatte-yellow-3 {
background: #fffb8f;
}
.main-color .palatte-yellow-4 {
background: #fff566;
}
.main-color .palatte-yellow-5 {
background: #ffec3d;
}
.main-color .palatte-yellow-6 {
background: #fadb14;
}
.main-color .palatte-yellow-7 {
background: #d4b106;
}
.main-color .palatte-yellow-8 {
background: #ad8b00;
}
.main-color .palatte-yellow-9 {
background: #876800;
}
.main-color .palatte-yellow-10 {
background: #614700;
}
.main-color .palatte-lime-1 {
background: #fcffe6;
}
.main-color .palatte-lime-2 {
background: #f4ffb8;
}
.main-color .palatte-lime-3 {
background: #eaff8f;
}
.main-color .palatte-lime-4 {
background: #d3f261;
}
.main-color .palatte-lime-5 {
background: #bae637;
}
.main-color .palatte-lime-6 {
background: #a0d911;
}
.main-color .palatte-lime-7 {
background: #7cb305;
}
.main-color .palatte-lime-8 {
background: #5b8c00;
}
.main-color .palatte-lime-9 {
background: #3f6600;
}
.main-color .palatte-lime-10 {
background: #254000;
}
.main-color .palatte-geekblue-1 {
background: #f0f5ff;
}
.main-color .palatte-geekblue-2 {
background: #d6e4ff;
}
.main-color .palatte-geekblue-3 {
background: #adc6ff;
}
.main-color .palatte-geekblue-4 {
background: #85a5ff;
}
.main-color .palatte-geekblue-5 {
background: #597ef7;
}
.main-color .palatte-geekblue-6 {
background: #2f54eb;
}
.main-color .palatte-geekblue-7 {
background: #1d39c4;
}
.main-color .palatte-geekblue-8 {
background: #10239e;
}
.main-color .palatte-geekblue-9 {
background: #061178;
}
.main-color .palatte-geekblue-10 {
background: #030852;
}
.main-color .palatte-grey-1 {
background: #fff;
}
.main-color .palatte-grey-2 {
background: #fafafa;
}
.main-color .palatte-grey-3 {
background: #f5f5f5;
}
.main-color .palatte-grey-4 {
background: #e8e8e8;
}
.main-color .palatte-grey-5 {
background: #d9d9d9;
}
.main-color .palatte-grey-6 {
background: #bfbfbf;
}
.main-color .palatte-grey-7 {
background: #8c8c8c;
}
.main-color .palatte-grey-8 {
background: #595959;
}
.main-color .palatte-grey-9 {
background: #262626;
}
.main-color .palatte-grey-10 {
background: #000;
}
ul.c7nicons-list {
margin: 40px 0;
overflow: hidden;
list-style: none;
}
ul.c7nicons-list li {
position: relative;
float: left;
width: 16.66%;
height: 100px;
margin: 3px 0;
padding: 10px 0 0;
overflow: hidden;
color: #555;
text-align: center;
list-style: none;
background-color: #fff;
border-radius: 4px;
cursor: pointer;
-webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
ul.c7nicons-list li .icon {
margin: 12px 0 16px;
font-size: 24px;
-webkit-transition: -webkit-transform 0.3s ease-in-out;
transition: -webkit-transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
will-change: transform;
}
ul.c7nicons-list li .c7nicon-class {
display: block;
font-family: 'Lucida Console', Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
white-space: nowrap;
text-align: center;
-webkit-transform: scale(0.83);
-ms-transform: scale(0.83);
transform: scale(0.83);
}
ul.c7nicons-list li .c7nicon-class .c7n-badge {
-webkit-transition: color 0.3s ease-in-out;
transition: color 0.3s ease-in-out;
}
ul.c7nicons-list li:hover {
color: #fff;
background-color: #3f51b5;
}
ul.c7nicons-list li:hover .icon {
-webkit-transform: scale(1.4);
-ms-transform: scale(1.4);
transform: scale(1.4);
}
ul.c7nicons-list li.copied:hover {
color: rgba(255, 255, 255, 0.2);
}
ul.c7nicons-list li::after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
color: #fff;
line-height: 110px;
text-align: center;
opacity: 0;
-webkit-transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
content: 'Copied!';
}
ul.c7nicons-list li.copied::after {
top: -10px;
opacity: 1;
}
/* Browser mockup code
* Contribute: https://gist.github.com/jarthod/8719db9fef8deb937f4f
* Live example: https://updown.io
*/
.browser-mockup {
position: relative;
border-top: 2em solid rgba(230, 230, 230, 0.7);
border-radius: 3px 3px 0 0;
-webkit-box-shadow: 0 0.1em 0.5em 0 rgba(0, 0, 0, 0.28);
box-shadow: 0 0.1em 0.5em 0 rgba(0, 0, 0, 0.28);
}
.browser-mockup::before {
position: absolute;
top: -1.25em;
left: 1em;
display: block;
width: 0.5em;
height: 0.5em;
background-color: #f44;
border-radius: 50%;
-webkit-box-shadow: 0 0 0 2px #f44, 1.5em 0 0 2px #9b3, 3em 0 0 2px #fb5;
box-shadow: 0 0 0 2px #f44, 1.5em 0 0 2px #9b3, 3em 0 0 2px #fb5;
content: '';
}
.browser-mockup.with-tab::after {
position: absolute;
top: -2em;
left: 5.5em;
display: block;
width: 20%;
height: 0;
border-right: 0.8em solid transparent;
border-bottom: 2em solid white;
border-left: 0.8em solid transparent;
content: '';
}
.browser-mockup.with-url::after {
position: absolute;
top: -1.6em;
left: 5.5em;
display: block;
width: calc(100% - 6em);
height: 1.2em;
background-color: white;
border-radius: 2px;
content: '';
}
.browser-mockup > * {
display: block;
}
.new-version-info-modal img {
position: absolute;
top: 36px;
left: 34px;
width: 100px;
}
.new-version-info-modal p {
margin-top: 1em;
}
.new-version-info-modal .icon {
display: none;
}
.new-version-info-modal .c7n-confirm-body {
margin-left: 120px;
}
.new-version-info-modal .c7n-confirm-body .c7n-confirm-title {
font-size: 18px;
}
.new-version-info-modal .c7n-confirm-body .c7n-confirm-content {
margin-left: 0;
}
.motion-container {
height: 190px;
margin: 40px 0 20px;
line-height: 190px;
text-align: center;
}
.motion-example {
display: inline-block !important;
width: 180px;
height: 180px;
color: #fff;
font-weight: bold;
font-size: 18px;
line-height: 180px;
text-align: center;
border-radius: 8px;
-webkit-animation-duration: 0.5s !important;
animation-duration: 0.5s !important;
}
.motion-select-wrapper {
margin-bottom: 40px;
text-align: center;
}
.motion-select {
width: 180px;
text-align: left;
}
.video-player {
position: relative;
max-width: 800px;
}
.video-player-right {
float: right;
width: 616px;
}
/* Make clicks pass-through */
#nprogress {
pointer-events: none;
}
#nprogress .bar {
position: fixed;
top: 0;
left: 0;
z-index: 1031;
width: 100%;
height: 2px;
background: #3f51b5;
border-radius: 10px;
}
/* Fancy blur effect */
#nprogress .peg {
position: absolute;
right: 0;
display: block;
width: 100px;
height: 100%;
-webkit-box-shadow: 0 0 10px #3f51b5, 0 0 5px #3f51b5;
box-shadow: 0 0 10px #3f51b5, 0 0 5px #3f51b5;
-webkit-transform: rotate(3deg) translate(0, -4px);
-ms-transform: rotate(3deg) translate(0, -4px);
transform: rotate(3deg) translate(0, -4px);
opacity: 1;
}
/* Remove these to get rid of the spinner */
#nprogress .spinner {
position: fixed;
top: 15px;
right: 15px;
z-index: 1031;
display: block;
}
#nprogress .spinner-icon {
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 18px;
height: 18px;
border: solid 2px transparent;
border-top-color: #3f51b5;
border-left-color: #3f51b5;
border-radius: 50%;
-webkit-animation: nprogress-spinner 400ms linear infinite;
animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
position: relative;
overflow: hidden;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
position: absolute;
}
@-webkit-keyframes nprogress-spinner {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes nprogress-spinner {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.nav-phone-icon {
position: absolute;
top: 25px;
right: 30px;
z-index: 1;
display: none;
width: 16px;
height: 22px;
cursor: pointer;
}
@media only screen and (max-width: 1200px) {
#search-box {
display: none;
}
#logo {
padding: 0 40px;
}
.banner-wrapper .banner-title-wrapper h1 {
font-size: 36px;
}
.banner-wrapper .banner-title-wrapper p {
font-size: 16px;
}
}
@media only screen and (max-width: 767.99px) {
#header {
text-align: center;
}
#header #logo {
float: initial;
}
#search-box {
display: none;
}
.code-boxes-col-2-1,
.code-boxes-col-1-1 {
float: none;
width: 100%;
}
.preview-image-boxes {
float: none;
width: 100%;
margin: 0 !important;
}
.preview-image-box {
margin: 10px 0;
padding-left: 0;
}
.image-wrapper {
display: none;
}
div.version {
display: block;
margin: 29px auto 16px;
}
.popover-menu {
width: 300px;
}
.popover-menu div.version {
margin: 16px auto;
}
.popover-menu .c7n-popover-inner {
overflow: hidden;
}
.popover-menu .c7n-popover-inner-content {
padding: 0;
}
.popover-menu .c7n-popover-inner-content .c7n-select {
display: block;
width: 60%;
}
.popover-menu .c7n-popover-inner-content .c7n-btn {
margin: 16px 8% 0 8px;
}
.popover-menu #nav a.header-link {
color: #333;
}
ul#nav,
ul#nav li {
width: 100%;
font-size: 14px;
}
ul#nav li {
height: 40px;
padding: 0 !important;
line-height: 40px;
border: 0;
}
ul#nav li a {
color: #333;
}
.toc {
display: none;
}
.nav-phone-icon {
display: block;
}
.nav-phone-icon::before {
position: absolute;
display: block;
width: 16px;
height: 2px;
background: #777;
border-radius: 2px;
-webkit-box-shadow: 0 6px 0 0 #777, 0 12px 0 0 #777;
box-shadow: 0 6px 0 0 #777, 0 12px 0 0 #777;
content: '';
}
.main {
height: calc(100% - 86px);
}
.aside-container {
float: none;
width: auto;
padding-bottom: 30px;
border-right: 0;
}
.main-container {
margin-right: 0;
padding-right: 16px;
padding-left: 16px;
}
.main-container > .markdown > * {
width: 100% !important;
}
.main-wrapper {
width: 100%;
margin: 0;
border-radius: 0;
}
#footer {
text-align: center;
}
#footer .footer-wrap {
padding: 40px;
}
#footer .footer-wrap .c7n-row {
padding: 0;
}
#footer .footer-wrap .c7n-row > div:nth-child(2),
#footer .footer-wrap .c7n-row > div:nth-child(4) {
display: none;
}
#footer .footer-wrap .c7n-row > div a {
font-weight: 300;
}
#footer .footer-center {
text-align: center;
}
#footer h2 {
margin-top: 16px;
}
#footer .bottom-bar {
padding: 16px;
text-align: center;
}
#footer .bottom-bar .translate-button {
width: auto;
margin-bottom: 16px;
text-align: center;
}
#footer .bottom-bar > div > span {
display: block;
}
#footer .bottom-bar > div > span:nth-child(1),
#footer .bottom-bar > div > span:nth-child(2) {
display: none;
}
.prev-next-nav {
width: calc(100% - 32px);
margin-left: 16px;
}
.drawer .c7n-menu-inline .c7n-menu-item::after,
.drawer .c7n-menu-vertical .c7n-menu-item::after {
right: auto;
left: 0;
}
#_hj_feedback_container {
display: none;
}
/** home 区块 **/
.home-page-wrapper .page h2 {
margin: 80px auto 64px;
}
.home-page-wrapper .parallax-bg {
display: none;
}
.banner {
display: block;
height: 632px;
}
.banner-bg-wrapper {
display: none;
}
.banner .img-wrapper,
.banner .text-wrapper {
display: inline-block;
width: 100%;
min-width: unset;
max-width: unset;
height: 50%;
margin: auto;
text-align: center;
}
.banner .img-wrapper {
position: initial;
margin-top: 48px;
}
.banner .img-wrapper svg {
width: 100%;
height: auto;
}
.banner .text-wrapper {
min-height: 200px;
margin-top: 48px;
padding: 0 16px;
}
.banner .text-wrapper h1 {
display: none;
}
.banner .text-wrapper p {
color: #333;
font-size: 14px;
line-height: 28px;
}
.page1 {
min-height: 1538px;
}
.page1 .c7n-row {
margin: 24px auto 64px;
}
.page1 .c7n-row > div {
margin-bottom: 48px;
}
}
JavaScript
1
https://gitee.com/choerodon-ui/c7n-performance-table.git
git@gitee.com:choerodon-ui/c7n-performance-table.git
choerodon-ui
c7n-performance-table
c7n-performance-table
master

搜索帮助