Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Why is Chrome showing rounded corners? Reply To: [Solved] Why is Chrome showing rounded corners?

#189672
Paulie_D
Member

Just one thing….

It looks like there is some bootstrap styles that, although they don’t apply for me in Chrome, might be the root issue


select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
display: inline-block;
height: 20px;
padding: 4px 6px;
margin-bottom: 10px;
font-size: 18px;
line-height: 20px;
color: #555;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
vertical-align: middle;
}

This is on Line 600 of your Bootstrap CSS…you might want to comment out the border-radius declarations temporarily, clear all the caches and see if that’s it.

If not, you can uncomment them again and look elsewhere.