mediawiki-extensions-Visual.../modules/ve/ui/styles/ve.ui.Menu.css
Trevor Parscal c051107b39 Removed all browser-specific box-shadow rules
These aren't needed for any of our target browsers anymore.

Change-Id: Idae4acb5f0f6387cad52f2ea7594dbad1929af59
2012-12-03 23:08:33 +01:00

40 lines
693 B
CSS

/**
* VisualEditor user interface Menu styles.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
.ve-ui-menu {
display: none;
position: absolute;
border: solid 1px #ccc;
border-radius: 0.25em;
background-color: #fff;
box-shadow: 0 0.25em 1em 0 rgba(0, 0, 0, 0.25);
z-index: 3;
}
.ve-ui-context-position-above .ve-ui-menu {
bottom: 0;
}
.ve-ui-context-position-below .ve-ui-menu {
top: 0;
}
.ve-ui-menu-item {
padding: 0.6em 0.8em;
cursor: pointer;
white-space: nowrap;
}
.ve-ui-menu-item:hover {
background-color: #b3d6f6;
}
.ve-ui-menu-break {
margin: 0.33em 0;
border-top: solid 1px #ddd;
}