https://htmx.org logo
Join Discord
Powered by
# missing_dot_css
  • g

    gorgeous-airport-54386

    09/28/2022, 9:43 AM
    I'll throw together an implementation for the demo pages at some point but right now they're mostly there for me to do regression tests
  • p

    powerful-evening-99811

    09/28/2022, 9:51 AM
    @gorgeous-airport-54386 i found it here: https://github.com/bigskysoftware/missing/blob/master/www/demos/tabs.html
  • g

    gorgeous-airport-54386

    09/28/2022, 9:51 AM
    I removed _hyperscript from the site to reduce bandwidth use since i was only using it for that demo
  • g

    gorgeous-airport-54386

    09/28/2022, 9:52 AM
    I'll rewrite that in vanilla JS or use an existing tabs library
  • g

    gorgeous-airport-54386

    10/17/2022, 2:04 PM
    i've written a tabs component in ~vanilla JS, and i'm kind of proud of it
  • g

    gorgeous-airport-54386

    10/17/2022, 2:30 PM
    https://github.com/bigskysoftware/missing/blob/dev/www/js/tabs.js
  • g

    gorgeous-airport-54386

    10/17/2022, 2:31 PM
    might release a "missing.js" at some point, providing the behavior that's missing from our aria components
  • g

    gorgeous-airport-54386

    10/21/2022, 3:14 PM
    > - The source code of missing.css was completely reorganized! The source files > now line up with the pages of the documentation to make it easier to find > code. > - Speaking of the docs, they have also received a subtle reorganization. > - The development server will now build changes to the CSS way faster. a preview of v0.4.0
  • g

    gorgeous-airport-54386

    10/23/2022, 4:12 AM
    @User what do you think? what's missing (:]) from the list?
  • m

    mysterious-toddler-20573

    10/23/2022, 11:21 AM
    hamburger nav component 🦆
  • e

    early-camera-41285

    10/23/2022, 8:32 PM
    I really like what you're all doing with this project. I've been stuck in Bootstrap land looking for a way out. For as heavy as it is, I do too much overriding and custom styling. But I'm nervous about Tailwind since I want opinionated accessibility. missing.css seems just right. Light enough that I won't feel bad supplementing with vanilla css.
  • m

    mysterious-toddler-20573

    10/24/2022, 1:58 AM
    🙂 it's a tough balance, but I'm very happy with where things are going, thanks entirely to Deniz! Glad the idea gels with what you want!
  • g

    gorgeous-airport-54386

    10/24/2022, 2:03 AM
    I can't believe you'd erase the guy that added a
    LICENSE
    like this
  • m

    miniature-lizard-24702

    10/24/2022, 10:47 AM
    Tailwind UI wasn't enough?
  • m

    miniature-lizard-24702

    10/24/2022, 10:48 AM
    tbh I would like to see an accessibility library using Stimulus or some other attribute based js
  • m

    miniature-lizard-24702

    10/24/2022, 10:49 AM
    that adds that functionality to existing html.
  • m

    miniature-lizard-24702

    10/24/2022, 10:50 AM
    If I dont find one myself I intend to write one eventually when I get around to it.
  • m

    miniature-lizard-24702

    10/24/2022, 10:50 AM
    but I know near nothing about accessibility so it's going to take alot of research
  • m

    miniature-lizard-24702

    10/24/2022, 10:50 AM
    doesn't help that my laptop can't run Orca for some reason
  • m

    miniature-lizard-24702

    10/24/2022, 10:51 AM
    to test the page
  • j

    jolly-kite-167

    10/24/2022, 5:54 PM
    I only did that to try to get missing.css into that other "try out CSS libraries" project, the maintainer of which hasn't gotten to yet. Erasure is just fine.
  • m

    mysterious-toddler-20573

    10/24/2022, 5:58 PM
    🙂
  • g

    gorgeous-airport-54386

    10/25/2022, 7:15 AM
    watch video
  • g

    gorgeous-airport-54386

    10/25/2022, 7:15 AM
    i don't care if it's 1am
  • g

    gorgeous-airport-54386

    10/25/2022, 8:18 AM
    @User possible css grid syntax:
    Copy code
    html
        <div class="grid c5">
            <div class="[1 1]">Sidebar  </div>
            <div class="[2 5]">Main     </div>
            <div class="[5 6]">Auxiliary</div>
        </div>
  • g

    gorgeous-airport-54386

    10/25/2022, 8:19 AM
    this creates the attached layout:
  • g

    gorgeous-airport-54386

    10/25/2022, 8:20 AM
    (don't know what to do for columns yet)
  • s

    swift-translator-13366

    10/25/2022, 8:55 AM
    1) Shouldn't
    [5 6]
    be
    [5 5]
    in the example? Or conversely,
    [1 1]
    be
    [0 1]
    ? 2) Could
    c5
    be
    5col
    instead? Or does the "c" mean something different there? 3) Could a more intuitive naming be used, based on the columns rather than grid lines? E.g.
    [1 1]
    could be shortened as
    col-1
    , and
    [2 5]
    could be
    cols-2-4
  • g

    gorgeous-airport-54386

    10/25/2022, 11:10 AM
    1) i'm looking into how grid lines work 2) sure, doesn't matter 3)
    cols-2-4
    would need 144 classes for 12 columns, as opposed to 24. this is important as i want to write things by hand as much as possible
  • g

    gorgeous-airport-54386

    10/25/2022, 11:11 AM
    unrelated: hey did you all know that it's impossible to swap two css variables?
1...313233...44Latest