comparison core/modules/system/css/components/progress.module.css @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
comparison
equal deleted inserted replaced
4:a9cd425dd02b 5:12f9dff5fda9
7 7
8 .progress { 8 .progress {
9 position: relative; 9 position: relative;
10 } 10 }
11 .progress__track { 11 .progress__track {
12 min-width: 100px;
13 max-width: 100%;
14 height: 16px;
15 margin-top: 5px;
16 border: 1px solid;
12 background-color: #fff; 17 background-color: #fff;
13 border: 1px solid;
14 margin-top: 5px;
15 max-width: 100%;
16 min-width: 100px;
17 height: 16px;
18 } 18 }
19 .progress__bar { 19 .progress__bar {
20 background-color: #000;
21 height: 16px;
22 width: 3%; 20 width: 3%;
23 min-width: 3%; 21 min-width: 3%;
24 max-width: 100%; 22 max-width: 100%;
23 height: 16px;
24 background-color: #000;
25 } 25 }
26 .progress__description, 26 .progress__description,
27 .progress__percentage { 27 .progress__percentage {
28 overflow: hidden;
29 margin-top: 0.2em;
28 color: #555; 30 color: #555;
29 overflow: hidden;
30 font-size: 0.875em; 31 font-size: 0.875em;
31 margin-top: 0.2em;
32 } 32 }
33 .progress__description { 33 .progress__description {
34 float: left; /* LTR */ 34 float: left; /* LTR */
35 } 35 }
36 [dir="rtl"] .progress__description { 36 [dir="rtl"] .progress__description {