Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/closure/goog/css/linkbutton.css
3989 views
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
12
@provide 'goog.css.linkbutton';
13
14
@require './common';
15
16
.goog-link-button {
17
position: relative;
18
color: #00f;
19
text-decoration: underline;
20
cursor: pointer;
21
}
22
23
/* State: disabled. */
24
.goog-link-button-disabled {
25
color: #888;
26
text-decoration: none;
27
cursor: default;
28
}
29
30