1
0
mirror of https://github.com/Chalarangelo/mini.css.git synced 2025-07-31 02:50:26 +02:00

Compiled Nord flavor, dealt with a table bug

Recompiled all flavors, updated Nord to work with latest version (dev - 2.1.1), fixed a bug with table that caused errors in the display of horizontal tables.
This commit is contained in:
Angelos Chalaris
2017-04-18 11:21:58 +03:00
parent 1921b43870
commit 14abbdb1f9
5 changed files with 2216 additions and 4 deletions

2206
dist/mini-nord.css vendored Normal file

File diff suppressed because it is too large Load Diff

1
dist/mini-nord.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -977,3 +977,8 @@
- Documented `contextual` module's customization. - Documented `contextual` module's customization.
- Documented `progress` module's customization. - Documented `progress` module's customization.
- Documented customization for `utility` module, finishing developer docs (maybe a proofreading is required, but later). - Documented customization for `utility` module, finishing developer docs (maybe a proofreading is required, but later).
## 20170418
- Added `nord` flavor from PR, updated `table` module to deal with a minor problem that stemmed from a conditional in it.
- Compiled `nord` flavor and recompiled to make sure everything works properly after the changes.

View File

@@ -4,7 +4,7 @@
/* /*
Flavor name: Nord (mini-nord) Flavor name: Nord (mini-nord)
Author: tphecca (https://github.com/tphecca) Author: tphecca (https://github.com/tphecca)
mini.css version: v2.1.0 (Fermion) mini.css version: v2.1.1 (Fermion)
*/ */
// Basic rules for body and typography // Basic rules for body and typography
$fore-color: #2E3440; // Text and general foreground color $fore-color: #2E3440; // Text and general foreground color
@@ -108,6 +108,8 @@ $apply-link-hover-fade: true; // Should the :hover and :focus state
// elements use fade-out instead of a different // elements use fade-out instead of a different
// color (`true`/`false`) [11] // color (`true`/`false`) [11]
//$link-hover-fore-color: #8FBCBB; // Text color for <a> when hovered or focused //$link-hover-fore-color: #8FBCBB; // Text color for <a> when hovered or focused
$figcaption-font-size: 80%; // Font size of <figcaption> elements
$figcaption-fore-color: #424242; // Text color for <figcaption> elements
// Notes: // Notes:
// [1] - The value $base-root-font-size should be in `px` only! This rule is very important, as it will determine the root // [1] - The value $base-root-font-size should be in `px` only! This rule is very important, as it will determine the root
// element's font sizing. // element's font sizing.

View File

@@ -41,9 +41,7 @@ table {
border-top: $table-border-style; border-top: $table-border-style;
} }
td { td {
@if $table-body-back-color != $back-color { background: $table-body-back-color; // Do not put inside condition, causes problems if not present.
background: $table-body-back-color;
}
@if $table-body-fore-color != $fore-color { @if $table-body-fore-color != $fore-color {
color: $table-body-fore-color; color: $table-body-fore-color;
} }