diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-03-06 12:05:21 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-03-06 12:05:21 +0100 |
commit | 389cd5372e22f09bb8972baf6493fa13c3892367 (patch) | |
tree | 82641af93ac1c7bdcc01a3d8de3d1c61a1c6c82e /src | |
parent | 404b32a8f5dc7b2a296f3a9b99081e1db9b99b84 (diff) |
remove force_my_colors dillorc option
to get a similar behaviour add the !important directive to your color
definitions in ~/.dillo/style.css, e.g:
body {background-color: green !important}
Diffstat (limited to 'src')
-rw-r--r-- | src/prefs.c | 2 | ||||
-rw-r--r-- | src/prefs.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/src/prefs.c b/src/prefs.c index d8d68fca..0419d9b7 100644 --- a/src/prefs.c +++ b/src/prefs.c @@ -164,7 +164,6 @@ static int Prefs_parse_dillorc(void) { "font_monospace", &prefs.font_monospace, PREFS_STRING }, { "font_sans_serif", &prefs.font_sans_serif, PREFS_STRING }, { "font_serif", &prefs.font_serif, PREFS_STRING }, - { "force_my_colors", &prefs.force_my_colors, PREFS_BOOL }, { "fullwindow_start", &prefs.fullwindow_start, PREFS_BOOL }, { "geometry", NULL, PREFS_GEOMETRY }, { "home", &prefs.home, PREFS_URL }, @@ -268,7 +267,6 @@ void a_Prefs_init(void) prefs.font_monospace = dStrdup(D_FONT_MONOSPACE); prefs.font_sans_serif = dStrdup(D_FONT_SANS_SERIF); prefs.font_serif = dStrdup(D_FONT_SERIF); - prefs.force_my_colors = FALSE; prefs.fullwindow_start=FALSE; /* these four constitute the geometry */ diff --git a/src/prefs.h b/src/prefs.h index e7b88f2b..048ce6fc 100644 --- a/src/prefs.h +++ b/src/prefs.h @@ -32,7 +32,6 @@ struct _DilloPrefs { int32_t link_color; int32_t visited_color; bool_t allow_white_bg; - bool_t force_my_colors; bool_t contrast_visited_color; bool_t show_tooltip; int panel_size; |