mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 21:08:12 +00:00
LibHTML: Fix the default style for <hr> elements
This was broken because we don't expand CSS shorthand properties (yet.)
This commit is contained in:
parent
56764a2db8
commit
ee2cafc15c
1 changed files with 12 additions and 3 deletions
|
@ -102,9 +102,18 @@ a:hover {
|
|||
hr {
|
||||
margin-top: 4;
|
||||
margin-bottom: 4;
|
||||
border-width: 1;
|
||||
border-color: #888888;
|
||||
border-style: inset;
|
||||
border-top-width: 1;
|
||||
border-left-width: 1;
|
||||
border-right-width: 1;
|
||||
border-bottom-width: 1;
|
||||
border-top-color: #888888;
|
||||
border-left-color: #888888;
|
||||
border-right-color: #888888;
|
||||
border-bottom-color: #888888;
|
||||
border-top-style: inset;
|
||||
border-left-style: inset;
|
||||
border-right-style: inset;
|
||||
border-bottom-style: inset;
|
||||
}
|
||||
|
||||
blink {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue