Commit 67eae2a5 authored by Luis Aleman's avatar Luis Aleman

Do not need to write box-shadow in full

parent 96a1797a
...@@ -262,9 +262,7 @@ ...@@ -262,9 +262,7 @@
color: @navbarLinkColorActive; color: @navbarLinkColorActive;
text-decoration: none; text-decoration: none;
background-color: @navbarLinkBackgroundActive; background-color: @navbarLinkBackgroundActive;
-webkit-box-shadow: inset 0 3px 8px rgba(0,0,0,.125); .box-shadow(inset 0 3px 8px rgba(0,0,0,.125));
-moz-box-shadow: inset 0 3px 8px rgba(0,0,0,.125);
box-shadow: inset 0 3px 8px rgba(0,0,0,.125);
} }
// Navbar button for toggling navbar items in responsive layouts // Navbar button for toggling navbar items in responsive layouts
......
...@@ -41,9 +41,7 @@ a:hover { ...@@ -41,9 +41,7 @@ a:hover {
background-color: #fff; background-color: #fff;
border: 1px solid #ccc; border: 1px solid #ccc;
border: 1px solid rgba(0,0,0,.2); border: 1px solid rgba(0,0,0,.2);
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.1); .box-shadow(0 1px 3px rgba(0,0,0,.1));
-moz-box-shadow: 0 1px 3px rgba(0,0,0,.1);
box-shadow: 0 1px 3px rgba(0,0,0,.1);
} }
.img-circle { .img-circle {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment