This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 20954 - Search result categories have bullets
Summary: Search result categories have bullets
Status: RESOLVED FIXED
Alias: None
Product: webplatform.org
Classification: Unclassified
Component: skin (show other bugs)
Version: unspecified
Hardware: All All
: P2 normal
Target Milestone: ---
Assignee: Doug Schepers
QA Contact: public-webplatform-bugs list
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-11 20:21 UTC by Paul Verbeek
Modified: 2013-02-11 21:18 UTC (History)
0 users

See Also:


Attachments

Description Paul Verbeek 2013-02-11 20:21:49 UTC
In the search result page, there is a bar between the search input box and the search results. This shows a list of search types.

In the theme, each search type has a bullet in front of them. The bullets shouldn't be there, they overlap the text.
Comment 1 David Kirstein (Frozenice) 2013-02-11 21:18:48 UTC
Fixed via Common.css for now.

Culprit is skins/webplatform/main.css:

ul li {
  margin-bottom: 10px;
  list-style-image: url(skins/webplatform/images/bullet.svg);
}


Although resources/mediawiki.special/mediawiki.special.css already has:

.mw-search-formheader div.search-types ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

it's not enough.