Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-04-19 | wrap long lines in src/ css code | corvid | |
2009-04-18 | Implemented Instant client-side redirects (META refresh with delay=0) | Jorge Arellano Cid | |
http://www.w3.org/TR/2008/NOTE-WCAG20-TECHS-20081211/H76.html | |||
2009-04-08 | properly skip ';' after @import directive | Johannes Hofmann | |
2009-04-08 | support CSS @import directive | Johannes Hofmann | |
2009-04-04 | static for Http_make_content_type | corvid | |
2009-03-28 | check fgets() and write() results | Johannes Hofmann | |
2009-03-26 | fix up license versions/names | corvid | |
2009-03-26 | Memory leak fix for 7d3d7c405cf4 | Jorge Arellano Cid | |
2009-03-26 | compiler warning fix: add parenthesis | Jorge Arellano Cid | |
2009-03-26 | Added support for a quoted URL in META refresh | Jorge Arellano Cid | |
2009-03-25 | fix POST form submission for 64-bit | corvid | |
2009-03-24 | rename getc() to getChar() to avoid name clash on FreeBSD | Johannes Hofmann | |
2009-03-23 | disable negative margins for now | Johannes Hofmann | |
dw::Textblock does not handle them properly yet. | |||
2009-03-23 | allow negative values for specific CSS properties only | Johannes Hofmann | |
This needs to be done at parser level, so that alternative settings can overrule a faulty negative one. Testcase: <html> <head> <style type="text/css" > #foo {padding: -1px; background-color: green} .bar {padding: 10px} </style> </head> <body> <div id="foo" class="bar">should be green and have 10px padding</div> </body> </html> | |||
2009-03-23 | whitespace | Johannes Hofmann | |
2009-03-22 | Dpiapi_dialog_answer_cb leak | corvid | |
2009-03-21 | update splash ChangeLog links | corvid | |
2009-03-19 | load <style></style> content only if applicable | Johannes Hofmann | |
2009-03-15 | move CssPropertyInfo definition to cssparser.cc | Johannes Hofmann | |
2009-03-15 | camelCase | Johannes Hofmann | |
2009-03-15 | initialize CssParser::within_block | Johannes Hofmann | |
2009-03-15 | move CssTokenType into CssParser class | Johannes Hofmann | |
2009-03-15 | make CSS_MAX_STR_LEN a static const integer | Johannes Hofmann | |
2009-03-15 | replace a_Css_parse(), a_Css_parse_declaration() with static methods | Johannes Hofmann | |
2009-03-15 | add CssParser constructor | Johannes Hofmann | |
2009-03-15 | make CssParser a class | Johannes Hofmann | |
2009-03-15 | move CssOrigin definition to css.hh | Johannes Hofmann | |
2009-03-15 | remove (wrong) comment | Johannes Hofmann | |
2009-03-15 | move macro definition to .cc file | Johannes Hofmann | |
2009-03-12 | replace CSS_LENGTH_* macros with inline functions | Johannes Hofmann | |
2009-03-12 | remove no longer used HTML_SET_TOP_ATTR macro | Johannes Hofmann | |
2009-03-11 | whitespace | Jorge Arellano Cid | |
2009-03-11 | fix allow_white_bg=NO case | Johannes Hofmann | |
This is not perfect, as the replacement color is hardcoded to 0xdcd1ba. | |||
2009-03-11 | clear DilloHtmlState stack on destruction | Johannes Hofmann | |
2009-03-10 | rm color-handling code in prefs | corvid | |
2009-03-10 | add support for negative numbers in CSS parser | Johannes Hofmann | |
2009-03-10 | replace visited_color dillorc option | Johannes Hofmann | |
to change the color of visited links add a line :visited {color: red} to your ~/.dillo/style.css file instead. | |||
2009-03-09 | needn't include web.hh | corvid | |
2009-03-09 | whitespace | Johannes Hofmann | |
2009-03-09 | needn't include prefs.h | corvid | |
2009-03-06 | [mq]: fix-Nav_save_scroll_pos-typo | Jeremy Henty | |
2009-03-06 | fix CSS string parsing bug | Johannes Hofmann | |
2009-03-06 | remove link_color dillorc option | Johannes Hofmann | |
To change the color of not visited links add a line like :link {color: orange} to your ~/.dillo/style.css file. | |||
2009-03-06 | remove force_my_colors dillorc option | Johannes Hofmann | |
to get a similar behaviour add the !important directive to your color definitions in ~/.dillo/style.css, e.g: body {background-color: green !important} | |||
2009-03-06 | remove text_color dillorc option | Johannes Hofmann | |
To change the default text color add a line like body {color: yellow} to your ~/.dillo/style.css file. | |||
2009-03-06 | remove bg_color dillorc option | Johannes Hofmann | |
To set a custom background color add a line like: body {background-color: white} to your ~/.dillo/style.css file. This also works for plain text display and image viewing. | |||
2009-03-06 | remove standard_widget_colors dillorc option | corvid | |
Form widgets by default use the background color of their parent. To get more conservative widget colors, you can add a line button, select, input {background-color: #e0e0e0} to ~/.dillo/style.css. | |||
2009-03-05 | reduce number of styleEngine::style0() calls | Johannes Hofmann | |
Rearrange code, so that for each new element, StyleEngine::setNonCssHints() is called before the first call to StyleEngine::style() or StyleEngine::wordStyle(). This avoids unnecessary CSS style computations which are expensive. Add an assertion to ensure this. | |||
2009-03-04 | Minor comment correction | Jorge Arellano Cid | |
2009-03-04 | add workaround for fltk bug 2062 | Johannes Hofmann | |