Browse Source

Fix mistaken use of variable

pull/5122/head
Jack Lukic 8 years ago
parent
commit
a3a1763c8d
1 changed files with 1 additions and 2 deletions
  1. 3
      src/definitions/elements/button.less

3
src/definitions/elements/button.less

@ -744,7 +744,6 @@
background: @basicActiveBackground !important;
box-shadow: @basicActiveBoxShadow !important;
color: @basicActiveTextColor;
box-shadow: @selectedBorderColor;
}
.ui.basic.buttons .active.button:hover,
.ui.basic.active.button:hover {
@ -759,7 +758,7 @@
box-shadow: @basicDownBoxShadow inset;
}
.ui.basic.buttons .active.button {
box-shadow: @selectedBorderColor inset;
box-shadow: @basicActiveBoxShadow !important;
}
/* Standard Basic Inverted */

Loading…
Cancel
Save