summaryrefslogtreecommitdiff
path: root/desktop-themes/BlackMATE/README
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2013-03-22 12:31:10 -0700
committerStefano Karapetsas <[email protected]>2013-03-22 12:31:10 -0700
commit04c9ce8071d19681eaf4224ba1269a0c96080edf (patch)
tree8b6651fae168652b86953b56db5b8940e4d4c888 /desktop-themes/BlackMATE/README
parent80717b78fb8437fe0f6496d69241b782e34f77f8 (diff)
parent20111d3201a1e59a85b7bef273e448d5b5499f9a (diff)
downloadmate-themes-04c9ce8071d19681eaf4224ba1269a0c96080edf.tar.bz2
mate-themes-04c9ce8071d19681eaf4224ba1269a0c96080edf.tar.xz
Merge pull request #26 from NiceandGently/master
add BlackMate theme
Diffstat (limited to 'desktop-themes/BlackMATE/README')
-rw-r--r--desktop-themes/BlackMATE/README42
1 files changed, 42 insertions, 0 deletions
diff --git a/desktop-themes/BlackMATE/README b/desktop-themes/BlackMATE/README
new file mode 100644
index 00000000..14bff652
--- /dev/null
+++ b/desktop-themes/BlackMATE/README
@@ -0,0 +1,42 @@
+Like it's the case with other dark themes, there may be readability issues in LibreOffice and also in webpage input fields when seen with Firefox or Epiphany. Fortunately, there are workarounds:
+
+LibreOffice
+============
+The first issue can be fixed by changing "OOO > Tools > Options > LibreOffice > Appearance > Document background" to white after disabling automatic detection of high contrast in Accessibility.
+
+Firefox
+========
+To fix the second issue for Firefox, create '~/.mozilla/firefox/<YOUR_PROFILE>/chrome/userContent.css' with this in it:
+
+input, textarea, select {
+ -moz-appearance: none !important;
+ background-color: white;
+ color: black;
+}
+
+You might also have to create '~/.mozilla/firefox/<YOUR_PROFILE>/chrome/userChrome.css' as:
+
+menubar {
+ color: white !important;
+}
+
+Epiphany
+=========
+At last, take control of Epiphany by selecting "Use custom stylesheet" in "Preferences > Font & Style" and creating '~/.gnome2/epiphany/user-stylesheet.css' as:
+
+select {
+ color: #fff !important;
+ border-radius: 0 !important;
+ border-color: transparent !important;
+}
+
+input {
+ background-color: #fcfcfc !important;
+ color: #000 !important;
+}
+
+Meld
+=====
+Meld is a nifty diff tool, written in Python and GTK+-2.0, that I use frequently. Its search entry -- at least, up to v1.5.4 -- hates dark backgrounds but it can be forced to like them by commenting out the two-line block of "on_find_entry__changed" in '/usr/lib/meld/meld/ui/findbar.py'.
+
+I also change #880000" to #e60000" in '/usr/lib/meld/meld/tree.py' for more readability.