aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2009-03-15move CssPropertyInfo definition to cssparser.ccJohannes Hofmann
2009-03-15camelCaseJohannes Hofmann
2009-03-15initialize CssParser::within_blockJohannes Hofmann
2009-03-15move CssTokenType into CssParser classJohannes Hofmann
2009-03-15make CSS_MAX_STR_LEN a static const integerJohannes Hofmann
2009-03-15replace a_Css_parse(), a_Css_parse_declaration() with static methodsJohannes Hofmann
2009-03-15add CssParser constructorJohannes Hofmann
2009-03-15make CssParser a classJohannes Hofmann
2009-03-15move CssOrigin definition to css.hhJohannes Hofmann
2009-03-15remove (wrong) commentJohannes Hofmann
2009-03-15move macro definition to .cc fileJohannes Hofmann
2009-03-12replace CSS_LENGTH_* macros with inline functionsJohannes Hofmann
2009-03-12remove no longer used HTML_SET_TOP_ATTR macroJohannes Hofmann
2009-03-11whitespaceJorge Arellano Cid
2009-03-11fix allow_white_bg=NO caseJohannes Hofmann
This is not perfect, as the replacement color is hardcoded to 0xdcd1ba.
2009-03-11clear DilloHtmlState stack on destructionJohannes Hofmann
2009-03-10rm color-handling code in prefscorvid
2009-03-10add support for negative numbers in CSS parserJohannes Hofmann
2009-03-10replace visited_color dillorc optionJohannes Hofmann
to change the color of visited links add a line :visited {color: red} to your ~/.dillo/style.css file instead.
2009-03-09needn't include web.hhcorvid
2009-03-09whitespaceJohannes Hofmann
2009-03-09needn't include prefs.hcorvid
2009-03-06[mq]: fix-Nav_save_scroll_pos-typoJeremy Henty
2009-03-06fix CSS string parsing bugJohannes Hofmann
2009-03-06remove link_color dillorc optionJohannes Hofmann
To change the color of not visited links add a line like :link {color: orange} to your ~/.dillo/style.css file.
2009-03-06remove force_my_colors dillorc optionJohannes 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-06remove text_color dillorc optionJohannes Hofmann
To change the default text color add a line like body {color: yellow} to your ~/.dillo/style.css file.
2009-03-06remove bg_color dillorc optionJohannes 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-06remove standard_widget_colors dillorc optioncorvid
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-05reduce number of styleEngine::style0() callsJohannes 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-04Minor comment correctionJorge Arellano Cid
2009-03-04add workaround for fltk bug 2062Johannes Hofmann
2009-03-02Fixed a minor memory leak with CustShrinkTabPager()Hofmann Johannes
2009-03-02Updated the GPL copyright note in the source filesDetlef Riekenberg
2009-03-02use 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-leakJeremy Henty
2009-03-01parse style attr only if neededcorvid
2009-02-27add CSS parser todosJohannes Hofmann
2009-02-26don't accept classes or id's starting with integerJohannes Hofmann
2009-02-26css parsing numberscorvid
Recognize floats starting with '.' (e.g. ".5") as required by CSS 2.1.
2009-02-23let's keep what was successfully uncompressed before encountering errorcorvid
2009-02-20required attrs for form.cccorvid
2009-02-20CssPropertyList leak in Html_tag_open_table_cellcorvid
2009-02-17[mq]: view-stylesheetsJorge Arellano Cid
2009-02-17Fixed a memory leak introduced by 691053e40394Jorge Arellano Cid
2009-02-17fix missing background color for ComplexButton (noticed by corvid)Johannes Hofmann
2009-02-17add font_max_size dillorc optionJohannes Hofmann
2009-02-16check base font against font_min_sizeJohannes Hofmann
2009-02-15mergeJorge Arellano Cid
2009-02-15Fixed 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>