mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
e5cbe69187
Bug: T283943 Change-Id: I23ae2350dfb9100ed6604fc93628c616c41ab2e1
28 lines
564 B
CSS
28 lines
564 B
CSS
.ve-ui-expandableContent-collapsible {
|
|
overflow: hidden;
|
|
position: relative;
|
|
margin: 0.4em 0 0.5em 0;
|
|
transition: height 200ms;
|
|
}
|
|
|
|
.ve-ui-expandableContent-container {
|
|
display: flex;
|
|
align-items: center;
|
|
position: absolute;
|
|
bottom: 0;
|
|
}
|
|
|
|
.ve-ui-expandableContent-toggle {
|
|
background-color: rgba( 255, 255, 255, 1 );
|
|
}
|
|
|
|
.ve-ui-expandableContent-fade {
|
|
background: linear-gradient( 90deg, rgba( 255, 255, 255, 0 ) 0%, rgba( 255, 255, 255, 1 ) 90% );
|
|
width: 50px;
|
|
height: 100%;
|
|
}
|
|
|
|
.ve-ui-expandableContent-collapsible > :last-child {
|
|
margin-bottom: 0;
|
|
}
|