1/* 2 * Copyright 2009 The Closure Library Authors. All Rights Reserved. 3 * 4 * Use of this source code is governed by the Apache License, Version 2.0. 5 * See the COPYING file for details. 6 */ 7 8/* 9 * Standard styling for menus created by goog.ui.MenuRenderer. 10 * 11 * @author [email protected] (Attila Bodis) 12 */ 13 14 15.goog-menu { 16 background: #fff; 17 border-color: #ccc #666 #666 #ccc; 18 border-style: solid; 19 border-width: 1px; 20 cursor: default; 21 font: normal 13px Arial, sans-serif; 22 margin: 0; 23 outline: none; 24 padding: 4px 0; 25 position: absolute; 26 z-index: 20000; /* Arbitrary, but some apps depend on it... */ 27} 28 29