1/* 2 * Copyright 2010 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 buttons created by goog.ui.ImagelessMenuButtonRenderer. 10 * 11 * @author [email protected] (Attila Bodis) 12 * @author [email protected] (Darren Lewis) 13 */ 14 15/* Dropdown arrow style. */ 16.goog-imageless-button-dropdown { 17 height: 16px; 18 width: 7px; 19 /* Client apps may override the URL at which they serve the sprite. */ 20 background: url(//ssl.gstatic.com/editor/editortoolbar.png) no-repeat -388px 0; 21 vertical-align: top; 22 margin-right: 2px; 23} 24 25