diff options
| author | Luis Aleman <[email protected]> | 2012-08-27 19:13:37 -0400 |
|---|---|---|
| committer | Luis Aleman <[email protected]> | 2012-08-27 19:13:37 -0400 |
| commit | 67eae2a5038d5203220450c2a22ea559ab52d897 (patch) | |
| tree | cb910ccf35be94529a358585e6dc3df4ef9292e8 | |
| parent | 96a1797af123e73ba05cc1b6ce5aa8ef0ef17694 (diff) | |
| download | bootstrap-67eae2a5038d5203220450c2a22ea559ab52d897.tar.xz bootstrap-67eae2a5038d5203220450c2a22ea559ab52d897.zip | |
Do not need to write box-shadow in full
| -rw-r--r-- | less/navbar.less | 4 | ||||
| -rw-r--r-- | less/scaffolding.less | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/less/navbar.less b/less/navbar.less index 64e2eb7ea..25651b14a 100644 --- a/less/navbar.less +++ b/less/navbar.less @@ -262,9 +262,7 @@ color: @navbarLinkColorActive; text-decoration: none; background-color: @navbarLinkBackgroundActive; - -webkit-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); + .box-shadow(inset 0 3px 8px rgba(0,0,0,.125)); } // Navbar button for toggling navbar items in responsive layouts diff --git a/less/scaffolding.less b/less/scaffolding.less index 342dcf705..4c735ba88 100644 --- a/less/scaffolding.less +++ b/less/scaffolding.less @@ -41,9 +41,7 @@ a:hover { background-color: #fff; border: 1px solid #ccc; border: 1px solid rgba(0,0,0,.2); - -webkit-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); + .box-shadow(0 1px 3px rgba(0,0,0,.1)); } .img-circle { |
