summaryrefslogtreecommitdiff
path: root/src/data
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2011-04-03 12:38:58 +0200
committerAndrea Diamantini <adjam7@gmail.com>2011-04-03 12:38:58 +0200
commit905c7e9c391f371d68fc646cd64ddc24055ed40b (patch)
tree8968eea899e9c21fa89c652d9c3949247dc3b809 /src/data
parentRekonq 0.7 first stable release, yeah!! (diff)
downloadrekonq-905c7e9c391f371d68fc646cd64ddc24055ed40b.tar.xz
This commit aims to fix a long standing rekonq bug about scrollbar (and webview in general)
theme. The right way to do it seems be using a local .css file. Letting this be in master for one week (at least) before backporting...
Diffstat (limited to 'src/data')
-rw-r--r--src/data/CMakeLists.txt1
-rw-r--r--src/data/default_rekonq.css10
2 files changed, 11 insertions, 0 deletions
diff --git a/src/data/CMakeLists.txt b/src/data/CMakeLists.txt
index cde938c3..6aef22ec 100644
--- a/src/data/CMakeLists.txt
+++ b/src/data/CMakeLists.txt
@@ -11,6 +11,7 @@ INSTALL(
INSTALL(
FILES
defaultbookmarks.xbel
+ default_rekonq.css
DESTINATION ${DATA_INSTALL_DIR}/rekonq
)
diff --git a/src/data/default_rekonq.css b/src/data/default_rekonq.css
new file mode 100644
index 00000000..0ba6036c
--- /dev/null
+++ b/src/data/default_rekonq.css
@@ -0,0 +1,10 @@
+/*
+ * rekonq default css properties
+ * this file will not be considered
+ * setting a local stylesheet in rekonq config
+ */
+
+/* Set background color to white for sites forgetting this */
+body{
+background-color:#FFFFFF;
+}