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
Hi,
input size (mini,small, ...) very nice.
But labeled input size not same. input and label not same ratio.
Example: http://jsfiddle.net/cakal/03u8gg5L/1/
inspect element and
.ui.labeled.input>.label { -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; margin: 0; /* font-size: 1rem; */ -->> uncheck
.ui.big.label, .ui.big.labels .label, .ui.huge.label, .ui.huge.labels .label, .ui.label, .ui.labels .label, .ui.large.label, .ui.large.labels .label, .ui.massive.label, .ui.massive.labels .label { /* font-size: .85714286rem; */ ------> uncheck
.ui.mini.input { font-size: .71428571em; --> check
good result
The text was updated successfully, but these errors were encountered:
Fixed with font-size: inherit. I'll add in first patch
font-size: inherit
.ui.labeled.input>.label { font-size: inherit; }
Sorry, something went wrong.
It seems that labels themselves are having a similar issue. Medium, large, big, huge, and massive are all the same size: http://semantic-ui.com/elements/label.html#size
Found the culprit. Can you spot the error? 😆 All larger sizes are set to @12px
@12px
/* Sizing */ @mini : @9px; @tiny : @10px; @small : @11px; @medium : @12px; @large : @medium; @big : @large; @huge : @big; @massive : @huge;
#2486 Fix label inside input not rfesizing
3bc76f9
#2486, Add @absoluteEM sizes to help clarify ambiguity in sizing, fix…
4f31c6d
… label sizing
No branches or pull requests
Hi,
input size (mini,small, ...) very nice.
But labeled input size not same. input and label not same ratio.
Example: http://jsfiddle.net/cakal/03u8gg5L/1/
inspect element and
.ui.labeled.input>.label {
-webkit-box-flex: 0;
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
margin: 0;
/* font-size: 1rem; */ -->> uncheck
.ui.big.label, .ui.big.labels .label, .ui.huge.label, .ui.huge.labels .label, .ui.label, .ui.labels .label, .ui.large.label, .ui.large.labels .label, .ui.massive.label, .ui.massive.labels .label {
/* font-size: .85714286rem; */ ------> uncheck
.ui.mini.input {
font-size: .71428571em; --> check
good result
The text was updated successfully, but these errors were encountered: