Project

General

Profile

Bug #7487

Bullet points visible next to dashboard widgets

Added by Dominic Cleal over 8 years ago. Updated almost 5 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Dashboard
Target version:
Difficulty:
Triaged:
Bugzilla link:
Fixed in Releases:
Found in Releases:
Red Hat JIRA:

Description

When viewing the dashboard on a source or production installation with precompiled assets, bullet points are visible to the left of dashboard widgets. This doesn't happen on a development source install (only when precompiled), or on RPM installations - it's probably specific to certain versions of gems.

It appears that some high Unicode character is getting compiled into the assets:

# source install
$ egrep -o "..gridster ul" public/assets/application.css | xxd
0000000: efbb bf2e 6772 6964 7374 6572 2075 6c0a  ....gridster ul.

# Ubuntu 14.04 with 1.6.0
# egrep -o "..gridster ul" /var/lib/foreman/public/assets/application.css | xxd
0000000: efbb bf2e 6772 6964 7374 6572 2075 6c0a  ....gridster ul.

# EL6 with nightly
# egrep -o "..gridster ul" /var/lib/foreman/public/assets/application.css | xxd
0000000: 7d2e 6772 6964 7374 6572 2075 6c0a       }.gridster ul.

If I edit the compiled asset files on disk and refresh, the bullet points disappear.

Screenshot from 2014-09-17 10_59_15.png View Screenshot from 2014-09-17 10_59_15.png 26.4 KB unicode character visible in vim Dominic Cleal, 09/17/2014 05:59 AM
Screenshot from 2014-09-17 11_01_25.png View Screenshot from 2014-09-17 11_01_25.png 104 KB screenshot Dominic Cleal, 09/17/2014 06:01 AM
Screenshot%20from%202014 09 17%2010 59 15 Screenshot%20from%202014 09 17%2011 01 25

Associated revisions

Revision 5355b6b6 (diff)
Added by Dominic Cleal over 8 years ago

fixes #7487 - remove unused background-image containing UTF-8 character

UTF-8 was causing BOMs to appear in the precompiled CSS, which then prevented
these styles being applied, so bullet points appeared on the dashboard.

Revision d00ef951 (diff)
Added by Dominic Cleal over 8 years ago

fixes #7487 - remove unused background-image containing UTF-8 character

UTF-8 was causing BOMs to appear in the precompiled CSS, which then prevented
these styles being applied, so bullet points appeared on the dashboard.

(cherry picked from commit 5355b6b62a107b691572367883314f0e287438cd)

History

#1 Updated by Dominic Cleal over 8 years ago

I'm still seeing this, and can now reproduce it on an RPM installation when sass is updated from 3.2.13 to 3.4.9. For now, I'm not going to upgrade it.

#2 Updated by Dominic Cleal over 8 years ago

  • Status changed from New to Assigned
  • Assignee set to Dominic Cleal

https://github.com/sass/sass/commit/2b87b837 introduced the behaviour change in sass 3.4.0, where (if I understand it correctly) use of UTF-8 in stylesheets would result in a BOM character being added to the output stylesheet. I think when the output stylesheets are concatenated together with sprockets, the BOM is just being put in the middle (maybe a sprockets bug?) and isn't usable.

We have two pieces of UTF-8 that I can see in our stylesheets, which don't appear to be deliberate - a … character in the middle of some base64.
https://github.com/theforeman/foreman/blob/1.7.0-RC2/app/assets/stylesheets/gridster.scss#L173
https://github.com/theforeman/foreman/blob/1.7.0-RC2/app/assets/stylesheets/charts.scss#L7

#3 Updated by The Foreman Bot over 8 years ago

  • Status changed from Assigned to Ready For Testing
  • Pull request https://github.com/theforeman/foreman/pull/1985 added
  • Pull request deleted ()

#4 Updated by Dominic Cleal over 8 years ago

  • Status changed from Ready For Testing to Closed
  • % Done changed from 0 to 100

#5 Updated by Dominic Cleal over 8 years ago

  • Legacy Backlogs Release (now unused) set to 21

Also available in: Atom PDF