about summary refs log tree commit diff stats
path: root/src/layout/box.nim
Commit message (Collapse)AuthorAgeFilesLines
* Fix basic list displaybptato2022-07-151-0/+1
|
* Refactor layout enginebptato2022-07-151-7/+48
|
* specified -> computedbptato2022-06-181-2/+2
| | | | Continuing commit 7e65add
* Re-implement list itemsbptato2022-06-171-7/+13
| | | | Now with proper list-style-position: outside support!
* Re-implement inline-blockbptato2022-06-171-5/+2
| | | | | Still far from standard-compliant, or even non-broken... but it's something
* Simplify offset, fix a text node bugbptato2022-06-081-23/+2
|
* Layout: insignificant changes regarding offsetbptato2022-05-291-2/+25
|
* SpecifiedValue -> ComputedValuebptato2022-05-131-2/+2
| | | | Actually it's neither but ComputedValue is more accurate.
* Some refactoring for layout engine rewritebptato2022-05-101-21/+18
|
* Background color improvementsbptato2022-02-151-1/+9
|
* Implement list-style-positionbptato2022-01-301-0/+3
|
* Implement formsbptato2022-01-291-1/+2
| | | | | | Note: for now, only input tags are supported. Also the implementation is extremely hacky and needs refactoring... But it works, I think.
* Implement text-align and <center>bptato2022-01-291-1/+4
|
* Implement line-height, vertical-alignbptato2022-01-281-1/+3
|
* Implement paddingbptato2022-01-261-5/+15
|
* Fix whitespace stylingbptato2022-01-261-0/+3
|
* Fix node to cell mapping part 2bptato2022-01-241-1/+0
|
* Fix node to cell mappingbptato2022-01-241-4/+3
|
* Fix some block box bugsbptato2022-01-231-0/+2
|
* Use pixels as the base unit for the layoutbptato2022-01-231-13/+0
|
* Implement word-spacingbptato2022-01-231-0/+1
|
* Avoid unnecessary rendering on hover change etcbptato2022-01-221-0/+2
|
* Fix page navigationbptato2022-01-221-4/+9
|
* Re-implement marginsbptato2022-01-221-5/+2
|
* Re-implement list itemsbptato2022-01-191-1/+1
|
* Make sure :root is always blockbptato2022-01-191-1/+0
|
* Replace BoxType with CSSDisplaybptato2022-01-191-4/+1
| | | | They're the same thing.
* Rewrite whitespace handlingbptato2022-01-191-1/+0
|
* Re-implement inline blocksbptato2022-01-191-2/+3
|
* Re-implement pseudo elementsbptato2022-01-191-1/+1
|
* Fix crash on reshapebptato2022-01-191-5/+6
|
* Implement basics of new layout enginebptato2022-01-181-6/+10
|
* Cascade optimizations, start layout engine rewritebptato2021-12-291-50/+38
|
* Implement basic media query supportbptato2021-12-271-10/+10
|
* Prepare for layout engine rewritebptato2021-12-211-4/+37
|
* Honestly I'm not sure what I added here...bptato2021-12-211-1/+2
|
* Ugly hack to make inline blocks workbptato2021-12-181-6/+2
|
* Rework cascading algorithmbptato2021-12-181-1/+1
|
* Move... thingsbptato2021-12-171-5/+6
|
* More deduplicationbptato2021-12-171-0/+6
|
* Simplify layout engine codebptato2021-12-171-3/+0
|
* Initial (and defective) inline-block implementationbptato2021-12-151-5/+4
|
* Refactor enumsbptato2021-12-151-1/+0
|
* Support all css length unitsbptato2021-12-141-2/+7
|
* Support ::before, ::after pseudo elementsbptato2021-12-131-0/+1
|
* Implement anonymous block boxesbptato2021-11-261-0/+2
| | | | Without inline box splitting, for now.
* Refactor some parts of the layout enginebptato2021-11-251-15/+8
|
* Support CSS word breakbptato2021-11-231-0/+3
|
* Refactor cascading logic and css valuesbptato2021-11-191-1/+1
| | | | | applyStylesheets is now in style.nim and computed values etc in values.nim
* Various performance optimizations (...part two)bptato2021-11-191-3/+1
|