1
0
mirror of https://github.com/Chalarangelo/mini.css.git synced 2025-08-14 09:54:02 +02:00

Core cleanup

This commit is contained in:
Angelos Chalaris
2016-11-10 09:23:23 +02:00
parent 8a9dadcbcd
commit b994290013
2 changed files with 307 additions and 310 deletions

View File

@@ -376,3 +376,8 @@
- *TODO* Update the `package.json` and `bower.json` files according to the new framework version.
- Updated live demo page reference to use the new structure.
## 20161110
- Continued module restructure and cleanup as follows:
- Code cleanup in `core`, indentation change to tabs for consistency, indentation fixes etc.

View File

@@ -1,5 +1,4 @@
// SECTION: Browsers resets and base typography.
//===================================================
// Browsers resets and base typography.
$apply-defaults-to-all: true !default;
@if $apply-defaults-to-all {
html, * {
@@ -26,8 +25,7 @@ body {
background: $back-color;
}
// Correct display for older versions of IE.
// Fix display of some elements in other browsers as well.
// Correct display for older versions of IE. Fix display of some elements in other browsers as well.
article, aside, section, figcaption, figure, main, details, menu {
display: block;
}
@@ -40,8 +38,6 @@ summary {
abbr[title] {
border-bottom: none; // Remove bottom border in Firefox 39-.
text-decoration: underline; // Opinionated style-fix for all browsers.
// This is an artifact, please move along.
// &:hover:after { content: " ("attr(title) ")"; }
}
// Correct display for older versions of IE.
@@ -351,10 +347,7 @@ a{
}
}
}
//===================================================
// SECTION: External files - core
//===================================================
// You can comment out modules you do not want to use.
// External file loading. You can comment out modules you do not want to use.
@import 'grid';
@import 'table';
@import 'form';
@@ -367,4 +360,3 @@ a{
@import 'card';
@import 'tab';
@import 'spinner';
//===================================================