Sha256: fa2b600b7fc3b8e206645ac31616bd8e12bfd76a9319f10976c8a672c32980a9
Contents?: true
Size: 893 Bytes
Versions: 6
Compression:
Stored size: 893 Bytes
Contents
paper-progress =================== The progress bars are for situations where the percentage completed can be determined. They give users a quick sense of how much longer an operation will take. Example: ```html <paper-progress value="10"></paper-progress> ``` There is also a secondary progress which is useful for displaying intermediate progress, such as the buffer level during a streaming playback progress bar. Example: ```html <paper-progress value="10" secondaryProgress="30"></paper-progress> ``` Styling progress bar: To change the active progress bar color: ```css paper-progress { --paper-progress-active-color: #e91e63; } ``` To change the secondary progress bar color: ```css paper-progress { --paper-progress-secondary-color: #f8bbd0; } ``` To change the progress bar background color: ```css paper-progress { --paper-progress-container-color: #64ffda; } ```
Version data entries
6 entries across 6 versions & 2 rubygems