2016-03-15 17:40:31 +08:00
|
|
|
.code-boxes-col-1-1 {
|
2016-04-18 13:43:33 +08:00
|
|
|
width: 100%;
|
2016-03-07 14:31:47 +08:00
|
|
|
}
|
2016-03-15 17:40:31 +08:00
|
|
|
|
|
|
|
.code-boxes-col-2-1 {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2016-03-07 14:31:47 +08:00
|
|
|
}
|
|
|
|
|
2016-02-29 14:08:40 +08:00
|
|
|
.code-box {
|
2019-02-15 10:48:07 +08:00
|
|
|
position: relative;
|
2016-02-29 14:08:40 +08:00
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
2017-02-26 15:41:50 +08:00
|
|
|
margin: 0 0 16px;
|
2019-02-15 10:48:07 +08:00
|
|
|
border: 1px solid @site-border-color-split;
|
2019-11-15 10:01:35 +08:00
|
|
|
border-radius: @border-radius-base;
|
2018-12-07 16:17:45 +08:00
|
|
|
transition: all 0.2s;
|
2019-12-23 12:15:22 +08:00
|
|
|
.code-box-title {
|
|
|
|
&,
|
|
|
|
a {
|
2019-12-25 11:02:45 +08:00
|
|
|
color: @site-text-color;
|
2019-12-26 15:55:10 +08:00
|
|
|
background: @component-background;
|
2019-12-18 21:31:23 +08:00
|
|
|
}
|
2019-12-23 12:15:22 +08:00
|
|
|
}
|
|
|
|
&,
|
|
|
|
.code-box-demo {
|
|
|
|
background-color: @component-background;
|
|
|
|
}
|
|
|
|
.markdown {
|
2019-12-27 15:41:39 +08:00
|
|
|
pre {
|
|
|
|
margin: 0.5em 0;
|
2019-12-27 15:59:09 +08:00
|
|
|
padding: 6px 12px;
|
2019-12-27 15:41:39 +08:00
|
|
|
}
|
|
|
|
pre code {
|
|
|
|
margin: 0;
|
2019-12-27 15:59:09 +08:00
|
|
|
background: #f5f5f5;
|
2019-12-18 21:31:23 +08:00
|
|
|
}
|
|
|
|
}
|
2017-03-13 15:01:53 +08:00
|
|
|
&:target {
|
|
|
|
border: 1px solid @primary-color;
|
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&-expand-trigger {
|
2019-02-15 10:48:07 +08:00
|
|
|
position: relative;
|
2019-12-02 15:21:56 +08:00
|
|
|
margin-left: 12px;
|
2019-02-15 10:48:07 +08:00
|
|
|
color: #3b4357;
|
2019-12-02 15:21:56 +08:00
|
|
|
font-size: 20px;
|
2019-02-15 10:48:07 +08:00
|
|
|
cursor: pointer;
|
2019-12-02 15:21:56 +08:00
|
|
|
opacity: 0.75;
|
2018-12-07 16:17:45 +08:00
|
|
|
transition: all 0.3s;
|
2020-01-02 19:10:16 +08:00
|
|
|
|
2019-12-02 15:21:56 +08:00
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2020-01-02 19:10:16 +08:00
|
|
|
|
|
|
|
.ant-row-rtl & {
|
|
|
|
margin-right: 8px;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2017-03-13 15:01:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-title {
|
|
|
|
position: absolute;
|
|
|
|
top: -14px;
|
2019-03-21 09:48:50 +08:00
|
|
|
margin-left: 16px;
|
2019-02-15 10:48:07 +08:00
|
|
|
padding: 1px 8px;
|
2017-03-13 15:01:53 +08:00
|
|
|
color: #777;
|
2019-12-23 16:02:09 +08:00
|
|
|
background: @body-background;
|
2019-11-15 10:01:35 +08:00
|
|
|
border-radius: @border-radius-base @border-radius-base 0 0;
|
2018-12-07 16:17:45 +08:00
|
|
|
transition: background-color 0.4s;
|
2017-03-13 15:01:53 +08:00
|
|
|
|
2020-01-02 19:10:16 +08:00
|
|
|
.ant-row-rtl & {
|
|
|
|
margin-right: 16px;
|
|
|
|
margin-left: 0;
|
|
|
|
border-radius: @border-radius-base 0 0 @border-radius-base;
|
|
|
|
}
|
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
a,
|
|
|
|
a:hover {
|
2017-11-28 16:15:22 +08:00
|
|
|
color: @site-text-color;
|
2017-03-13 15:01:53 +08:00
|
|
|
font-weight: 500;
|
2019-02-15 10:48:07 +08:00
|
|
|
font-size: @font-size-base;
|
2017-03-13 15:01:53 +08:00
|
|
|
}
|
2016-08-20 20:36:56 +08:00
|
|
|
}
|
|
|
|
|
2019-03-21 09:48:50 +08:00
|
|
|
&-description {
|
|
|
|
padding: 18px 24px 12px;
|
|
|
|
}
|
|
|
|
|
2016-08-20 20:36:56 +08:00
|
|
|
a.edit-button {
|
|
|
|
position: absolute;
|
|
|
|
top: 7px;
|
2019-02-15 10:48:07 +08:00
|
|
|
right: -16px;
|
2016-08-20 20:36:56 +08:00
|
|
|
padding-right: 6px;
|
2019-02-15 10:48:07 +08:00
|
|
|
font-size: 12px;
|
2017-05-28 15:35:49 +08:00
|
|
|
text-decoration: none;
|
2019-12-23 15:17:54 +08:00
|
|
|
background: inherit;
|
2019-02-15 10:48:07 +08:00
|
|
|
transform: scale(0.9);
|
2020-01-02 19:10:16 +08:00
|
|
|
|
2020-08-10 16:23:49 +08:00
|
|
|
.anticon {
|
2020-08-10 16:34:11 +08:00
|
|
|
color: @site-text-color-secondary;
|
|
|
|
transition: all 0.3s;
|
2020-08-10 16:23:49 +08:00
|
|
|
&:hover {
|
2020-08-10 16:34:11 +08:00
|
|
|
color: @site-text-color;
|
2020-08-10 16:23:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-27 21:40:52 +08:00
|
|
|
.ant-row.ant-row-rtl & {
|
2020-01-02 19:10:16 +08:00
|
|
|
right: auto;
|
2020-04-27 21:40:52 +08:00
|
|
|
left: -22px;
|
|
|
|
margin-right: 0;
|
|
|
|
padding-right: 8px;
|
2020-01-02 19:10:16 +08:00
|
|
|
padding-left: 6px;
|
|
|
|
}
|
2016-08-17 12:06:38 +08:00
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&-demo {
|
2017-11-06 21:28:51 +08:00
|
|
|
padding: 42px 24px 50px;
|
2019-12-23 20:07:56 +08:00
|
|
|
color: @site-text-color;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-bottom: 1px solid @site-border-color-split;
|
2017-03-13 15:01:53 +08:00
|
|
|
}
|
2016-03-23 22:36:26 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
iframe {
|
|
|
|
width: 100%;
|
|
|
|
border: 0;
|
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&-meta {
|
|
|
|
&.markdown {
|
|
|
|
position: relative;
|
2019-02-15 10:48:07 +08:00
|
|
|
width: 100%;
|
|
|
|
font-size: @font-size-base;
|
2019-11-15 10:01:35 +08:00
|
|
|
border-radius: 0 0 @border-radius-base @border-radius-base;
|
2018-12-07 16:17:45 +08:00
|
|
|
transition: background-color 0.4s;
|
2017-03-13 15:01:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
2020-08-17 19:32:03 +08:00
|
|
|
line-height: 1.5;
|
2017-03-13 15:01:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
h4,
|
|
|
|
section& p {
|
2019-02-15 10:48:07 +08:00
|
|
|
margin: 0;
|
2017-03-13 15:01:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
> p {
|
2019-02-15 10:48:07 +08:00
|
|
|
width: 100%;
|
2017-03-13 15:01:53 +08:00
|
|
|
margin: 0.5em 0;
|
|
|
|
padding-right: 25px;
|
2019-02-15 10:48:07 +08:00
|
|
|
font-size: 12px;
|
2017-03-13 15:01:53 +08:00
|
|
|
word-break: break-word;
|
2020-01-02 19:10:16 +08:00
|
|
|
|
|
|
|
.ant-row-rtl & {
|
|
|
|
padding-right: 0;
|
|
|
|
padding-left: 25px;
|
|
|
|
}
|
2017-03-13 15:01:53 +08:00
|
|
|
}
|
|
|
|
}
|
2016-03-28 19:12:51 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&.expand &-meta {
|
2017-11-28 16:15:22 +08:00
|
|
|
border-bottom: 1px dashed @site-border-color-split;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-radius: 0;
|
2017-03-13 15:01:53 +08:00
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-08-15 21:00:31 +08:00
|
|
|
.code-expand-icon {
|
2019-02-15 10:48:07 +08:00
|
|
|
cursor: pointer;
|
2017-08-15 21:00:31 +08:00
|
|
|
}
|
2016-03-25 17:07:00 +08:00
|
|
|
|
2017-08-15 21:00:31 +08:00
|
|
|
.code-expand-icon-show,
|
|
|
|
.code-expand-icon-hide {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
left: 0;
|
2018-06-10 23:03:07 +08:00
|
|
|
width: 100%;
|
2019-02-15 10:48:07 +08:00
|
|
|
max-width: 100%;
|
|
|
|
margin: 0;
|
2017-11-28 16:15:22 +08:00
|
|
|
box-shadow: none;
|
2019-02-15 10:48:07 +08:00
|
|
|
transition: all 0.4s;
|
|
|
|
user-select: none;
|
2020-01-02 19:10:16 +08:00
|
|
|
|
|
|
|
.ant-row-rtl & {
|
|
|
|
right: 0;
|
|
|
|
left: auto;
|
|
|
|
}
|
2017-03-13 15:01:53 +08:00
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-08-15 21:00:31 +08:00
|
|
|
.code-expand-icon-show {
|
|
|
|
opacity: 0.55;
|
|
|
|
pointer-events: auto;
|
2017-08-16 10:49:54 +08:00
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.code-expand-icon.ant-tooltip-open .code-expand-icon-show {
|
|
|
|
opacity: 1;
|
2017-08-15 21:00:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.code-expand-icon-hide {
|
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
2017-08-15 17:17:59 +08:00
|
|
|
}
|
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
.highlight-wrapper {
|
|
|
|
display: none;
|
|
|
|
overflow: auto;
|
2019-11-15 10:01:35 +08:00
|
|
|
border-radius: 0 0 @border-radius-base @border-radius-base;
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&-expand {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
.highlight {
|
|
|
|
position: relative;
|
2019-06-23 12:49:28 +08:00
|
|
|
|
2020-06-03 10:51:31 +08:00
|
|
|
.ant-tabs-nav-list {
|
|
|
|
margin: 0 auto;
|
2019-06-23 12:49:28 +08:00
|
|
|
}
|
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
pre {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2019-12-23 16:36:40 +08:00
|
|
|
background: @component-background;
|
2017-03-13 15:01:53 +08:00
|
|
|
}
|
|
|
|
&:not(:first-child) {
|
2018-12-07 16:17:45 +08:00
|
|
|
border-top: 1px dashed @site-border-color-split;
|
2017-03-13 15:01:53 +08:00
|
|
|
}
|
|
|
|
}
|
2016-03-25 17:07:00 +08:00
|
|
|
|
2017-07-10 22:17:52 +08:00
|
|
|
&-actions {
|
2020-06-28 22:41:59 +08:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 12px 0;
|
2019-03-21 09:48:50 +08:00
|
|
|
border-top: 1px dashed @site-border-color-split;
|
2019-05-07 14:57:32 +08:00
|
|
|
opacity: 0.7;
|
|
|
|
transition: opacity 0.3s;
|
2019-03-21 09:48:50 +08:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2020-06-28 22:41:59 +08:00
|
|
|
}
|
2019-03-21 09:48:50 +08:00
|
|
|
|
2020-06-28 22:41:59 +08:00
|
|
|
&-actions > &-code-action {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-left: 16px;
|
|
|
|
color: @site-text-color-secondary;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: all 0.24s;
|
2019-03-21 09:48:50 +08:00
|
|
|
|
2020-06-28 22:41:59 +08:00
|
|
|
.ant-row-rtl & {
|
|
|
|
margin-right: 16px;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2020-01-02 19:10:16 +08:00
|
|
|
|
2020-06-28 22:41:59 +08:00
|
|
|
&:first-child {
|
|
|
|
margin-left: 0;
|
2020-01-02 19:10:16 +08:00
|
|
|
|
2020-06-28 22:41:59 +08:00
|
|
|
.ant-row-rtl & {
|
|
|
|
margin-right: 0;
|
2019-03-21 09:48:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-23 16:36:40 +08:00
|
|
|
&:hover {
|
2020-08-10 16:34:11 +08:00
|
|
|
color: @site-text-color;
|
2019-12-23 16:36:40 +08:00
|
|
|
}
|
2019-11-13 17:29:46 +08:00
|
|
|
}
|
|
|
|
|
2017-07-10 22:17:52 +08:00
|
|
|
&-code-copy {
|
2020-06-28 22:41:59 +08:00
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2019-02-15 10:48:07 +08:00
|
|
|
font-size: 14px;
|
2017-03-13 15:01:53 +08:00
|
|
|
text-align: center;
|
2019-12-23 16:36:40 +08:00
|
|
|
background: @component-background;
|
2019-02-15 10:48:07 +08:00
|
|
|
cursor: pointer;
|
2020-06-28 22:41:59 +08:00
|
|
|
transition: transform 0.24s;
|
2017-03-13 15:04:21 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&:hover {
|
|
|
|
transform: scale(1.2);
|
|
|
|
}
|
|
|
|
&.anticon-check {
|
2017-08-04 17:58:32 +08:00
|
|
|
color: @green-6 !important;
|
2017-03-13 15:01:53 +08:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2016-05-27 11:48:08 +08:00
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-07-07 16:09:02 +08:00
|
|
|
&-codepen {
|
2020-06-28 22:41:59 +08:00
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2019-02-15 10:48:07 +08:00
|
|
|
overflow: hidden;
|
2019-12-26 15:59:50 +08:00
|
|
|
border: 0;
|
|
|
|
cursor: pointer;
|
2017-07-07 16:09:02 +08:00
|
|
|
}
|
|
|
|
|
2017-07-10 22:17:52 +08:00
|
|
|
&-riddle {
|
2020-06-28 22:41:59 +08:00
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2019-02-15 10:48:07 +08:00
|
|
|
overflow: hidden;
|
|
|
|
border: 0;
|
2017-07-10 22:17:52 +08:00
|
|
|
cursor: pointer;
|
2017-03-13 15:04:21 +08:00
|
|
|
}
|
|
|
|
|
2017-12-29 17:02:45 +08:00
|
|
|
&-codesandbox {
|
2020-06-28 22:41:59 +08:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2019-02-15 10:48:07 +08:00
|
|
|
overflow: hidden;
|
|
|
|
border: 0;
|
2017-12-29 17:02:45 +08:00
|
|
|
cursor: pointer;
|
2019-12-26 15:59:50 +08:00
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2017-12-29 17:02:45 +08:00
|
|
|
}
|
|
|
|
|
2017-07-10 22:17:52 +08:00
|
|
|
.highlight-wrapper:hover &-code-copy,
|
|
|
|
.highlight-wrapper:hover &-codepen,
|
2017-12-29 17:02:45 +08:00
|
|
|
.highlight-wrapper:hover &-codesandbox,
|
2017-07-10 22:17:52 +08:00
|
|
|
.highlight-wrapper:hover &-riddle {
|
2017-11-28 16:15:22 +08:00
|
|
|
opacity: 1;
|
2017-07-07 16:09:02 +08:00
|
|
|
}
|
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
pre {
|
|
|
|
width: auto;
|
2019-02-15 10:48:07 +08:00
|
|
|
margin: 0;
|
2017-03-13 15:01:53 +08:00
|
|
|
code {
|
2019-12-23 15:17:54 +08:00
|
|
|
background: @component-background;
|
2019-02-15 10:48:07 +08:00
|
|
|
border: none;
|
2017-03-13 15:01:53 +08:00
|
|
|
}
|
2017-02-26 15:09:52 +08:00
|
|
|
}
|
2019-03-21 09:48:50 +08:00
|
|
|
|
|
|
|
&-debug {
|
|
|
|
border-color: @purple-3;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-debug &-title a {
|
|
|
|
color: @purple-6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-02 19:10:16 +08:00
|
|
|
.all-code-box-controls {
|
|
|
|
float: right;
|
|
|
|
|
|
|
|
.ant-row-rtl & {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.ant-row-rtl {
|
|
|
|
#components-tooltip-demo-placement,
|
|
|
|
#components-popover-demo-placement,
|
|
|
|
#components-popconfirm-demo-placement {
|
|
|
|
.code-box-demo {
|
|
|
|
direction: ltr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|