Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2009-03-02 | Fixed a minor memory leak with CustShrinkTabPager() | Hofmann Johannes | |
2009-03-02 | Updated the GPL copyright note in the source files | Detlef Riekenberg | |
2009-03-02 | use wordStyle() for bullets in Html_tag_open_frame() | Johannes Hofmann | |
This avoids giant bullets if an <iframe> has width or height specified. | |||
2009-02-28 | [mq]: fix-klist-leak | Jeremy Henty | |
2009-03-01 | parse style attr only if needed | corvid | |
2009-02-27 | add CSS parser todos | Johannes Hofmann | |
2009-02-26 | don't accept classes or id's starting with integer | Johannes Hofmann | |
2009-02-26 | css parsing numbers | corvid | |
Recognize floats starting with '.' (e.g. ".5") as required by CSS 2.1. | |||
2009-02-23 | let's keep what was successfully uncompressed before encountering error | corvid | |
2009-02-20 | required attrs for form.cc | corvid | |
2009-02-20 | CssPropertyList leak in Html_tag_open_table_cell | corvid | |
2009-02-17 | [mq]: view-stylesheets | Jorge Arellano Cid | |
2009-02-17 | Fixed a memory leak introduced by 691053e40394 | Jorge Arellano Cid | |
2009-02-17 | fix missing background color for ComplexButton (noticed by corvid) | Johannes Hofmann | |
2009-02-17 | add font_max_size dillorc option | Johannes Hofmann | |
2009-02-16 | check base font against font_min_size | Johannes Hofmann | |
2009-02-15 | merge | Jorge Arellano Cid | |
2009-02-15 | Fixed handling of META's content-type with no MIME type (e.g. only charset). | Jorge Arellano Cid | |
e.g. some links at http://git.kernel.org/gitweb.cgi didn't render. e.g. #2 This page didn't render: <html> <head> <meta http-equiv="content-type" content="; charset=utf-8"/> <title></title> </head> <body> Generating.... </body> </html> | |||
2009-02-15 | fix leak in CssStyleSheet::addRule() | Johannes Hofmann | |
2009-02-15 | clean StyleEngine::stack on deletion | Johannes Hofmann | |