Skip to content

Commit

Permalink
Edit doc string
Browse files Browse the repository at this point in the history
  • Loading branch information
HeaTTheatR committed Oct 12, 2022
1 parent ac33f3c commit 635bd7a
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions kivymd/uix/slider/slider.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class MDSlider(ThemableBehavior, Slider):

color = ColorProperty(None)
"""
Color slider.
Color slider in (r, g, b, a) or string format.
.. code-block:: kv
Expand Down Expand Up @@ -84,7 +84,7 @@ class MDSlider(ThemableBehavior, Slider):

hint_bg_color = ColorProperty(None)
"""
Hint rectangle color in (r.g.b.a) format.
Hint rectangle color in (r, g, b, a) or string format.
.. code-block:: kv
Expand All @@ -101,7 +101,7 @@ class MDSlider(ThemableBehavior, Slider):

hint_text_color = ColorProperty(None)
"""
Hint text color in (r.g.b.a) format.
Hint text color in in (r, g, b, a) or string format.
.. code-block:: kv
Expand Down Expand Up @@ -138,7 +138,7 @@ class MDSlider(ThemableBehavior, Slider):

thumb_color_active = ColorProperty(None)
"""
The color of the thumb when the slider is active.
The color in (r, g, b, a) or string format of the thumb when the slider is active.
.. versionadded:: 1.0.0
Expand All @@ -156,7 +156,7 @@ class MDSlider(ThemableBehavior, Slider):

thumb_color_inactive = ColorProperty(None)
"""
The color of the thumb when the slider is inactive.
The color in (r, g, b, a) or string format of the thumb when the slider is inactive.
.. versionadded:: 1.0.0
Expand All @@ -174,7 +174,8 @@ class MDSlider(ThemableBehavior, Slider):

thumb_color_disabled = ColorProperty(None)
"""
The color of the thumb when the slider is in the disabled state.
The color in (r, g, b, a) or string format of the thumb when the slider is
in the disabled state.
.. versionadded:: 1.0.0
Expand All @@ -194,7 +195,7 @@ class MDSlider(ThemableBehavior, Slider):

track_color_active = ColorProperty(None)
"""
The color of the track when the slider is active.
The color in (r, g, b, a) or string format of the track when the slider is active.
.. versionadded:: 1.0.0
Expand All @@ -212,7 +213,7 @@ class MDSlider(ThemableBehavior, Slider):

track_color_inactive = ColorProperty(None)
"""
The color of the track when the slider is inactive.
The color in (r, g, b, a) or string format of the track when the slider is inactive.
.. versionadded:: 1.0.0
Expand All @@ -230,7 +231,8 @@ class MDSlider(ThemableBehavior, Slider):

track_color_disabled = ColorProperty(None)
"""
The color of the track when the slider is in the disabled state.
The color in (r, g, b, a) or string format of the track when the slider is
in the disabled state.
.. versionadded:: 1.0.0
Expand Down

0 comments on commit 635bd7a

Please sign in to comment.