mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-05-21 13:24:08 +03:00
Use .box-shadow() mixin so we can enable/disable them
This commit is contained in:
+4
-4
@@ -17,7 +17,7 @@ code {
|
||||
font-size: 90%;
|
||||
color: @code-color;
|
||||
background-color: @code-bg;
|
||||
border-radius: @border-radius-base;
|
||||
.border-radius(@border-radius-base);
|
||||
}
|
||||
|
||||
// User input typically entered via keyboard
|
||||
@@ -26,13 +26,13 @@ kbd {
|
||||
font-size: 90%;
|
||||
color: @kbd-color;
|
||||
background-color: @kbd-bg;
|
||||
border-radius: @border-radius-small;
|
||||
box-shadow: inset 0 -.1rem 0 rgba(0,0,0,.25);
|
||||
.border-radius(@border-radius-small);
|
||||
.box-shadow(inset 0 -.1rem 0 rgba(0,0,0,.25));
|
||||
|
||||
kbd {
|
||||
padding: 0;
|
||||
font-size: 100%;
|
||||
box-shadow: none;
|
||||
.box-shadow(none);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user