Browse Source

Fix bookish/chubby theme font size variables

pull/2907/head
Jack Lukic 9 years ago
parent
commit
f063d6504e
3 changed files with 12 additions and 11 deletions
  1. 3
      RELEASE-NOTES.md
  2. 10
      src/themes/bookish/elements/header.variables
  3. 10
      src/themes/chubby/elements/header.variables

3
RELEASE-NOTES.md

@ -102,13 +102,14 @@
- **Dropdown** - When `useLabels: false` placeholder text will now show up when 0 items selected, instead of the text "0 items selected" - **Dropdown** - When `useLabels: false` placeholder text will now show up when 0 items selected, instead of the text "0 items selected"
- **Dropdown/Tab** - Fixed an instance where `metadata` was not referencing settings metadata value - **Dropdown/Tab** - Fixed an instance where `metadata` was not referencing settings metadata value
- **Form Validation** - Fixed issue with `get value(s)` where unchecked checkboxes would not correctly retrieve values - **Form Validation** - Fixed issue with `get value(s)` where unchecked checkboxes would not correctly retrieve values
- **Input** `action input` and `labeled input` now have focused border on inner edge with label/button
- **Form** - Dropdown in `inline field` now use auto width instead of 100% - **Form** - Dropdown in `inline field` now use auto width instead of 100%
- **Grid / Container** - `ui relaxed grid container` and `ui very relaxed grid container` will now all render at same container width - **Grid / Container** - `ui relaxed grid container` and `ui very relaxed grid container` will now all render at same container width
- **Grid** - Fixed `stackable celled grid` having doubled border width between rows - **Grid** - Fixed `stackable celled grid` having doubled border width between rows
- **Header** - Fixed issue with em sizing of `chubby` and `bookish` header themes appearing too large
- **Icons** - Fixed issue where `active icon` or `emphasized icon` would not adjust opacity inside menus - **Icons** - Fixed issue where `active icon` or `emphasized icon` would not adjust opacity inside menus
- **Input** - `labeled input` now keeps border on label edge so that focus color appears correctly - **Input** - `labeled input` now keeps border on label edge so that focus color appears correctly
- **Input** - Input now will reset `font-weight` and `font-style` if set on parent; - **Input** - Input now will reset `font-weight` and `font-style` if set on parent;
- **Input** `action input` and `labeled input` now have focused border on inner edge with label/button
- **Label** - `pointint label` now rounds to exact pixel em value, should align correctly in more cases - **Label** - `pointint label` now rounds to exact pixel em value, should align correctly in more cases
- **Menu** - `@pressedItemColor` has been renamed to `@pressedItemTextColor` to match naming conventions of other variables - **Menu** - `@pressedItemColor` has been renamed to `@pressedItemTextColor` to match naming conventions of other variables
- **Menu** - Added `flex: 0 0 auto` to menu item to make sure menu do not collapse text content to reduce space - **Menu** - Added `flex: 0 0 auto` to menu item to make sure menu do not collapse text content to reduce space

10
src/themes/bookish/elements/header.variables

@ -30,8 +30,8 @@
@h5: 0.9rem; @h5: 0.9rem;
/* Sizing */ /* Sizing */
@huge: 1.75em;
@large: 1.33em;
@medium: 1.33em;
@small: 1em;
@tiny: 0.9em;
@hugeFontSize: 1.75em;
@largeFontSize: 1.33em;
@mediumFontSize: 1.33em;
@smallFontSize: 1em;
@tinyFontSize: 0.9em;

10
src/themes/chubby/elements/header.variables

@ -14,8 +14,8 @@
@h5: 0.8rem; @h5: 0.8rem;
/* Sizing */ /* Sizing */
@huge: 1.33em;
@large: 1.2em;
@medium: 1em;
@small: 0.9em;
@tiny: 0.8em;
@hugeFontSize: 1.33em;
@largeFontSize: 1.2em;
@mediumFontSize: 1em;
@smallFontSize: 0.9em;
@tinyFontSize: 0.8em;
Loading…
Cancel
Save