Age | Commit message (Collapse) | Author |
|
Adds the scroll_switches_tabs_reverse option in dillorc to allows
reversing the direction of tab switching based on the movement of the
mouse wheel.
See: https://lists.mailman3.com/hyperkitty/list/dillo-dev@mailman3.com/thread/F2EF4NHF3CBMJ3XZII2TFIE6MSXEE5AD/
Fixes: https://github.com/dillo-browser/dillo/issues/122
Reviewed-by: Rodrigo Arias Mallo <rodarima@gmail.com>
|
|
|
|
By default, scrolling the mouse wheel over the tabs will switch among
tabs. The option allows users to disable the feature.
|
|
The default tab height of 16 pixels was causing some usability issues as
the tabs are quite small in large monitors. The default size is
increased to 20 pixels and the new option "ui_tab_height" allows the
user to specify a different value.
|
|
When using the mouse wheel to scroll a page, the default scroll step was
causing a very slow scrolling speed. The new option "scroll_step" allows
the user to define how many pixels the page is moved in every step of
the mouse wheel. The default is increased to 100 pixels per step.
|
|
No longer necessary since the new nesting-cleanup design.
|
|
|
|
|
|
calculation.
|
|
|
|
|
|
|
|
Some apps that embed dillo or work in kiosk mode find good use for it.
|
|
|
|
|
|
|
|
|
|
|
|
It hasn't worked for a long time, no one seems to miss it, and there isn't
any compelling case for making the effort to make it work.
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2012-December/009704.html
|
|
Recent mailing list: http://lists.auriga.wearlab.de/pipermail/dillo-dev/2012-December/009661.html
The earlier thread begins with: http://lists.auriga.wearlab.de/pipermail/dillo-dev/2011-September/008890.html
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Nobody saw use for it...
|
|
This patch adds the PREFS_STRINGS type to the prefsparser, which allows having
multiple different strings asociated with one dillorc option (stored in a list)
|
|
|
|
|
|
same_domain option in preference so that spying on users isn't so easy.
|
|
thread: http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-February/007267.html
|
|
The number of simultaneous connections to a single server is now
limited by prefs.http_max_conns (default 6).
This avoids opening hundreds of connections on pages with many images
(BUG 685).
This commit is partly based on a prototype by Jorge Arellano Cid.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
to change the color of visited links add a line
:visited {color: red}
to your ~/.dillo/style.css file instead.
|
|
To change the color of not visited links add a line like
:link {color: orange}
to your ~/.dillo/style.css file.
|
|
to get a similar behaviour add the !important directive to your color
definitions in ~/.dillo/style.css, e.g:
body {background-color: green !important}
|
|
To change the default text color add a line like
body {color: yellow}
to your ~/.dillo/style.css file.
|
|
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.
|
|
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.
|
|
|
|
|
|
|
|
|
|
CSS 2.1 uses the following predefined font names:
'serif', 'sans-serif', 'cursive', 'fantasy', 'monospace'.
Add preferences so that the user can set real font names for these.
Basically the new "font_sans_serif" option is what "vw_fontame"
used to be and "font_monospace" is equivalent to "fw_fontname".
The other two options are new.
|