aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2009-04-19wrap long lines in src/ css codecorvid
2009-04-18Implemented 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-08properly skip ';' after @import directiveJohannes Hofmann
2009-04-08support CSS @import directiveJohannes Hofmann
2009-04-04static for Http_make_content_typecorvid
2009-03-28check fgets() and write() resultsJohannes Hofmann
2009-03-26fix up license versions/namescorvid
2009-03-26Memory leak fix for 7d3d7c405cf4Jorge Arellano Cid
2009-03-26compiler warning fix: add parenthesisJorge Arellano Cid
2009-03-26Added support for a quoted URL in META refreshJorge Arellano Cid
2009-03-25fix POST form submission for 64-bitcorvid
2009-03-24rename getc() to getChar() to avoid name clash on FreeBSDJohannes Hofmann
2009-03-23disable negative margins for nowJohannes Hofmann
dw::Textblock does not handle them properly yet.
2009-03-23allow negative values for specific CSS properties onlyJohannes 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-23whitespaceJohannes Hofmann
2009-03-22Dpiapi_dialog_answer_cb leakcorvid
2009-03-21update splash ChangeLog linkscorvid
2009-03-19load <style></style> content only if applicableJohannes Hofmann
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