diff --git a/Makefile b/Makefile index 9d42e5a2..07ea0259 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,7 @@ JAR_FILES = ${shell find chrome/content -type f \ -o -path '*.css' \ -o -path '*.xul' \ -o -path '*.rdf' \ + -o -path '*.png' \ \) } chrome.manifest JAR_DIRS = $(foreach f,${JAR_FILES},$(dir $f)) JAR = chrome/vimperator.jar diff --git a/chrome/content/vimperator/default.css b/chrome/content/vimperator/default.css index 0ace7442..0398439d 100644 --- a/chrome/content/vimperator/default.css +++ b/chrome/content/vimperator/default.css @@ -17,6 +17,7 @@ h1 { p.tagline { text-align: center; font-weight: bold; + margin-top: -35px; /* don't leave so much space between "Vimperator" and "First there was..." */ } /* the text in the tables is too large without that */ @@ -164,7 +165,7 @@ fieldset.paypal { color: black; } #vimperator-commandline-prompt { - /* FIXME: black on white or default skin colours? */ + /* FIXME: black on white or default skin colors? */ background-color: white; color: black; } diff --git a/chrome/content/vimperator/help.js b/chrome/content/vimperator/help.js index f57900df..c7fd7581 100644 --- a/chrome/content/vimperator/help.js +++ b/chrome/content/vimperator/help.js @@ -137,7 +137,7 @@ vimperator.help = function(section, easter) //{{{ return ret; } - var header = '

Vimperator

\n' + + var header = '

\n' + '

First there was a Navigator, then there was an Explorer.\n' + 'Later it was time for a Konqueror. Now it\'s time for an Imperator, the VIMperator :)

\n'; diff --git a/chrome/content/vimperator/logo_white.png b/chrome/content/vimperator/logo_white.png new file mode 100644 index 00000000..b33a9025 Binary files /dev/null and b/chrome/content/vimperator/logo_white.png differ