diff options
author | Robert Speicher <robert@gitlab.com> | 2015-11-10 17:12:44 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2015-11-10 17:12:44 +0000 |
commit | 20b0ad2b0ff9ddc118bbdcb67a0916d6a693a137 (patch) | |
tree | 479583986b105a65c331743cc6320bde9565c244 | |
parent | 7199e9ef1dd82f332a97ffefcddb3c3841cb6a23 (diff) | |
parent | 99c05363ea8ff53cfa9620b626325773d17bb575 (diff) | |
download | gitlab-ce-20b0ad2b0ff9ddc118bbdcb67a0916d6a693a137.tar.gz |
Merge branch 'fix-tabs-not-rendering-in-chromium-45' into 'master'
Remove CSS property preventing hard tabs from rendering in Chromium 45
This is to workaround a bug in Chromium 45 (https://code.google.com/p/chromium/issues/detail?id=446434),
which is the default browser in Ubuntu 14.04 and older.
Closes #3220
See merge request !1779
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | app/assets/stylesheets/framework/typography.scss | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG index 168c4b50e4a..b2693185368 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ Please view this file on the master branch, on stable branches it's out of date. v 8.2.0 (unreleased) + - Remove CSS property preventing hard tabs from rendering in Chromium 45 (Stan Hu) - Added a GitLab specific profiling tool called "Sherlock" (see GitLab CE merge request #1749) - Upgrade gitlab_git to 7.2.20 and rugged to 0.23.3 (Stan Hu) - Improved performance of finding users by one of their Email addresses diff --git a/app/assets/stylesheets/framework/typography.scss b/app/assets/stylesheets/framework/typography.scss index e6558a23858..ba0312ba0db 100644 --- a/app/assets/stylesheets/framework/typography.scss +++ b/app/assets/stylesheets/framework/typography.scss @@ -173,7 +173,6 @@ * */ body { - text-rendering:optimizeLegibility; -webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; } |