Updated Property lookup to reflect new docs (#1577)
available here https://stylus-lang.com/docs/variables.html#property-lookup
This commit is contained in:
parent
be0341938b
commit
1729e1d2a7
17
stylus.md
17
stylus.md
|
@ -227,7 +227,7 @@ div
|
||||||
|
|
||||||
`?=` will only set a variable if it's previously unset.
|
`?=` will only set a variable if it's previously unset.
|
||||||
|
|
||||||
See: [Conditional assignment](http://stylus-lang.com/docs/operators.html#conditional-assignment--)
|
See: [Conditional assignment](https://stylus-lang.com/docs/operators.html#conditional-assignment--)
|
||||||
|
|
||||||
### Property lookup
|
### Property lookup
|
||||||
|
|
||||||
|
@ -235,10 +235,13 @@ See: [Conditional assignment](http://stylus-lang.com/docs/operators.html#conditi
|
||||||
.logo
|
.logo
|
||||||
width: w = 150
|
width: w = 150
|
||||||
margin-left: -(w / 2)
|
margin-left: -(w / 2)
|
||||||
|
// or
|
||||||
|
height: 80px
|
||||||
|
margin-top: -(@height / 2)
|
||||||
```
|
```
|
||||||
{: data-line="2,3"}
|
{: data-line="2,3"}
|
||||||
|
|
||||||
See: [Property lookup](http://stylus-lang.com/docs/variables.html#property-lookup)
|
See: [Property lookup](https://stylus-lang.com/docs/variables.html#property-lookup)
|
||||||
|
|
||||||
### Interpolation
|
### Interpolation
|
||||||
|
|
||||||
|
@ -246,7 +249,7 @@ See: [Property lookup](http://stylus-lang.com/docs/variables.html#property-looku
|
||||||
-{prefix}-border-radius: 2px
|
-{prefix}-border-radius: 2px
|
||||||
```
|
```
|
||||||
|
|
||||||
See: [Interpolation](http://stylus-lang.com/docs/interpolation.html)
|
See: [Interpolation](https://stylus-lang.com/docs/interpolation.html)
|
||||||
|
|
||||||
### Color operators
|
### Color operators
|
||||||
|
|
||||||
|
@ -277,7 +280,7 @@ lookup('light-' + name)
|
||||||
```
|
```
|
||||||
{: data-line="3"}
|
{: data-line="3"}
|
||||||
|
|
||||||
See: [lookup](http://stylus-lang.com/docs/bifs.html#lookupname)
|
See: [lookup](https://stylus-lang.com/docs/bifs.html#lookupname)
|
||||||
|
|
||||||
Advanced features
|
Advanced features
|
||||||
-----------------
|
-----------------
|
||||||
|
@ -303,7 +306,7 @@ Aliases:
|
||||||
| `!=` | `is not` |
|
| `!=` | `is not` |
|
||||||
| `!=` | `isnt` |
|
| `!=` | `isnt` |
|
||||||
|
|
||||||
See: [Conditionals](http://stylus-lang.com/docs/functions.html#conditionals)
|
See: [Conditionals](https://stylus-lang.com/docs/functions.html#conditionals)
|
||||||
|
|
||||||
### For loops
|
### For loops
|
||||||
|
|
||||||
|
@ -326,7 +329,7 @@ if ohnoes is defined
|
||||||
```
|
```
|
||||||
{: data-line="1"}
|
{: data-line="1"}
|
||||||
|
|
||||||
See: [is defined](http://stylus-lang.com/docs/operators.html#variable-definition-is-defined)
|
See: [is defined](https://stylus-lang.com/docs/operators.html#variable-definition-is-defined)
|
||||||
|
|
||||||
### False values
|
### False values
|
||||||
|
|
||||||
|
@ -345,7 +348,7 @@ if val is a 'ident'
|
||||||
if #fff is a 'rgba' // → true
|
if #fff is a 'rgba' // → true
|
||||||
```
|
```
|
||||||
|
|
||||||
See: [Instance check](http://stylus-lang.com/docs/operators.html#instance-check-is-a)
|
See: [Instance check](https://stylus-lang.com/docs/operators.html#instance-check-is-a)
|
||||||
|
|
||||||
Built-in functions
|
Built-in functions
|
||||||
------------------
|
------------------
|
||||||
|
|
Loading…
Reference in New Issue