File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1
1
.placeholder .placeholder_intensity_subdued {
2
2
opacity : 0.3 ;
3
+ animation : placeholder-loading_subdued 1s linear infinite alternate;
3
4
}
4
5
5
6
.placeholder .placeholder_intensity_normal {
6
7
opacity : 0.6 ;
8
+ animation : placeholder-loading_normal 1s linear infinite alternate;
7
9
}
8
10
9
11
.placeholder .placeholder_intensity_emphasized {
10
12
opacity : 1 ;
13
+ animation : placeholder-loading_emphasized 1s linear infinite alternate;
11
14
}
12
15
13
16
/* -- Placeholder.Text ------------------------------------------------ */
68
71
.placeholder .placeholder_text .placeholder_length_huge {
69
72
--c-length_placeholder_text : var (--c-length_placeholder_text_huge );
70
73
}
74
+
75
+ @keyframes placeholder-loading_subdued {
76
+ 0% {
77
+ opacity : 0.1 ;
78
+ }
79
+ 100% {
80
+ opacity : 0.3 ;
81
+ }
82
+ }
83
+
84
+ @keyframes placeholder-loading_normal {
85
+ 0% {
86
+ opacity : 0.1 ;
87
+ }
88
+ 100% {
89
+ opacity : 0.6 ;
90
+ }
91
+ }
92
+
93
+ @keyframes placeholder-loading_emphasized {
94
+ 0% {
95
+ opacity : 0 ;
96
+ }
97
+ 100% {
98
+ opacity : 1 ;
99
+ }
100
+ }
You can’t perform that action at this time.
0 commit comments