Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update code style | bptato | 2024-04-17 | 1 | -121/+112 |
| | | | | | | * separate params with ; (semicolon) instead of , (colon) * reduce screaming snake case use * wrap long lines | ||||
* | css: hide noscript tags when scripting is enabled | bptato | 2024-02-13 | 1 | -3/+23 |
| | |||||
* | Use std/* imports everywhere | bptato | 2024-01-07 | 1 | -2/+2 |
| | |||||
* | css: change type of rvalue to char (from Rune) | bptato | 2023-10-01 | 1 | -9/+7 |
| | | | | | | | | We did were not using it as a unicode value anywhere, it was just making our life harder. If we ever need unicode delimiter tokens, we can re-introduce them as a different token type. | ||||
* | move around more modules | bptato | 2023-09-14 | 1 | -1/+1 |
| | | | | | | | | | | * ips -> io/ * loader related stuff -> loader/ * tempfile -> extern/ * buffer, forkserver -> server/ * lineedit, window -> display/ * cell -> types/ * opt -> types/ | ||||
* | twtstr: simplify | bptato | 2023-09-13 | 1 | -2/+3 |
| | | | | | | * remove unused function isAlphaAscii * swap pushHex for less casting * remove == overload for char/rune (we did not really use it anyway) | ||||
* | mediaquery: fix logic error | bptato | 2023-08-14 | 1 | -1/+1 |
| | | | | Not isAscii means we cannot convert to char. Oops. | ||||
* | mediaquery: fix some missing has checks in parser | bptato | 2023-07-28 | 1 | -0/+2 |
| | |||||
* | mediaquery: better debugging functions | bptato | 2023-07-23 | 1 | -3/+35 |
| | |||||
* | Fix bug in media-query parsing | bptato | 2023-07-04 | 1 | -2/+16 |
| | | | | This fixes interpretation of "@media (min/max-width: 1234px)". | ||||
* | css/values: use Result instead of exceptions | bptato | 2023-06-25 | 1 | -3/+4 |
| | |||||
* | Add support for width, height media query | bptato | 2023-06-07 | 1 | -22/+183 |
| | |||||
* | Update CSS tokenizer | bptato | 2022-07-29 | 1 | -8/+7 |
| | | | | It was slightly outdated and in many places incorrect. | ||||
* | Rename conflicting source files | bptato | 2022-05-10 | 1 | -1/+1 |
| | | | | Nim can't really differentiate between them, unfortunately. | ||||
* | Support external stylesheets | bptato | 2022-01-23 | 1 | -1/+1 |
| | |||||
* | Fix media query bug, do not refresh page without css change (wip) | bptato | 2022-01-22 | 1 | -2/+6 |
| | |||||
* | Implement basic media query support | bptato | 2021-12-27 | 1 | -0/+306 |