[lucid] aesthetics: missing left and right borders of the central div in about:home

Bug #559011 reported by Matteo Settenvini
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Ubufox Extension
New
Undecided
Unassigned

Bug Description

In the lucid lynx current beta (updated to today):

the default search page of Firefox misses borders to the left and the right of $("#search-box .center").
This is because $("#search-box .center") has the following CSS property set:

  background:url("../middle.png") repeat-y scroll 0 0 transparent;

As you can see, that url can't be resolved from about:home, because it's relative.

To fix that, at least for the Google search page, I did something like this to the CSS, which uses no remote or local image:

#search-box .center {
  border-left:1px solid #eee;
  border-right:1px solid #eee;
  margin:0;
  padding:0 0 0 0;
  width:591px;
}

#search-box .center h1 {
  margin:0;
  padding-left:64px;
}

#search-box .center input {
  font-size:18px;
  height:25px;
  margin-left:64px;
  padding-left:5px;
  padding-top:5px;
  width:384px;
}

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.