Browse Source

HUE-2016 [core] Improve the shadows for stateful buttons

Added more box shadow
Enrico Berti 11 years ago
parent
commit
c7ae876bac
1 changed files with 8 additions and 0 deletions
  1. 8 0
      desktop/core/static/css/hue3.css

+ 8 - 0
desktop/core/static/css/hue3.css

@@ -1525,4 +1525,12 @@ a, a:hover, a:active, a:focus {
   padding: 2px;
   background-color: #C2E0B0;
   opacity: 0.80;
+}
+
+.btn.active, .btn:active {
+  border-color: rgba(0, 0, 0, 0.1);
+  outline: 0;
+  -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3) inset;
+  -moz-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3) inset;
+  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3) inset;
 }