Merge branch '2.1' into 3.0
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / style / bbcode / inlineCode.scss
1 .inlineCode, /* deprecated, legacy class */
2 kbd {
3 background-color: rgba(255, 255, 255, 1) !important;
4 border: 1px solid rgba(196, 196, 196, 1) !important;
5 border-radius: 2px;
6 color: rgba(68, 68, 68, 1) !important;
7 /* do not use inline-block, it breaks arrow key navigation in Firefox and Internet Explorer 11 */
8 /* update: `inline` styling breaks even more things, in particular the caret position is way off */
9 /* this reverts 8d381dc61e8183adcb770457f9fba25c29c00bd2 */
10 display: inline-block;
11 font-family: Consolas, 'Courier New', monospace;
12 font-style: normal;
13 font-weight: normal;
14 margin: 1px 2px;
15 overflow: auto;
16 padding: 0 4px;
17 text-decoration: none;
18 vertical-align: middle;
19 word-break: break-all;
20 word-wrap: break-word;
21 }