Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete 3 CSS declaration in the code selector rule. #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

torreyn
Copy link
Owner

@torreyn torreyn commented Mar 27, 2015

When using the QuickDocsJS plugin, code text is highlighted in a light color and red rendering it hard to read:

screenshot 2015-03-16 14 19 54

I changed:

code {
padding: 2px 4px;
color: #d14;
background-color: rgb(158, 158, 158);
border: 1px solid rgb(122, 122, 122);
white-space: nowrap;
}

to:

code {
padding: 2px 4px;
white-space: nowrap;
}

And now it looks like:

screenshot 2015-03-27 10 36 51

I changed:

code {
    padding: 2px 4px;
    color: #d14;
    background-color: rgb(158, 158, 158);
    border: 1px solid rgb(122, 122, 122);
    white-space: nowrap;
}

to: 

code {
   padding: 2px 4px;
   white-space: nowrap;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant