Warning, /frameworks/khtml/src/css/quirks.css is written in an unsupported language. File is not indexed.

0001 /*
0002  * This style sheet is used by khtml to render HTML pages in quirks mode
0003  * (C) 2000-2003 Lars Knoll (knoll@kde.org)
0004  *
0005  * Konqueror/khtml relies on the existence of this style sheet for
0006  * rendering. Do not remove or modify this file unless you know
0007  * what you are doing.
0008  */
0009 
0010 /* Give floated images margins of 3px */
0011 img[align="left"] {
0012     margin-right: 3px;
0013 }
0014 
0015 img[align="right"] {
0016     margin-left: 3px;
0017 }
0018 
0019 input[type="text"], input[type="password"], textarea {
0020     box-sizing: border-box;
0021 }
0022 
0023 /* Tables reset both line-height and white-space in quirks mode.
0024    Compatible with WinIE. For some reason they don't reset font-family */
0025 table {
0026     white-space: normal;
0027     line-height: normal;
0028     color: -khtml-text;
0029     font-size: medium;
0030     font-variant: normal;
0031     empty-cells: hide;
0032     text-align: -khtml-auto;
0033     font-weight: initial;
0034 }
0035 
0036 LAYER {
0037     position: absolute;
0038 }
0039 
0040 DIV > LAYER {
0041     position: static;
0042 }
0043 
0044 ILAYER > LAYER {
0045     position: relative;
0046 }