Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian de Alwis2016-05-19 03:43:11 +0000
committerAlexander Kurtakov2019-10-16 10:55:08 +0000
commita10f5476a48cf6ec108c21fa5276dfb735f5347e (patch)
treeb2e0de362d93b419867f20288146f22b9cab36e4
parentb338b26545b1b001a1ef56de842cfcd6b7bb1a85 (diff)
downloadeclipse.platform.ua-a10f5476a48cf6ec108c21fa5276dfb735f5347e.tar.gz
eclipse.platform.ua-a10f5476a48cf6ec108c21fa5276dfb735f5347e.tar.xz
eclipse.platform.ua-a10f5476a48cf6ec108c21fa5276dfb735f5347e.zip
Set explicit header text size and mark as !important Change-Id: Icd2522135aabcfa05359c50b8934bbce04c8deb9
-rw-r--r--org.eclipse.ui.intro.universal/themes/solstice/html/root.css3
-rw-r--r--org.eclipse.ui.intro.universal/themes/solstice/html/shared.css2
2 files changed, 4 insertions, 1 deletions
diff --git a/org.eclipse.ui.intro.universal/themes/solstice/html/root.css b/org.eclipse.ui.intro.universal/themes/solstice/html/root.css
index 492d09f66..8f89a5dd9 100644
--- a/org.eclipse.ui.intro.universal/themes/solstice/html/root.css
+++ b/org.eclipse.ui.intro.universal/themes/solstice/html/root.css
@@ -56,7 +56,8 @@ html, body {
color:white;
font-family: Verdana, Arial, Helvetica;
font-weight: normal;
- font-size: 22px;
+ /* Bug 492993: use !important to prevent header text overflowing on zoom */
+ font-size: 22px !important;
letter-spacing:-0.03em;
}
diff --git a/org.eclipse.ui.intro.universal/themes/solstice/html/shared.css b/org.eclipse.ui.intro.universal/themes/solstice/html/shared.css
index ed8615c11..05ce230e9 100644
--- a/org.eclipse.ui.intro.universal/themes/solstice/html/shared.css
+++ b/org.eclipse.ui.intro.universal/themes/solstice/html/shared.css
@@ -47,6 +47,8 @@ H4 .div-label {
color:white;
font-weight: normal;
letter-spacing:-0.03em;
+ /* Bug 492993: use !important to prevent header text overflowing on zoom */
+ font-size: 31px !important;
}
/* For separators */

Back to the top