Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Re: markCurrentItem issues and labels size

Home Forums Older releases 0.9.x markCurrentItem issues and labels size Re: markCurrentItem issues and labels size

#1611
admin
Keymaster

Hi,

It’s caused by the background:#fff; declaration you’ve added to the following generic rule in Eric Meyer’s reset CSS:

html,
body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd,
q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt,
dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot,
thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby, section, summary, time,
mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
	background:#fff;
}

I would recommend removing this declaration as it’s in a too generic rule and will be applied to all matched elements on the page by default.

Cheers!