-
Notifications
You must be signed in to change notification settings - Fork 677
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v5, the second time around #455
base: main
Are you sure you want to change the base?
Conversation
Hi, regarding @import (less) '../../node_modules/tachyons/css/tachyons.css'; Btw, if you choose to go the document route I'd like to add one neat trick, is that with this approach we can do rapid prototype and later extract a component library/style guide pretty easily, since CSS selectors can also be used as Less mixins, .i.e: label {
.f6; .b; .db; .mb2;
span {
.normal; .black-60;
}
} I've seen people try doing this in other ways, for example: |
@johnotander put in your PR a I suggest change from: .ws-normal { white-space: normal; }
.nowrap { white-space: nowrap; }
.pre { white-space: pre; } to: .ws-normal { white-space: normal; }
.ws-nowrap { white-space: nowrap; }
.ws-pre { white-space: pre; } |
e4b3307
to
e521bbd
Compare
Amazing work on this @johno 🙌 |
@johno is the new documentation site live anywhere? would love to check it out! |
@lachlanjc not quite yet, but will be in the next few days. In the meantime you can check out this branch and Once we finish up the last few missing docs pages I'll start hosting the beta at https://v5.tachyons.io. Also, if you have any feedback, please feel free to share 💟 |
Note that it seems that there are some places with 'undefined' in 'css/tachyons.css' where less variables are missing or misspelled? |
@klzns agreed but you can usually get away without making it explicit: |
That's a very good question we plan on addressing in depth when we release v5. The motivation is primarily based on the fact that border colors add a lot of bloat for a small amount of general utility in the average project. So we think this will be better handled via an addon and/or Tachyons generator. Especially when employed using the technique @wavebeem mentions, it still allows border color flexibility for a majority of use cases with no added css bloat. |
I just realized that for certain situations you can use |
@johno |
Sure, you're welcome to PR that into this branch, thanks! |
Why drop not small media queries? |
Any update on a release date for v7? :) |
@johno Perhaps |
@johno Is this v7 for the docs? The numbering is confusing. |
Is it possible for someone to publish the v5/v7 docs online again? I've tried to get them working locally but they always error / fall over. Thanks : ) |
Here's an expanded font-size type scale, including all sizes from Tachyons v4 as well as 4rem:
In the class names The largest font sizes 5rem and 6rem have aliases These new font-size classes, named with Additionally, a new class
All the new classes for font-size and font-style have different names from existing Tachyons v4 classes, so they will not conflict with legacy code. PR: #636 |
And an expanded scale for font-weight, including font-weight: normal and adding font-weight: 1000:
These class names are of the format BaseName-LiteralValue, which is the usual pattern in Tachyons for classes with literal values. Also following this pattern is a new class
Similarly, there is a new class
PR: #636 |
Hi all - I just wondering if the Tachyons project has gotten stuck? I'm looking for ways to contribute. |
There’s a closed ticket where mrmrs addresses this issue. I’m on my mobile
at the moment, but you should search the closed tickets.
…On Wed, Apr 22, 2020 at 12:46 AM James Greig ***@***.***> wrote:
Is Tachyons still alive? It feels like v5 has been imminent for years
now... I would love to help but don't have the coding chops. Is there
anything else we can do to assist @johno <https://github.com/johno> @mrmrs
<https://github.com/mrmrs>, eg raising funds or... ?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#455 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAA7USZNNVYKBXLTESPDPU3RN2OFPANCNFSM4ECCSRZQ>
.
|
@j-greig For the current status see: |
Any chance the beta could go public at this URL @johno ? Would be super helpful... thanks! |
@j-greig that comment was from March of 2018, and I think you'll find that mrmrs update back in Oct 2019 summarises the current state of play. Btw - I'd be totally up for contributing to a newly maintained fork that folds in v5. I've been hacking away at a Sass focused version for a while now. I'm down in Dumfries btw |
Yes! Let's do a SASS fork of v5 - we can't very easily teach our new team members to use it unless we have some working docs. |
v5 round two features, not only a monorepo to ease maintenance of all individual modules, but css comment based documentation. This ensures that source css docs always end up in their respective modules, automatically.
changelog
todo
considerations
-s
between 32 and 48 ems. For those who need a different layout between 568 px (iPhone landscape) and 768 px (iPad portrait).