Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / ui / webui / resources / css / action_link.css
blobc645cf10f956a5079e1573b2db51bc85bc3d3df5
1 /* Copyright 2015 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
5 [is='action-link'] {
6 cursor: pointer;
7 display: inline-block;
8 text-decoration: none;
11 [is='action-link']:hover {
12 text-decoration: underline;
15 [is='action-link']:active {
16 color: rgb(5, 37, 119);
17 text-decoration: underline;
20 [is='action-link'][disabled] {
21 color: #999;
22 cursor: default;
23 pointer-events: none;
24 text-decoration: none;
27 [is='action-link'].no-outline {
28 outline: none;