Browse Source

Fix color and transition

Volodymyr Tkach 2 years ago
parent
commit
a7bcce6184
1 changed files with 2 additions and 2 deletions
  1. 2 2
      css/controls/button/button.css

+ 2 - 2
css/controls/button/button.css

@@ -10,7 +10,7 @@
 	padding: 6px 12px;
 	padding: 6px 12px;
 	text-align: center;
 	text-align: center;
 	text-decoration: none;
 	text-decoration: none;
-	transition: all .15s ease-in-out;
+	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
 	user-select: none;
 	user-select: none;
 	vertical-align: middle;
 	vertical-align: middle;
 	white-space: nowrap;
 	white-space: nowrap;
@@ -67,7 +67,7 @@
 }
 }
 
 
 .btn.red:hover {
 .btn.red:hover {
-	background-color: #bb2d3b;
+	background-color: #c84451;
 	border-color: #b02a37;
 	border-color: #b02a37;
 }
 }