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
(note that the @radius variable could take the form of one or two values, e.g. @radius: 2px 4px for the x- and y- radii, in that order)
@radius
@radius: 2px 4px
// could the following 4 mixins be css shorthand properties? .border-block-start-radius(@radius: 0) { border-start-start-radius: @radius; border-start-end-radius: @radius; } .border-block-end-radius(@radius: 0) { border-end-start-radius: @radius; border-end-end-radius: @radius; } .border-inline-start-radius(@radius: 0) { border-start-start-radius: @radius; border-end-start-radius: @radius; } .border-inline-end-radius(@radius: 0) { border-start-end-radius: @radius; border-end-end-radius: @radius; }
Related: w3c/csswg-drafts#491
.border-block(start; @width: 0) { border-block-start-width: @width; margin-block-start: (-@width); } .border-block(end; @width: 0) { border-block-end-width: @width; margin-block-start: (-@width); } .border-block(block; @width: 0) { border-block-width: @width; margin-block-start: (-2 * @width); } .border-block(all; @width: 0) { border-width: @width; margin-block-start: (-2 * @width); }
.c-Permalink { margin-inline-start: 1rem; }
.h-Hidden { inset-inline-start: -999999px; }
.h-Ruled { background-position-block: end; }
The text was updated successfully, but these errors were encountered:
xmeter v6.2.0
Sorry, something went wrong.
373019d
No branches or pull requests
__tool.border-radius.less
(note that the
@radius
variable could take the form of one or two values, e.g.@radius: 2px 4px
for the x- and y- radii, in that order)Related: w3c/csswg-drafts#491
__tool.borders.less
_c-Permalink.less
_h-Hidden.less
_h-Ruled.less
The text was updated successfully, but these errors were encountered: