Browse Source

Removes pointer events from disabled buttons, adds icon distance to labels, removes margin from bottom floated images

pull/912/head
jlukic 11 years ago
parent
commit
7a165e8749
3 changed files with 8 additions and 0 deletions
  1. 2
      src/definitions/elements/button.less
  2. 5
      src/definitions/elements/image.less
  3. 1
      src/definitions/elements/label.less

2
src/definitions/elements/button.less

@ -134,6 +134,7 @@
text-shadow: none !important;
color: transparent !important;
transition: all 0s linear;
box-shadow: @boxShadow;
}
.ui.loading.button:after {
position: absolute;
@ -163,6 +164,7 @@
opacity: @disabledOpacity !important;
background-image: none !important;
box-shadow: none !important;
pointer-events: none;
}
/*******************************

5
src/definitions/elements/image.less

@ -140,6 +140,11 @@ img.ui.image {
margin-left: @floatedHorizontalMargin;
}
.ui.floated.images:last-child,
.ui.floated.image:last-child {
margin-bottom: 0em;
}
.ui.centered.images,
.ui.centered.image {

1
src/definitions/elements/label.less

@ -83,6 +83,7 @@ a.ui.label {
/* Icon */
.ui.label .icon {
width: auto;
margin: 0em @iconDistance 0em 0em;
}
/* Removable label */

Loading…
Cancel
Save