jameskolce
released this
Changelog
- Update version numbers in the CSS files.
- [fix: KolceBackyard/atgrid.css#25] Add overflow:auto to container (db01940)
Assets
2
Changelog
- [Fix #242] Fix white-space in pre>code blocks (03bd34e)
- [Fix #243] Add column wrapping (fcd0235)
- Fix root font size bug by specifying units (Thanks to @craigmichaelmartin) (923cd22)
- [fix: #250] Avoid top margin for columns (06eb6dd)
- [fix: #248] Unstyle lists inside navs (3e2b505)
- [fix: #249] Add note about browser compatibility (d5e71e5)
Assets
2
Changelog
Sass
- [fix: #241] Split globals file [https://github.com/ConciseCSS/concise.css/commit/c4120ee83f9624fb1483084925c64de2e205efbf]
CSS
No CSS changes
Assets
2
Changelog
After seven months of work, Concise v4 is now available to everybody. Quite a lot of things have happened since then. Here is a small overview:
- The current development of Concise CSS is being handled by me (@jameskolce).
- The framework has been almost completely rewritten, but the basic principles of being Concise are kept.
- Now add-ons are completely independent of each other. Previously, they were included with the core, now they need to be installed separately with NPM or using the CDN.
- A new add-on called Concise Utils has been added, with a lot of helper classes to improve the development workflow or to add context-dependant styles.
- Concise UI is now written using the RSCSS guidelines.
- The compilation of the source code is now done using the Concise CLI.
- The compiler still uses Sass, but also includes some PostCSS plugins that will help with the development of websites.
- A new
lhunit is added to manage vertical rhythm. Using PostCSS-LH - Custom media queries are available, so you can write things like
@media (--small). - Styles are automatically prefixed to work with older browsers, using Autoprefixer.
- All the font sizes are now handled using the typeScale() function.
You can check the complete list of changes here: v3.4.0...master
And the new docs are already available at http://concisecss.com
Assets
2
keenanpayne
released this
SASS
- [ebf60b9] A new mixin has been added called
columnOffsetthat allows you to easy move columns in your design. - [e0fa570] We have added a new helper class
.nonresponsivethat when applied to the<body>tag, will keep elements and components from resizing on different window sizes. There is also a$non-responsivevariable that can be turned on/off that will remove the unnecessary non-responsive CSS if you do not need it. - [c89aa3e] We have updated how margin is applied on
<p>tags. Now, every<p>that is not the last child will have a bottom margin. - [eaeb244] Grid examples have been added to the
test.htmlfile. - [cab7e86] Examples have been added for how grid column offsets can be used.
- [60c6948] The card with image has been fixed inside of
test.html
Components
Modals
- [05f00da] There was an issue with windows with small heights and modal visibility which has been fixed.
Assets
5
keenanpayne
released this
SASS
- Added styling for
<sub>,<sup>,<samp>, and<s>tags (4be43c2) - Added styles for table footers (d34ee94)
- James Kolce fixed the grid utility for full-width columns (73e1f56)
- [ref: #91] Fix style consistency for
input type="submit"(83d68e6) - [ref: #88] Add proper RTL and LTR language support (8ff20ba)
- A utility has been added so you can now close modal windows via the background, and not just use the "X". (3b84d0e)
Assets
5
keenanpayne
released this
This is a pretty small update with just a few things fixed from v3.1.0.
Concise Package
- All of our Node.js dependencies have been updated so they work with the latest version (9f8bce3)
- We've made a few updates to our contributing guidelines (6f47ad7)
- [ref: #87] We have added the
composer.jsonfile back per a request from a Concise user. (4094dc0)
SASS
- Fixed a problem with the spacing variables, by moving the
$base-unitvariable (5352553)
Assets
5
keenanpayne
released this
SASS
- [ref: #76] We found that we were hard-coding font-colors and spacing in certain places of the framework, as opposed to using variables. We have removed these colors, and abstracted them to the
_globals.scssfile, as well as removed the spacing (which was happening on<p>elements inside of modals). - [ref: #81] We have removed the declared
line-heightfor list items.
Website
- [ref: #75] We removed the dedicated add-ons directory for the v2.x.x version of Concise and have included the files inside of our main website repository.
- [ref: #77] The custom scrollbars on the website, which were causing unexpected behavior, have been removed.
- [ref: #78] We fixed an example that was broken on the website for fluid images.