Drupal 8.0.0 beta 12. More info: https://www.drupal.org/node/2514176
This commit is contained in:
commit
9921556621
13277 changed files with 1459781 additions and 0 deletions
43
core/themes/bartik/css/components/buttons.css
Normal file
43
core/themes/bartik/css/components/buttons.css
Normal file
|
@ -0,0 +1,43 @@
|
|||
/* ---------------- Buttons ---------------- */
|
||||
|
||||
.button {
|
||||
background-color: #fff;
|
||||
background-image: -webkit-linear-gradient(top, #f3f3f3, #e8e8e8);
|
||||
background-image: linear-gradient(to bottom, #f3f3f3, #e8e8e8);
|
||||
border: 1px solid #e4e4e4;
|
||||
border-bottom-color: #b4b4b4;
|
||||
border-left-color: #d2d2d2;
|
||||
border-right-color: #d2d2d2;
|
||||
color: #3a3a3a;
|
||||
cursor: pointer;
|
||||
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
|
||||
font-size: 0.929em;
|
||||
font-weight: normal;
|
||||
text-align: center;
|
||||
padding: 0.250em 1.063em;
|
||||
border-radius: 1em;
|
||||
}
|
||||
.button:hover,
|
||||
.button:active,
|
||||
.button:focus {
|
||||
background: #dedede;
|
||||
color: #5a5a5a;
|
||||
text-decoration: none;
|
||||
}
|
||||
.button.is-disabled:hover,
|
||||
.button.is-disabled:active,
|
||||
.button.is-disabled:focus,
|
||||
.button.is-disabled {
|
||||
background: #ededed;
|
||||
border-color: #bbb;
|
||||
color: #717171;
|
||||
cursor: default;
|
||||
}
|
||||
.image-button.is-disabled:hover,
|
||||
.image-button.is-disabled:active,
|
||||
.image-button.is-disabled:focus,
|
||||
.image-button.is-disabled {
|
||||
background: transparent;
|
||||
opacity: 0.5;
|
||||
cursor: default;
|
||||
}
|
Reference in a new issue