22 * Copyright (c) Microsoft Corporation. All rights reserved.
33 * Licensed under the MIT License. See License.txt in the project root for license information.
44 *--------------------------------------------------------------------------------------------*/
5- .progress-container {
5+ .monaco- progress-container {
66 width : 100% ;
77 height : 5px ;
88}
99
10- .progress-container .progress-bit {
10+ .monaco- progress-container .progress-bit {
1111 width : 2% ;
1212 height : 5px ;
1313 position : absolute;
1414 left : 0 ;
1515 display : none;
1616}
1717
18- .progress-container .active .progress-bit {
18+ .monaco- progress-container .active .progress-bit {
1919 display : inherit;
2020}
2121
22- .progress-container .discrete .progress-bit {
22+ .monaco- progress-container .discrete .progress-bit {
2323 left : 0 ;
2424 transition : width 100ms linear;
2525 -webkit-transition : width 100ms linear;
2828 -ms-transition : width 100ms linear;
2929}
3030
31- .progress-container .discrete .done .progress-bit {
31+ .monaco- progress-container .discrete .done .progress-bit {
3232 width : 100% ;
3333}
3434
35- .progress-container .infinite .progress-bit {
35+ .monaco- progress-container .infinite .progress-bit {
3636 animation-name : progress;
3737 animation-duration : 4s ;
3838 animation-iteration-count : infinite;
5454@keyframes progress { from { left : 0 ; width : 2% ; } 50% { left : 50% ; width : 5% ; } to { left : 98% ; width : 2% ; } }
5555@-ms-keyframes progress { from { left : 0 ; width : 2% ; } 50% { left : 50% ; width : 5% ; } to { left : 98% ; width : 2% ; } }
5656@-webkit-keyframes progress { from { left : 0 ; width : 2% ; } 50% { left : 50% ; width : 5% ; } to { left : 98% ; width : 2% ; } }
57- @-moz-keyframes progress { from { left : 0 ; width : 2% ; } 50% { left : 50% ; width : 5% ; } to { left : 98% ; width : 2% ; } }
58-
59-
57+ @-moz-keyframes progress { from { left : 0 ; width : 2% ; } 50% { left : 50% ; width : 5% ; } to { left : 98% ; width : 2% ; } }
0 commit comments