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

Changed invalid border-radius values ("none") to "0" #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/css/whatfont.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
border-left: 0px solid black;
border-right: 0px solid black;
border-top: 0px solid black;
border-radius: none;
-moz-border-radius: none;
-webkit-border-radius: none;
border-radius: 0;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Opx solid black

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

0

-moz-border-radius: 0;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

0

-webkit-border-radius: 0;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

0

bottom: auto;
box-shadow: none;
-moz-border-radius: none;
-moz-border-radius: 0;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

0

-webkit-box-shadow: none;
clear: none;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

0

color: inherit;
Expand Down Expand Up @@ -412,4 +412,4 @@ ul.__whatfont_font_service li {

.__whatfont_panel_content .__whatfont_panel_tools .__whatfont_tweet_icon:hover {
opacity: 1;
}
}