mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00

git-subtree-dir: submodules/AsyncDisplayKit git-subtree-mainline: d06f423e0ed3df1fed9bd10d79ee312a9179b632 git-subtree-split: 02bedc12816e251ad71777f9d2578329b6d2bef6
90 lines
1.3 KiB
SCSS
Executable File
90 lines
1.3 KiB
SCSS
Executable File
.section-specification {
|
|
table {
|
|
width: auto;
|
|
|
|
th {
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
|
|
.method-title {
|
|
margin-left: -15px;
|
|
margin-bottom: 8px;
|
|
transition: margin-left .3s ease-out;
|
|
|
|
.section-method.hide & {
|
|
margin-left: 0;
|
|
}
|
|
|
|
code {
|
|
font-weight: 400;
|
|
font-size: .85em;
|
|
}
|
|
}
|
|
|
|
.method-info {
|
|
background: $object-background;
|
|
border-bottom: 1px solid $object-border;
|
|
margin: 0 -25px;
|
|
padding: 20px 25px 0 25px;
|
|
transition: height .3s ease-out;
|
|
|
|
position: relative;
|
|
|
|
.pointy-thing {
|
|
background: $content-background;
|
|
height: 10px;
|
|
border-bottom: 1px solid $object-border;
|
|
margin: -20px -25px 16px -25px;
|
|
|
|
&:before {
|
|
display: inline-block;
|
|
content: "";
|
|
|
|
background: $object-background;
|
|
border: 1px solid $object-border;
|
|
border-bottom: 0;
|
|
border-right: 0;
|
|
|
|
position: absolute;
|
|
left: 21px;
|
|
top: 3px;
|
|
width: 12px;
|
|
height: 12px;
|
|
transform: rotate(45deg);
|
|
}
|
|
}
|
|
|
|
.method-subsection {
|
|
margin-bottom: 15px;
|
|
|
|
.argument-name {
|
|
width: 1px;
|
|
text-align: right;
|
|
|
|
code {
|
|
color: #808080;
|
|
font-style: italic;
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.section-method {
|
|
&.hide .method-info {
|
|
height: 0 !important;
|
|
overflow: hidden;
|
|
display: none;
|
|
}
|
|
|
|
&.hide.animating .method-info {
|
|
display: block;
|
|
}
|
|
|
|
&.animating .method-info {
|
|
overflow: hidden;
|
|
}
|
|
}
|