Browse Source

Fixes formatting on image labels, increases label font-size

pull/1009/head
jlukic 10 years ago
parent
commit
59a7b9411a
2 changed files with 7 additions and 7 deletions
  1. 5
      src/definitions/elements/label.less
  2. 9
      src/themes/packages/default/elements/label.variables

5
src/definitions/elements/label.less

@ -148,7 +148,7 @@ a.ui.label {
.ui.image.label img {
display: inline-block;
height: @imageLabelImageHeight;
margin: -@verticalPadding @horizontalPadding -@verticalPadding -@horizontalPadding;
margin: -@verticalPadding @imageLabelDistance -@verticalPadding -@horizontalPadding;
vertical-align: top;
border-radius: @circularRadius;
}
@ -329,8 +329,7 @@ a.ui.label:hover:before {
width: auto;
top: auto;
bottom: 0em;
border-radius: @borderRadius 0em 0em @borderRadius;
border-radius: 0em 0em @borderRadius @borderRadius ;
}
.ui.bottom.right.attached.label {
top: auto;

9
src/themes/packages/default/elements/label.variables

@ -49,6 +49,7 @@
@imageLabelBorderRadius: @circularRadius;
@imageLabelImageHeight: (1em + @verticalPadding * 2);
@imageLabelBoxShadow: none;
@imageLabelDistance: 0.5em,;
/*-------------------
@ -117,8 +118,8 @@
--------------------*/
/* Sizing */
@tiny: 0.6rem;
@small: 0.75rem;
@medium: 0.8125rem;
@large: 0.875rem;
@tiny: 0.75rem;
@small: 0.8rem;
@medium: 0.875rem;
@large: 0.9rem;
@huge: 1rem;
Loading…
Cancel
Save