annotate core/themes/bartik/css/components/buttons.css @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents af1871eacc83
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@18 7 display: inline-block;
Chris@18 8 padding: 0.25em 1.063em;
Chris@18 9 cursor: pointer;
Chris@18 10 text-align: center;
Chris@18 11 color: #3a3a3a;
Chris@18 12 border: 1px solid #e4e4e4;
Chris@18 13 border-right-color: #d2d2d2;
Chris@18 14 border-bottom-color: #b4b4b4;
Chris@18 15 border-left-color: #d2d2d2;
Chris@18 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@18 28 text-decoration: none;
Chris@18 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@18 36 cursor: default;
Chris@18 37 color: #717171;
Chris@18 38 border-color: #bbb;
Chris@0 39 background: #ededed;
Chris@0 40 }