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 * Styling for link buttons created by goog.ui.LinkButtonRenderer. 10 * 11 * @author [email protected] (Robby Walker) 12 */ 13 14.goog-link-button { 15 position: relative; 16 color: #00f; 17 text-decoration: underline; 18 cursor: pointer; 19} 20 21/* State: disabled. */ 22.goog-link-button-disabled { 23 color: #888; 24 text-decoration: none; 25 cursor: default; 26} 27 28