Update docs
This commit is contained in:
parent
c786c25494
commit
8a3704fbe4
@ -23,6 +23,7 @@ Changed
|
||||
|
||||
- Completion highlighting is now done differently (using QSyntaxHighlither),
|
||||
which should fix some highlighting corner-cases.
|
||||
- The `QtColor` config type now also understands colors like `rgb(...)`.
|
||||
|
||||
v1.5.1 (unreleased)
|
||||
-------------------
|
||||
|
@ -794,7 +794,7 @@ Default: +pass:[black]+
|
||||
=== colors.completion.match.fg
|
||||
Foreground color of the matched text in the completion.
|
||||
|
||||
Type: <<types,QssColor>>
|
||||
Type: <<types,QtColor>>
|
||||
|
||||
Default: +pass:[#ff4444]+
|
||||
|
||||
@ -3530,7 +3530,7 @@ When setting from a string, pass a json-like list, e.g. `["one", "two"]`.
|
||||
A value can be in one of the following formats: * `#RGB`/`#RRGGBB`/`#RRRGGGBBB`/`#RRRRGGGGBBBB` * An SVG color name as specified in http://www.w3.org/TR/SVG/types.html#ColorKeywords[the W3C specification]. * transparent (no color) * `rgb(r, g, b)` / `rgba(r, g, b, a)` (values 0-255 or percentages) * `hsv(h, s, v)` / `hsva(h, s, v, a)` (values 0-255, hue 0-359) * A gradient as explained in http://doc.qt.io/qt-5/stylesheet-reference.html#list-of-property-types[the Qt documentation] under ``Gradient''
|
||||
|QtColor|A color value.
|
||||
|
||||
A value can be in one of the following formats: * `#RGB`/`#RRGGBB`/`#RRRGGGBBB`/`#RRRRGGGGBBBB` * An SVG color name as specified in http://www.w3.org/TR/SVG/types.html#ColorKeywords[the W3C specification]. * transparent (no color)
|
||||
A value can be in one of the following formats: * `#RGB`/`#RRGGBB`/`#RRRGGGBBB`/`#RRRRGGGGBBBB` * An SVG color name as specified in http://www.w3.org/TR/SVG/types.html#ColorKeywords[the W3C specification]. * transparent (no color) * `rgb(r, g, b)` / `rgba(r, g, b, a)` (values 0-255 or percentages) * `hsv(h, s, v)` / `hsva(h, s, v, a)` (values 0-255, hue 0-359)
|
||||
|QtFont|A font family, with optional style/weight/size.
|
||||
|
||||
* Style: `normal`/`italic`/`oblique` * Weight: `normal`, `bold`, `100`..`900` * Size: _number_ `px`/`pt`
|
||||
|
@ -920,6 +920,8 @@ class QtColor(BaseType):
|
||||
* An SVG color name as specified in
|
||||
http://www.w3.org/TR/SVG/types.html#ColorKeywords[the W3C specification].
|
||||
* transparent (no color)
|
||||
* `rgb(r, g, b)` / `rgba(r, g, b, a)` (values 0-255 or percentages)
|
||||
* `hsv(h, s, v)` / `hsva(h, s, v, a)` (values 0-255, hue 0-359)
|
||||
"""
|
||||
|
||||
def _parse_value(self, val):
|
||||
|
Loading…
Reference in New Issue
Block a user