mediawiki-extensions-Visual.../modules/ve/ui/styles/ve.ui.Toolbar.css
Trevor Parscal 4ee9e1f28d Get back to where you once belonged
The toolbar has a high z-index when being floated, it doesn't need one
otherwise. This was causing an issue where the Vector actions drop-down
menu was being obscured.

Change-Id: I3c0ff7c4cf3b4a6c3d94f00ef56d7f299aeb6020
2013-04-29 22:59:46 +00:00

62 lines
1.1 KiB
CSS

/*!
* VisualEditor UserInterface Toolbar styles.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
.ve-ui-toolbar {
border-bottom: solid 1px #ccc;
position: relative;
/* @embed */
background-image: url(images/fade-up.png);
background-position: left bottom;
background-repeat: repeat-x;
padding-bottom: 1px;
line-height: 1em;
}
.ve-ui-toolbarGroups,
.ve-ui-actions,
.ve-ui-toolbar-shadow {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
.ve-ui-toolbarGroup {
display: inline-block;
padding: 0.25em;
border-right: solid 1px #f0f3f5;
vertical-align: middle;
}
.ve-ui-toolbar .ve-ui-toolbarGroups {
float: left;
}
.ve-ui-toolbarDivider {
display: inline-block;
width: 1px;
height: 24px;
margin: 0.5em 0 0.5em 0.5em;
background-color: #ddd;
}
.ve-ui-toolbarLabel {
display: inline-block;
padding: 0.5em 0.75em;
line-height: 22px;
font-size: 0.8em;
color: #555;
vertical-align: top;
}
/* TODO: Rename this class */
.ve-ui-actions {
float: right;
padding: 0.25em;
}