PluginProbe
SureForms – Contact Form Builder, AI Forms, Payment Form, Survey & Quiz / 1.2.0
SureForms – Contact Form Builder, AI Forms, Payment Form, Survey & Quiz v1.2.0
2.12.6 2.12.5 2.12.4 2.12.3 2.12.2 2.12.1 2.12.0 2.11.1 2.11.0 2.10.1 2.10.0 2.9.1 2.9.0 2.8.2 2.8.1 2.7.0 2.7.1 2.8.0 trunk 0.0.10 0.0.11 0.0.12 0.0.13 0.0.2 0.0.3 All 96 releases
sureforms / assets / build / settings.css
settings.css
58 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @keyframes react-loading-skeleton {
2 100% {
3 transform: translateX(100%);
4 }
5 }
6
7 .react-loading-skeleton {
8 --base-color: #ebebeb;
9 --highlight-color: #f5f5f5;
10 --animation-duration: 1.5s;
11 --animation-direction: normal;
12 --pseudo-element-display: block; /* Enable animation */
13
14 background-color: var(--base-color);
15
16 width: 100%;
17 border-radius: 0.25rem;
18 display: inline-flex;
19 line-height: 1;
20
21 position: relative;
22 -webkit-user-select: none;
23 -moz-user-select: none;
24 user-select: none;
25 overflow: hidden;
26 }
27
28 .react-loading-skeleton::after {
29 content: ' ';
30 display: var(--pseudo-element-display);
31 position: absolute;
32 top: 0;
33 left: 0;
34 right: 0;
35 height: 100%;
36 background-repeat: no-repeat;
37 background-image: linear-gradient(
38 90deg,
39 var(--base-color),
40 var(--highlight-color),
41 var(--base-color)
42 );
43 transform: translateX(-100%);
44
45 animation-name: react-loading-skeleton;
46 animation-direction: var(--animation-direction);
47 animation-duration: var(--animation-duration);
48 animation-timing-function: ease-in-out;
49 animation-iteration-count: infinite;
50 }
51
52 @media (prefers-reduced-motion) {
53 .react-loading-skeleton {
54 --pseudo-element-display: none; /* Disable animation */
55 }
56 }
57
58