Browse Source

#2556 Adds back black icons

pull/2596/head
jlukic 9 years ago
parent
commit
4b7a8fe191
2 changed files with 14 additions and 1 deletions
  1. 2
      RELEASE-NOTES.md
  2. 13
      src/definitions/elements/icon.less

2
RELEASE-NOTES.md

@ -9,7 +9,7 @@
- **Popup** - Popup `preserve` setting (which preserves popup in DOM to avoid regenerating on each show/hide) was set to `true` by default causing generated popups to remain in DOM. #1369
- **Input** - Fixed errored input field having incorrect border radius with `labeled input`
- **Divider/Grid** - `vertical divider` no longer has inexplicable right border when stacked on mobile #2558
- **Icon** - `black icon` have been added back as a color option
**Additional Bugs**
- **Form** - URL regexp will now match now works correctly, and matches against non `http://` prefixed urls like `www.google.com`

13
src/definitions/elements/icon.less

@ -362,6 +362,19 @@ i.inverted.circular.grey.icon {
color: @white !important;
}
/* Black */
i.black.icon {
color: @black !important;
}
i.inverted.black.icon {
color: @lightBlack !important;
}
i.inverted.bordeblack.black.icon,
i.inverted.circular.black.icon {
background-color: @black !important;
color: @white !important;
}
/*-------------------
Sizes
--------------------*/

Loading…
Cancel
Save