Issue #2542604 by danharper, g.oechsler: Clean up the "buttons" component in Bartik

8.0.x
Alex Pott 2015-08-06 13:37:47 +01:00
parent 9f6d914493
commit f8755a6f42
3 changed files with 18 additions and 9 deletions

View File

@ -42,6 +42,7 @@ global-styling:
css/components/vertical-tabs.component.css: {}
css/components/views.css: {}
css/components/buttons.css: {}
css/components/image-button.css: {}
css/components/ui-dialog.css: {}
layout:
css/layout.css: {}

View File

@ -1,4 +1,7 @@
/* ---------------- Buttons ---------------- */
/**
* @file
* Styles for Bartik's buttons.
*/
.button {
background-color: #fff;
@ -33,11 +36,3 @@
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;
}

View File

@ -0,0 +1,13 @@
/**
* @file
* Styles for Bartik's image buttons.
*/
.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;
}