ant-design/site/theme/static/demo.less

264 lines
4.7 KiB
Plaintext
Raw Normal View History

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 {
2017-11-28 16:15:22 +08:00
border: 1px solid @site-border-color-split;
border-radius: @border-radius-sm;
2016-02-29 14:08:40 +08:00
display: inline-block;
width: 100%;
position: relative;
2017-02-26 15:41:50 +08:00
margin: 0 0 16px;
2018-12-07 16:17:45 +08:00
transition: all 0.2s;
2016-02-29 14:08:40 +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 {
cursor: pointer;
2018-09-03 12:19:34 +08:00
font-size: 18px;
color: #3b4357;
margin-left: 8px;
2018-12-07 16:17:45 +08:00
opacity: 0.8;
transition: all 0.3s;
2017-03-13 15:01:53 +08:00
position: relative;
}
&-title {
position: absolute;
top: -14px;
padding: 1px 8px;
margin-left: -8px;
color: #777;
2017-11-28 16:15:22 +08:00
border-radius: @border-radius-sm @border-radius-sm 0 0;
2017-03-13 15:01:53 +08:00
background: #fff;
2018-12-07 16:17:45 +08:00
transition: background-color 0.4s;
2017-03-13 15:01:53 +08:00
a,
a:hover {
2017-11-28 16:15:22 +08:00
color: @site-text-color;
font-size: @font-size-base;
2017-03-13 15:01:53 +08:00
font-weight: 500;
}
2016-08-20 20:36:56 +08:00
}
a.edit-button {
position: absolute;
right: -16px;
top: 7px;
font-size: 12px;
transform: scale(0.9);
background: #fff;
padding-right: 6px;
2017-05-28 15:35:49 +08:00
text-decoration: none;
}
2016-02-29 14:08:40 +08:00
2017-03-13 15:01:53 +08:00
&-demo {
2017-11-28 16:15:22 +08:00
border-bottom: 1px solid @site-border-color-split;
padding: 42px 24px 50px;
2018-12-07 16:17:45 +08:00
color: rgba(0, 0, 0, 0.65);
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;
2017-11-28 16:15:22 +08:00
padding: 18px 32px;
border-radius: 0 0 @border-radius-sm @border-radius-sm;
2018-12-07 16:17:45 +08:00
transition: background-color 0.4s;
2017-03-13 15:01:53 +08:00
width: 100%;
2017-11-28 16:15:22 +08:00
font-size: @font-size-base;
2017-03-13 15:01:53 +08:00
}
blockquote {
margin: 0;
}
h4,
section& p {
2017-11-28 16:15:22 +08:00
margin: 0;
2017-03-13 15:01:53 +08:00
width: 98%;
}
> p {
font-size: 12px;
margin: 0.5em 0;
padding-right: 25px;
width: 100%;
word-break: break-word;
}
}
2016-03-28 19:12:51 +08:00
2017-03-13 15:01:53 +08:00
&.expand &-meta {
border-radius: 0;
2017-11-28 16:15:22 +08:00
border-bottom: 1px dashed @site-border-color-split;
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 {
2017-03-13 15:01:53 +08:00
position: absolute;
right: 16px;
bottom: 23px;
2017-03-13 15:01:53 +08:00
cursor: pointer;
width: 16px;
height: 16px;
line-height: 16px;
text-align: center;
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 {
transition: all 0.4s;
user-select: none;
position: absolute;
left: 0;
top: 0;
2017-11-28 16:15:22 +08:00
margin: 0;
max-width: 100%;
2018-06-10 23:03:07 +08:00
width: 100%;
2017-11-28 16:15:22 +08:00
vertical-align: baseline;
box-shadow: none;
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-03-13 15:01:53 +08:00
.highlight-wrapper {
display: none;
overflow: auto;
2017-11-28 16:15:22 +08:00
border-radius: 0 0 @border-radius-sm @border-radius-sm;
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;
pre {
margin: 0;
padding: 0;
background: #fff;
}
&: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 {
2017-03-13 15:01:53 +08:00
position: absolute;
top: 10px;
right: 12px;
2017-07-10 22:17:52 +08:00
text-align: right;
> i,
> form {
display: inline-block;
margin-left: 8px;
}
}
&-code-copy {
2017-03-13 15:01:53 +08:00
font-size: 14px;
cursor: pointer;
2017-11-28 16:15:22 +08:00
color: @site-text-color-secondary;
2018-12-07 16:17:45 +08:00
transition: all 0.24s;
2016-06-02 21:52:48 +08:00
background: #fff;
2017-03-13 15:01:53 +08:00
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
border-radius: 20px;
2017-03-13 15:04:21 +08:00
opacity: 0;
2017-03-13 15:01:53 +08:00
&:hover {
2017-11-28 16:15:22 +08:00
color: @site-text-color-secondary;
2017-03-13 15:01:53 +08:00
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-02-29 14:08:40 +08:00
&-codepen {
2018-12-07 16:17:45 +08:00
background: transparent
url('https://gw.alipayobjects.com/zos/rmsportal/OtZslpOjYXijshDERXwc.svg') center / 14px
no-repeat;
width: 20px;
height: 20px;
cursor: pointer;
opacity: 0;
2018-12-07 16:17:45 +08:00
transition: all 0.3s;
border: 0;
text-indent: -9999px;
overflow: hidden;
}
2017-07-10 22:17:52 +08:00
&-riddle {
2018-12-07 16:17:45 +08:00
background: transparent
url('https://gw.alipayobjects.com/zos/rmsportal/DlHbxMCyeuyOrqOdbgik.svg') center / 14px
no-repeat;
2017-07-10 22:17:52 +08:00
width: 20px;
height: 20px;
cursor: pointer;
opacity: 0;
2018-12-07 16:17:45 +08:00
transition: all 0.3s;
2017-07-10 22:17:52 +08:00
border: 0;
text-indent: -9999px;
overflow: hidden;
2017-03-13 15:04:21 +08:00
}
2017-12-29 17:02:45 +08:00
&-codesandbox {
2018-12-07 16:17:45 +08:00
background: transparent
url('https://gw.alipayobjects.com/zos/rmsportal/aaYmtdDyHSCkXyLZVgGK.svg') center / 14px
no-repeat;
2017-12-29 17:02:45 +08:00
width: 20px;
height: 20px;
cursor: pointer;
opacity: 0;
2018-12-07 16:17:45 +08:00
transition: all 0.3s;
2017-12-29 17:02:45 +08:00
border: 0;
text-indent: -9999px;
overflow: hidden;
}
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-03-13 15:01:53 +08:00
pre {
margin: 0;
width: auto;
code {
border: none;
background: #fff;
}
2017-02-26 15:09:52 +08:00
}
}