diff 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
line wrap: on
line diff
--- a/core/themes/bartik/css/components/buttons.css	Thu Feb 28 13:11:55 2019 +0000
+++ b/core/themes/bartik/css/components/buttons.css	Thu May 09 15:34:47 2019 +0100
@@ -4,37 +4,37 @@
  */
 
 .button {
+  display: inline-block;
+  padding: 0.25em 1.063em;
+  cursor: pointer;
+  text-align: center;
+  color: #3a3a3a;
+  border: 1px solid #e4e4e4;
+  border-right-color: #d2d2d2;
+  border-bottom-color: #b4b4b4;
+  border-left-color: #d2d2d2;
+  border-radius: 1em;
   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.25em 1.063em;
-  border-radius: 1em;
-  display: inline-block;
   line-height: normal;
 }
 .button:hover,
 .button:active,
 .button:focus {
+  text-decoration: none;
+  color: #5a5a5a;
   background: #dedede;
-  color: #5a5a5a;
-  text-decoration: none;
 }
 .button.is-disabled:hover,
 .button.is-disabled:active,
 .button.is-disabled:focus,
 .button.is-disabled {
+  cursor: default;
+  color: #717171;
+  border-color: #bbb;
   background: #ededed;
-  border-color: #bbb;
-  color: #717171;
-  cursor: default;
 }