diff options
| author | Mark Otto <[email protected]> | 2013-12-14 16:29:47 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-14 16:29:47 -0800 |
| commit | 323a40cc53dabf0561c588c8f8ccd690c5bb0a03 (patch) | |
| tree | 0f4ab3c35f65a6f88a8b4a8a28001650cdf4ae7a /less/code.less | |
| parent | 89e0f1669f2b4166051affa4eec819475660ed72 (diff) | |
| parent | 83c60ef3eec234b3dac94c841fd1f13f94aab36f (diff) | |
| download | bootstrap-323a40cc53dabf0561c588c8f8ccd690c5bb0a03.tar.xz bootstrap-323a40cc53dabf0561c588c8f8ccd690c5bb0a03.zip | |
Merge branch 'master' into pr/11162
Conflicts:
less/modals.less
Diffstat (limited to 'less/code.less')
| -rw-r--r-- | less/code.less | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/less/code.less b/less/code.less index 54ab46ac8..3eed26c05 100644 --- a/less/code.less +++ b/less/code.less @@ -1,5 +1,5 @@ // -// Code (inline and blocK) +// Code (inline and block) // -------------------------------------------------- @@ -21,6 +21,16 @@ code { border-radius: @border-radius-base; } +// User input typically entered via keyboard +kbd { + padding: 2px 4px; + font-size: 90%; + color: @kbd-color; + background-color: @kbd-bg; + border-radius: @border-radius-small; + box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); +} + // Blocks of code pre { display: block; |
