Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Idered/cssParentSelector

CSS4 parent selector based on jQuery
https://github.com/Idered/cssParentSelector

Last synced: 3 months ago
JSON representation

CSS4 parent selector based on jQuery

Awesome Lists containing this project

README

        

# [DEPRECATED]

# What is cssParentSelector

cssParentSelector is a polyfill based on [jQuery](http://jquery.com/) that allows you to use parent selector in CSS.

## License

Released under MIT and GPL licenses.

## Installation

Just attach this plugin to your code and that's all.

## Usage

parent! target > child:state

### Quick info about parent selector in CSS4

! - determines subject of selector according to [CSS4 reference](http://dev.w3.org/csswg/selectors4/)

E > F - selects an F element, child of E

E! > F - selects an E element, parent of F

### Parent

Any vaild selector is okey, id, class, even like this one: input[type=checkbox]

### Target

This is optional, after we've got PARENT of our CHILD selector, we look for this TARGET element within PARENT.

### Child

Based on this, we select PARENT element.

### State

As for now plugin supports:

* changed, selected
* checked
* focus
* hover
* click
* dblclick
* active

## Sample

```html



Change value and click somewhere

Yay, you've changed value.



Yay, you've checked.


Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.



```

```css
/* Select paragraph parent of input or a*/
p! > input, p! > a { border: 1px solid #ccc; padding: 10px 5px; }

/* Select any parent of input or a*/
*! > input, p! > a { background: #fafafa; }

/* Select any parent with class of input */
*.custom! > input { background: #f5f5f5; }

/* Select any parent with class of input */
#container! > p { background: #eee; }

/* Select any parent of input with class */
*! > input.dotted { border-style: dotted; }
*! > input.dashed { border-style: dashed; }=

/* En empty declaration, just for tests */
*! > p {

}

/* Hide an message box */
.hide-parent { float: right; }
p! > .hide-parent:click { display: none; /* Comment inside declaration */ }=

/* Select any parent of input which value was changed */
p! > input:changed { background: #EEDC94; }

/* Select label within parent of focused text input */
p! label > input[type=text]:focus{ display: block; }

/* Select element with definied class within parent of changed/checked text/checkbox input */
p! .message > input[type=text]:changed,
p! .message > input[type=checkbox]:checked {
display: inline;
}

p! span:first-child> input { display: block; }
p:after! > input {
display: block;
width: 100%;
height: 1px;
background-color: #111;
}
```

## Changelog

* **1.0.9** - *09.09.2012 *
* Added support for images in css bacground property (// in image link was interpreted as comment)
* Minified version

* **1.0.8** - *07.02.2012 *
* Added support for pseudo classes (after, before, first-child, last-child, nth-child(), active and anything that jquery filter function can handle)
* Added !important to all declarations.

* **1.0.7** - *21.01.2012*
* Now before matchig css for definied regex we strip comments
* Empty declarations are omitted
* Better regex
* Optimized code

* **1.0.6** - *18.01.2012*
* Changed structure to the one described in CSS4 reference
* Improved performance