We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In https://github.com/collective/collective.easyform/blob/master/src/collective/easyform/browser/easyform.css#L36-L38
In contrast with the border property, outline styles apply to the box as a whole. See https://developer.mozilla.org/en-US/docs/Web/CSS/outline
border
outline
As-is, the declarations will be dropped by the browser. Depending on the intended effect, they can be left out or simplified to something like
.fieldFromBehavior .fieldLabel { outline: solid thin; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In https://github.com/collective/collective.easyform/blob/master/src/collective/easyform/browser/easyform.css#L36-L38
In contrast with the
border
property,outline
styles apply to the box as a whole. See https://developer.mozilla.org/en-US/docs/Web/CSS/outlineAs-is, the declarations will be dropped by the browser. Depending on the intended effect, they can be left out or simplified to something like
The text was updated successfully, but these errors were encountered: