ps-toolkit-ui 1.7.28 → 1.7.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -146,8 +146,6 @@ body{
|
|
|
146
146
|
margin: 0;
|
|
147
147
|
padding: 0;
|
|
148
148
|
color: var(--black);
|
|
149
|
-
font-family: Vazir;
|
|
150
|
-
font-weight: 400;
|
|
151
149
|
font-size: 14px;
|
|
152
150
|
}
|
|
153
151
|
.hr{
|
|
@@ -177,12 +175,12 @@ body{
|
|
|
177
175
|
-moz-box-sizing: border-box;
|
|
178
176
|
box-sizing: border-box;
|
|
179
177
|
scrollbar-width: thin;
|
|
178
|
+
font-family: Vazir;
|
|
179
|
+
font-weight: 400;
|
|
180
180
|
}
|
|
181
181
|
.open-modal{
|
|
182
182
|
overflow: hidden !important;
|
|
183
183
|
}
|
|
184
|
-
.open-modal * {
|
|
185
|
-
}
|
|
186
184
|
.dot-spinner {text-align: center;} .dot-spinner > div {width: 4px;height: 4px;background-color: white;margin-right: 6px;border-radius: 100%;display: inline-block;-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;animation: sk-bouncedelay 1.4s infinite ease-in-out both;} .dot-spinner.large > div {width: 15px;height: 15px;} .dot-spinner.x-large > div {width: 20px;height: 20px;} .dot-spinner.dot-spinner-black > div {background-color: #333;} .dot-spinner.black > div {background-color: #333;} .dot-spinner.md > div {width: 12px;height: 12px;} .dot-spinner .bounce1 {-webkit-animation-delay: -0.32s;animation-delay: -0.32s;} .dot-spinner .bounce2 {-webkit-animation-delay: -0.16s;animation-delay: -0.16s;} @-webkit-keyframes sk-bouncedelay { 0%, 80%, 100% {-webkit-transform: scale(0)} 40% {-webkit-transform: scale(1.0)} } @keyframes sk-bouncedelay { 0%, 80%, 100% {-webkit-transform: scale(0);transform: scale(0);} 40% {-webkit-transform: scale(1.0);transform: scale(1.0);} }
|
|
187
185
|
.loading-box {position: absolute;width: 100%;height: 100%;top: 0;right: 0;overflow: hidden;} .loading-box:after {content:'';top:0;left: 0;transform:translateX(100%);width:100%;height:100%;position: absolute;z-index:1;animation: slide 1s infinite;/* CSS Gradient - complete browser support from http://www.colorzilla.com/gradient-editor/ */background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(128,186,232,0) 99%, rgba(125,185,232,0) 100%); /* FF3.6+ */background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,0.8)), color-stop(99%,rgba(128,186,232,0)), color-stop(100%,rgba(125,185,232,0))); /* Chrome,Safari4+ */background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* Chrome10+,Safari5.1+ */background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* Opera 11.10+ */background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* IE10+ */background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* W3C */filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#007db9e8',GradientType=1 ); /* IE6-9 */} /* animation */ @keyframes slide { 0% {transform:translateX(-100%);} 100% {transform:translateX(100%);} }
|
|
188
186
|
.loading-box-parent{
|