annotate core/themes/bartik/css/components/buttons.css @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author |
Chris Cannam |
date |
Mon, 23 Apr 2018 09:33:26 +0100 |
parents |
4c8ae668cc8c |
children |
1fec387a4317 |
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@0
|
7 background-color: #fff;
|
Chris@0
|
8 background-image: -webkit-linear-gradient(top, #f3f3f3, #e8e8e8);
|
Chris@0
|
9 background-image: linear-gradient(to bottom, #f3f3f3, #e8e8e8);
|
Chris@0
|
10 border: 1px solid #e4e4e4;
|
Chris@0
|
11 border-bottom-color: #b4b4b4;
|
Chris@0
|
12 border-left-color: #d2d2d2;
|
Chris@0
|
13 border-right-color: #d2d2d2;
|
Chris@0
|
14 color: #3a3a3a;
|
Chris@0
|
15 cursor: pointer;
|
Chris@0
|
16 font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
|
Chris@0
|
17 font-size: 0.929em;
|
Chris@0
|
18 font-weight: normal;
|
Chris@0
|
19 text-align: center;
|
Chris@0
|
20 padding: 0.250em 1.063em;
|
Chris@0
|
21 border-radius: 1em;
|
Chris@0
|
22 display: inline-block;
|
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@0
|
28 background: #dedede;
|
Chris@0
|
29 color: #5a5a5a;
|
Chris@0
|
30 text-decoration: none;
|
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@0
|
36 background: #ededed;
|
Chris@0
|
37 border-color: #bbb;
|
Chris@0
|
38 color: #717171;
|
Chris@0
|
39 cursor: default;
|
Chris@0
|
40 }
|