mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 02:23:58 +00:00
d0ff691f9e
* New! Button and InputLabel widgets * Using new buttons in the demo * Moved styles around to generalize input styles Change-Id: Ic42e133f8fe0fffcb61374c09dd5668db82a4799 TODO: Use these buttons other places! (like ve.init)
123 lines
2.4 KiB
CSS
123 lines
2.4 KiB
CSS
/**
|
|
* VisualEditor standalone demo styles.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow-y: scroll;
|
|
background: #fff;
|
|
font: normal 1em/1.5 sans-serif;
|
|
}
|
|
|
|
/* Demo */
|
|
|
|
.ve-demo-docs {
|
|
list-style: none;
|
|
margin: 0 0 1em 0;
|
|
display: inline-block;
|
|
}
|
|
|
|
.ve-demo-docs li {
|
|
list-style: none;
|
|
margin: 0 0.75em 0 0;
|
|
padding: 0;
|
|
display: inline-block;
|
|
}
|
|
|
|
.ve-demo-utilities {
|
|
margin-left: 2.5em;
|
|
margin-right: 2.5em;
|
|
margin-bottom: 1em;
|
|
border: solid 1px #ddd;
|
|
border-radius: 0.5em;
|
|
padding: 1em 2em;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.ve-demo-utilities-range .ve-ui-widget {
|
|
display: inline-block;
|
|
margin-right: 1em;
|
|
}
|
|
|
|
.ve-demo-utilities-range .ve-ui-widget input {
|
|
width: 4em;
|
|
}
|
|
|
|
/* Editor */
|
|
|
|
.ve-surface {
|
|
margin: 2em;
|
|
margin-top: 0;
|
|
box-shadow: 0 0.25em 1.5em 0 #ddd;
|
|
border-radius: 0.5em;
|
|
}
|
|
|
|
.ve-ce-documentNode {
|
|
border: solid 1px #ccc;
|
|
border-top: none;
|
|
padding: 0.75em 1.5em;
|
|
}
|
|
|
|
.ve-ui-toolbar {
|
|
border: solid 1px #ccc;
|
|
position: relative;
|
|
border-radius: 0;
|
|
-webkit-border-top-right-radius: 0.25em;
|
|
-moz-border-top-right-radius: 0.25em;
|
|
-o-border-top-right-radius: 0.25em;
|
|
border-top-right-radius: 0.25em;
|
|
-webkit-border-top-left-radius: 0.25em;
|
|
-moz-border-top-left-radius: 0.25em;
|
|
-o-border-top-left-radius: 0.25em;
|
|
border-top-left-radius: 0.25em;
|
|
/* @embed */
|
|
background-image: url(../../modules/ve/ui/styles/images/fade-up.png);
|
|
background-position: left bottom;
|
|
background-repeat: repeat-x;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
-o-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.ve-ui-toolbar-wrapper {
|
|
margin: 0 2em;
|
|
}
|
|
|
|
.ve-ui-toolbar-wrapper.float .ve-ui-toolbar {
|
|
top: 0;
|
|
position: fixed;
|
|
border-radius: 0;
|
|
z-index: 100;
|
|
border-top: none;
|
|
}
|
|
|
|
.ve-ui-toolbar-shadow {
|
|
/* @embed */
|
|
background-image: url(../../modules/ve/ui/styles/images/toolbar-shadow.png);
|
|
background-position: left top;
|
|
background-repeat: repeat-x;
|
|
position: absolute;
|
|
bottom: -9px;
|
|
height: 9px;
|
|
width: 100%;
|
|
pointer-events: none;
|
|
-ms-transition: opacity 500ms ease-in-out;
|
|
-webkit-transition: opacity 500ms ease-in-out;
|
|
-moz-transition: opacity 500ms ease-in-out;
|
|
-o-transition: opacity 500ms ease-in-out;
|
|
transition: opacity 500ms ease-in-out;
|
|
filter: alpha(opacity=12);
|
|
opacity: 0.125;
|
|
}
|
|
|
|
.ve-ui-toolbar-wrapper.float .ve-ui-toolbar-shadow {
|
|
filter: alpha(opacity=50);
|
|
opacity: 0.5;
|
|
}
|