mirror of
https://github.com/servo/servo.git
synced 2025-07-23 15:23:42 +01:00
resources: Style anonymous blocks and anonymous table flows
appropriately in the UA stylesheet.
This commit is contained in:
parent
fb2d1e1020
commit
1ab56c0ccd
1 changed files with 44 additions and 0 deletions
|
@ -171,3 +171,47 @@ svg > * {
|
||||||
*|*::-servo-input-text {
|
*|*::-servo-input-text {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
*|*::-servo-table-wrapper {
|
||||||
|
display: table;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
*|*::-servo-anonymous-table-wrapper {
|
||||||
|
position: static;
|
||||||
|
margin: 0;
|
||||||
|
counter-increment: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
*|*::-servo-anonymous-table {
|
||||||
|
display: table;
|
||||||
|
position: static;
|
||||||
|
border: none;
|
||||||
|
padding: 0;
|
||||||
|
counter-increment: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
*|*::-servo-anonymous-table-row {
|
||||||
|
display: table-row;
|
||||||
|
position: static;
|
||||||
|
border: none;
|
||||||
|
counter-increment: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
*|*::-servo-anonymous-table-cell {
|
||||||
|
display: table-cell;
|
||||||
|
position: static;
|
||||||
|
border: none;
|
||||||
|
counter-increment: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
*|*::-servo-anonymous-block {
|
||||||
|
display: block;
|
||||||
|
position: static;
|
||||||
|
border: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
width: auto;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue