annotate core/themes/bartik/css/components/buttons.css @ 5:12f9dff5fda9
tip
Update to Drupal core 8.7.1
author |
Chris Cannam |
date |
Thu, 09 May 2019 15:34:47 +0100 |
parents |
c75dbcec494b |
children |
|
rev |
line source |
Chris@0
|
1 /**
|
Chris@0
|
2 * @file
|
Chris@0
|
3 * Styles for Bartik's buttons.
|
Chris@0
|
4 */
|
Chris@0
|
5
|
Chris@0
|
6 .button {
|
Chris@5
|
7 display: inline-block;
|
Chris@5
|
8 padding: 0.25em 1.063em;
|
Chris@5
|
9 cursor: pointer;
|
Chris@5
|
10 text-align: center;
|
Chris@5
|
11 color: #3a3a3a;
|
Chris@5
|
12 border: 1px solid #e4e4e4;
|
Chris@5
|
13 border-right-color: #d2d2d2;
|
Chris@5
|
14 border-bottom-color: #b4b4b4;
|
Chris@5
|
15 border-left-color: #d2d2d2;
|
Chris@5
|
16 border-radius: 1em;
|
Chris@0
|
17 background-color: #fff;
|
Chris@0
|
18 background-image: -webkit-linear-gradient(top, #f3f3f3, #e8e8e8);
|
Chris@0
|
19 background-image: linear-gradient(to bottom, #f3f3f3, #e8e8e8);
|
Chris@0
|
20 font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
|
Chris@0
|
21 font-size: 0.929em;
|
Chris@0
|
22 font-weight: normal;
|
Chris@0
|
23 line-height: normal;
|
Chris@0
|
24 }
|
Chris@0
|
25 .button:hover,
|
Chris@0
|
26 .button:active,
|
Chris@0
|
27 .button:focus {
|
Chris@5
|
28 text-decoration: none;
|
Chris@5
|
29 color: #5a5a5a;
|
Chris@0
|
30 background: #dedede;
|
Chris@0
|
31 }
|
Chris@0
|
32 .button.is-disabled:hover,
|
Chris@0
|
33 .button.is-disabled:active,
|
Chris@0
|
34 .button.is-disabled:focus,
|
Chris@0
|
35 .button.is-disabled {
|
Chris@5
|
36 cursor: default;
|
Chris@5
|
37 color: #717171;
|
Chris@5
|
38 border-color: #bbb;
|
Chris@0
|
39 background: #ededed;
|
Chris@0
|
40 }
|