Browse Source

Fix focus color on basic button #2264

pull/2850/head
Jack Lukic 9 years ago
parent
commit
8cfcf568e1
1 changed files with 13 additions and 0 deletions
  1. 13
      src/definitions/elements/button.less

13
src/definitions/elements/button.less

@ -1279,6 +1279,7 @@
.ui.basic.black.button:focus {
background: transparent !important;
box-shadow: 0px 0px 0px @basicColoredBorderSize @blackFocus inset !important;
color: @blackHover !important;
}
.ui.basic.black.buttons .active.button,
.ui.basic.black.active.button {
@ -1417,6 +1418,7 @@
.ui.basic.grey.button:focus {
background: transparent !important;
box-shadow: 0px 0px 0px @basicColoredBorderSize @greyFocus inset !important;
color: @greyHover !important;
}
.ui.basic.grey.buttons .active.button,
.ui.basic.grey.active.button {
@ -1556,6 +1558,7 @@
.ui.basic.brown.button:focus {
background: transparent !important;
box-shadow: 0px 0px 0px @basicColoredBorderSize @brownFocus inset !important;
color: @brownHover !important;
}
.ui.basic.brown.buttons .active.button,
.ui.basic.brown.active.button {
@ -1694,6 +1697,7 @@
.ui.basic.blue.button:focus {
background: transparent !important;
box-shadow: 0px 0px 0px @basicColoredBorderSize @blueFocus inset !important;
color: @blueHover !important;
}
.ui.basic.blue.buttons .active.button,
.ui.basic.blue.active.button {
@ -1833,6 +1837,7 @@
.ui.basic.green.button:focus {
background: transparent !important;
box-shadow: 0px 0px 0px @basicColoredBorderSize @greenFocus inset !important;
color: @greenHover !important;
}
.ui.basic.green.buttons .active.button,
.ui.basic.green.active.button {
@ -1971,6 +1976,7 @@
.ui.basic.orange.button:focus {
background: transparent !important;
box-shadow: 0px 0px 0px @basicColoredBorderSize @orangeFocus inset !important;
color: @orangeHover !important;
}
.ui.basic.orange.buttons .active.button,
.ui.basic.orange.active.button {
@ -2109,6 +2115,7 @@
.ui.basic.pink.button:focus {
background: transparent !important;
box-shadow: 0px 0px 0px @basicColoredBorderSize @pinkFocus inset !important;
color: @pinkHover !important;
}
.ui.basic.pink.buttons .active.button,
.ui.basic.pink.active.button {
@ -2248,6 +2255,7 @@
.ui.basic.violet.button:focus {
background: transparent !important;
box-shadow: 0px 0px 0px @basicColoredBorderSize @violetFocus inset !important;
color: @violetHover !important;
}
.ui.basic.violet.buttons .active.button,
.ui.basic.violet.active.button {
@ -2386,6 +2394,7 @@
.ui.basic.purple.button:focus {
background: transparent !important;
box-shadow: 0px 0px 0px @basicColoredBorderSize @purpleFocus inset !important;
color: @purpleHover !important;
}
.ui.basic.purple.buttons .active.button,
.ui.basic.purple.active.button {
@ -2524,6 +2533,7 @@
.ui.basic.red.button:focus {
background: transparent !important;
box-shadow: 0px 0px 0px @basicColoredBorderSize @redFocus inset !important;
color: @redHover !important;
}
.ui.basic.red.buttons .active.button,
.ui.basic.red.active.button {
@ -2663,6 +2673,7 @@
.ui.basic.teal.button:focus {
background: transparent !important;
box-shadow: 0px 0px 0px @basicColoredBorderSize @tealFocus inset !important;
color: @tealHover !important;
}
.ui.basic.teal.buttons .active.button,
.ui.basic.teal.active.button {
@ -2802,6 +2813,7 @@
.ui.basic.olive.button:focus {
background: transparent !important;
box-shadow: 0px 0px 0px @basicColoredBorderSize @oliveFocus inset !important;
color: @oliveHover !important;
}
.ui.basic.olive.buttons .active.button,
.ui.basic.olive.active.button {
@ -2940,6 +2952,7 @@
.ui.basic.yellow.button:focus {
background: transparent !important;
box-shadow: 0px 0px 0px @basicColoredBorderSize @yellowFocus inset !important;
color: @yellowHover !important;
}
.ui.basic.yellow.buttons .active.button,
.ui.basic.yellow.active.button {

Loading…
Cancel
Save