123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310 |
- /*== layer提示框==*/
- .yvan-msg {
- min-width: 100px;
- background-color: rgba(0, 0, 0, .6);
- color: #fff;
- border: none;
- -webkit-box-shadow: none;
- box-shadow: none;
- margin: 0;
- padding: 0;
- border-radius: 2px;
- position: fixed;
- pointer-events: auto;
- z-index: 99999999999;
- }
- .yvan-msg-content {
- pointer-events: auto;
- color: #fff;
- padding: 12px 25px;
- text-align: center;
- position: relative;
- line-height: 24px;
- word-break: break-all;
- overflow: hidden;
- font-size: 14px;
- overflow-x: hidden;
- overflow-y: auto;
- }
- /*== 动画 ==*/
- .yvan-anim {
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- -webkit-animation-duration: 0.3s;
- animation-duration: 0.3s;
- }
- @-webkit-keyframes yvan-bounceIn {
- 0% {
- opacity: 0;
- -webkit-transform: scale(0.5);
- transform: scale(0.5);
- }
- 100% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- }
- @keyframes yvan-bounceIn {
- 0% {
- opacity: 0;
- -webkit-transform: scale(0.5);
- transform: scale(0.5);
- }
- 100% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- }
- .yvan-anim-00 {
- -webkit-animation-name: yvan-bounceIn;
- animation-name: yvan-bounceIn;
- }
- @-webkit-keyframes yvan-zoomInDown {
- 0% {
- opacity: 0;
- -webkit-transform: scale(0.1) translatey(-2000px);
- transform: scale(0.1) translatey(-2000px);
- -webkit-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- }
- 60% {
- opacity: 1;
- -webkit-transform: scale(0.475) translatey(60px);
- transform: scale(0.475) translatey(60px);
- -webkit-animation-timing-function: ease-out;
- animation-timing-function: ease-out;
- }
- }
- @keyframes yvan-zoomInDown {
- 0% {
- opacity: 0;
- -webkit-transform: scale(0.1) translatey(-2000px);
- transform: scale(0.1) translatey(-2000px);
- -webkit-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- }
- 60% {
- opacity: 1;
- -webkit-transform: scale(0.475) translatey(60px);
- transform: scale(0.475) translatey(60px);
- -webkit-animation-timing-function: ease-out;
- animation-timing-function: ease-out;
- }
- }
- .yvan-anim-01 {
- -webkit-animation-name: yvan-zoomInDown;
- animation-name: yvan-zoomInDown;
- }
- @-webkit-keyframes yvan-fadeInUpBig {
- 0% {
- opacity: 0;
- -webkit-transform: translatey(2000px);
- transform: translatey(2000px);
- }
- 100% {
- opacity: 1;
- -webkit-transform: translatey(0);
- transform: translatey(0);
- }
- }
- @keyframes yvan-fadeInUpBig {
- 0% {
- opacity: 0;
- -webkit-transform: translatey(2000px);
- transform: translatey(2000px);
- }
- 100% {
- opacity: 1;
- -webkit-transform: translatey(0);
- transform: translatey(0);
- }
- }
- .yvan-anim-02 {
- -webkit-animation-name: yvan-fadeInUpBig;
- animation-name: yvan-fadeInUpBig;
- }
- @-webkit-keyframes yvan-zoomInLeft {
- 0% {
- opacity: 0;
- -webkit-transform: scale(0.1) translatex(-2000px);
- transform: scale(0.1) translatex(-2000px);
- -webkit-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- }
- 60% {
- opacity: 1;
- -webkit-transform: scale(0.475) translatex(48px);
- transform: scale(0.475) translatex(48px);
- -webkit-animation-timing-function: ease-out;
- animation-timing-function: ease-out;
- }
- }
- @keyframes yvan-zoomInLeft {
- 0% {
- opacity: 0;
- -webkit-transform: scale(0.1) translatex(-2000px);
- transform: scale(0.1) translatex(-2000px);
- -webkit-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- }
- 60% {
- opacity: 1;
- -webkit-transform: scale(0.475) translatex(48px);
- transform: scale(0.475) translatex(48px);
- -webkit-animation-timing-function: ease-out;
- animation-timing-function: ease-out;
- }
- }
- .yvan-anim-03 {
- -webkit-animation-name: yvan-zoomInLeft;
- animation-name: yvan-zoomInLeft;
- }
- @-webkit-keyframes yvan-rollIn {
- 0% {
- opacity: 0;
- -webkit-transform: translatex(-100%) rotate(-120deg);
- transform: translatex(-100%) rotate(-120deg);
- }
- 100% {
- opacity: 1;
- -webkit-transform: translatex(0) rotate(0);
- transform: translatex(0) rotate(0);
- }
- }
- @keyframes yvan-rollIn {
- 0% {
- opacity: 0;
- -webkit-transform: translatex(-100%) rotate(-120deg);
- transform: translatex(-100%) rotate(-120deg);
- }
- 100% {
- opacity: 1;
- -webkit-transform: translatex(0) rotate(0);
- transform: translatex(0) rotate(0);
- }
- }
- .yvan-anim-04 {
- -webkit-animation-name: yvan-rollIn;
- animation-name: yvan-rollIn;
- }
- @-webkit-keyframes yvan-fadeIn {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
- @keyframes yvan-fadeIn {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
- .yvan-anim-05 {
- -webkit-animation-name: yvan-fadeIn;
- animation-name: yvan-fadeIn;
- }
- @-webkit-keyframes yvan-shake {
- 0%,
- 100% {
- -webkit-transform: translatex(0);
- transform: translatex(0);
- }
- 10%,
- 30%,
- 50%,
- 70%,
- 90% {
- -webkit-transform: translatex(-10px);
- transform: translatex(-10px);
- }
- 20%,
- 40%,
- 60%,
- 80% {
- -webkit-transform: translatex(10px);
- transform: translatex(10px);
- }
- }
- @keyframes yvan-shake {
- 0%,
- 100% {
- -webkit-transform: translatex(0);
- transform: translatex(0);
- }
- 10%,
- 30%,
- 50%,
- 70%,
- 90% {
- -webkit-transform: translatex(-10px);
- transform: translatex(-10px);
- }
- 20%,
- 40%,
- 60%,
- 80% {
- -webkit-transform: translatex(10px);
- transform: translatex(10px);
- }
- }
- .yvan-anim-06 {
- -webkit-animation-name: yvan-shake;
- animation-name: yvan-shake;
- }
- @-webkit-keyframes fadeIn {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
- .x-titlebar.x-container.x-component.x-navigation-bar.x-noborder-trbl.x-paint-monitored.x-dock-item.x-docked-top .x-component.x-button.x-has-text.x-icon-align-left.x-arrow-align-right.x-layout-box-item.x-layout-hbox-item .x-text-el {
- color: #fff;
- color: var(--base-foreground-color);
- }
- .x-messagebox.x-dialog .x-toolbar.x-toolbar-footer .x-button {
- margin-left: 8px;
- margin-right: 8px;
- }
- .x-messagebox.x-dialog .x-toolbar.x-toolbar-footer .x-button:first-child {
- margin-left: 0 !important;
- }
- .x-messagebox.x-dialog .x-toolbar.x-toolbar-footer .x-button:last-child {
- margin-right: 0 !important;
- }
|