summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@gnome.org>2017-01-13 21:55:51 -0600
committerMichael Catanzaro <mcatanzaro@gnome.org>2017-01-13 22:03:00 -0600
commit5625913cf64db5973e65d4cf98b7411e8bf11d85 (patch)
treee837ef26cc109bcbf335c52d0d13cdf5eb5da378
parentb6fc61e0fdc1dd8e77f5c40fc1ed94eae46ea59d (diff)
downloadepiphany-5625913cf64db5973e65d4cf98b7411e8bf11d85.tar.gz
theme: press to exit fullscreen label should be visible on dark pages
The text is black, so give it a light background.
-rw-r--r--src/resources/epiphany.css5
-rw-r--r--src/resources/epiphany.scss7
2 files changed, 12 insertions, 0 deletions
diff --git a/src/resources/epiphany.css b/src/resources/epiphany.css
index 4ae71ed46..10698b872 100644
--- a/src/resources/epiphany.css
+++ b/src/resources/epiphany.css
@@ -125,3 +125,8 @@ button.active-menu {
box-shadow: inset 0 0 0 1px #4a90d9; }
.incognito-mode.titlebar entry:backdrop {
box-shadow: none; }
+
+/* "Press $KEY to exit fullscreen" overlay text should be visible on dark pages */
+#fullscreen-popup {
+ background-color: white;
+ padding: 6px; }
diff --git a/src/resources/epiphany.scss b/src/resources/epiphany.scss
index 18b87fbf6..56a1d766f 100644
--- a/src/resources/epiphany.scss
+++ b/src/resources/epiphany.scss
@@ -110,3 +110,10 @@ $edge_color: lighten($incognito_color, 13%);
}
}
}
+
+/* "Press $KEY to exit fullscreen" overlay text should be visible on dark pages */
+
+#fullscreen-popup {
+ background-color: white;
+ padding: 6px;
+}