Project

dashy

0.0
No commit activity in last 3 years
No release in over 3 years
Dashy provides...
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.4
>= 0

Runtime

~> 3.3
>= 0
 Project Readme

Dashy

Selector combinators and other helpers for Sass...

This is going to take a while to document, so in the meantime, here's how Dashy looks in the wild:

#{ select-table-groups-rows-cells('.vertically-striped', '*', select-odd-siblings(100)) }
{
    background-color:gray;
}

#{ select-table-groups-rows-cells('.vertically-ruled', '*', '* + *') }
{
    border-left:1px solid black;
}

#{ select-table-groups-rows-cells('.lightly-vertically-ruled', '*', '* + *') }
{
    border-left:1px solid gray;
}

#{ select-table-groups-rows-cells('.horizontally-striped', select-odd-siblings(100)) }
{
    background-color:gray;
}

#{ select-table-groups-rows-cells('.horizontally-ruled', '* + *') }
{
    border-top:1px solid black;
}

#{ select-table-groups-rows-cells('.lightly-horizontally-ruled', '* + *') }
{
    border-top:1px solid gray;
}