mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 06:46:26 +00:00
e83dc3f8fc
Change-Id: I260059802379d8cab8ca175b7d7d32813e3ff10a
74 lines
1.4 KiB
CSS
74 lines
1.4 KiB
CSS
/*!
|
|
* ObjectOriented UserInterface Toolbar styles.
|
|
*
|
|
* @copyright 2011-2013 OOJS Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.oo-ui-toolbar {
|
|
clear: both;
|
|
}
|
|
|
|
.oo-ui-toolbar-bar {
|
|
border-bottom: solid 1px #ccc;
|
|
background-color: white;
|
|
/* @embed */
|
|
background-image: url(images/fade-up.png);
|
|
background-position: left bottom;
|
|
background-repeat: repeat-x;
|
|
padding-bottom: 1px;
|
|
line-height: 1em;
|
|
}
|
|
|
|
.oo-ui-toolbar-bar .oo-ui-toolbar-bar {
|
|
border: none;
|
|
background: none;
|
|
}
|
|
|
|
.oo-ui-toolbar-bottom .oo-ui-toolbar-bar {
|
|
position: absolute;
|
|
}
|
|
|
|
.oo-ui-toolbar-actions {
|
|
float: right;
|
|
}
|
|
|
|
.oo-ui-toolbar-tools {
|
|
float: left;
|
|
}
|
|
|
|
.oo-ui-toolbar-tools,
|
|
.oo-ui-toolbar-actions,
|
|
.oo-ui-toolbar-shadow {
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
-o-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.oo-ui-toolbar-actions .oo-ui-popupWidget {
|
|
-webkit-touch-callout: default;
|
|
-webkit-user-select: all;
|
|
-moz-user-select: all;
|
|
-ms-user-select: all;
|
|
user-select: all;
|
|
}
|
|
|
|
.oo-ui-toolbar-shadow {
|
|
/* @embed */
|
|
background-image: url(images/toolbar-shadow.png);
|
|
background-position: left top;
|
|
background-repeat: repeat-x;
|
|
position: absolute;
|
|
bottom: -9px;
|
|
height: 9px;
|
|
width: 100%;
|
|
pointer-events: none;
|
|
-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;
|
|
opacity: 0.125;
|
|
}
|