File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
packages/@adobe/spectrum-css-temp/components/barloader Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -107,15 +107,17 @@ governing permissions and limitations under the License.
107
107
.spectrum-BarLoader--indeterminate .spectrum-BarLoader-fill {
108
108
inline-size : var (--spectrum-barloader-large-indeterminate-fill-width );
109
109
position : relative;
110
+ animation-duration : var (--spectrum-barloader-large-indeterminate-duration );
111
+ animation-iteration-count : infinite;
110
112
animation-timing-function : var (--spectrum-barloader-large-indeterminate-animation-ease );
111
113
will-change : transform;
112
- }
113
114
114
- [dir = 'ltr' ] .spectrum-BarLoader--indeterminate .spectrum-BarLoader-fill {
115
- animation : indeterminate-loop-ltr var (--spectrum-barloader-large-indeterminate-duration ) infinite;
116
- }
117
- [dir = 'rtl' ] .spectrum-BarLoader--indeterminate .spectrum-BarLoader-fill {
118
- animation : indeterminate-loop-rtl var (--spectrum-barloader-large-indeterminate-duration ) infinite;
115
+ [dir = 'ltr' ] & {
116
+ animation-name : indeterminate-loop-ltr;
117
+ }
118
+ [dir = 'rtl' ] & {
119
+ animation-name : indeterminate-loop-rtl;
120
+ }
119
121
}
120
122
121
123
@keyframes indeterminate-loop-ltr {
You can’t perform that action at this time.
0 commit comments