|
373 | 373 | .tox.tox-silver-sink.tox-tinymce-aux {
|
374 | 374 | z-index: 99999;
|
375 | 375 | }
|
376 |
| -} |
377 | 376 |
|
378 |
| -/* -------------------------------- new css end -------------------------------- */ |
| 377 | + .stage::after { |
| 378 | + content: ''; |
| 379 | + position: absolute; |
| 380 | + top: 50%; |
| 381 | + right: -10px; |
| 382 | + width: 24px; |
| 383 | + height: 24px; |
| 384 | + z-index: 1; |
| 385 | + border-radius: 0 0 0 25px; |
| 386 | + transform: translateY(-50%) rotate(45deg); |
| 387 | + border-right: 4px solid #f3f4f6; |
| 388 | + border-top: 4px solid #f3f4f6; |
| 389 | + } |
| 390 | + |
| 391 | + .dark .stage::after { |
| 392 | + content: ''; |
| 393 | + position: absolute; |
| 394 | + top: 50%; |
| 395 | + right: -10px; |
| 396 | + width: 24px; |
| 397 | + height: 24px; |
| 398 | + z-index: 1; |
| 399 | + border-radius: 0 0 0 25px; |
| 400 | + transform: translateY(-50%) rotate(45deg); |
| 401 | + border-right: 4px solid #030712; |
| 402 | + border-top: 4px solid #030712; |
| 403 | + } |
| 404 | + |
| 405 | + .shimmer { |
| 406 | + animation-duration: 2.2s; |
| 407 | + animation-fill-mode: forwards; |
| 408 | + animation-iteration-count: infinite; |
| 409 | + animation-name: skeleton; |
| 410 | + animation-timing-function: linear; |
| 411 | + background: linear-gradient( |
| 412 | + to right, |
| 413 | + #f6f6f6 8%, |
| 414 | + #f0f0f0 18%, |
| 415 | + #f6f6f6 33% |
| 416 | + ); |
| 417 | + background-size: 1250px 100%; |
| 418 | + } |
| 419 | + |
| 420 | + .light-shimmer-bg { |
| 421 | + background: linear-gradient( |
| 422 | + to right, |
| 423 | + #fafafa 8%, |
| 424 | + #f5f5f5 18%, |
| 425 | + #fafafa 33% |
| 426 | + ); |
| 427 | + background-size: 1250px 100%; |
| 428 | + } |
| 429 | + |
| 430 | + .dark .shimmer { |
| 431 | + background: linear-gradient( |
| 432 | + to right, |
| 433 | + #1f2937 8%, |
| 434 | + #1a2232 18%, |
| 435 | + #1f2937 33% |
| 436 | + ); |
| 437 | + } |
| 438 | + |
| 439 | + .primary-button { |
| 440 | + @apply bg-brandColor border border-brandColor cursor-pointer flex focus:opacity-[0.9] font-semibold gap-x-1 hover:opacity-[0.9] items-center place-content-center px-3 py-1.5 rounded-md text-gray-50 transition-all; |
| 441 | + } |
| 442 | + |
| 443 | + .secondary-button { |
| 444 | + @apply flex cursor-pointer place-content-center items-center gap-x-1 whitespace-nowrap rounded-md border-2 border-brandColor bg-white px-3 py-1.5 font-semibold text-brandColor transition-all hover:bg-[#eff6ff61] focus:bg-[#eff6ff61] dark:border-gray-400 dark:bg-gray-800 dark:text-white dark:hover:opacity-80; |
| 445 | + } |
| 446 | + |
| 447 | + .transparent-button { |
| 448 | + @apply flex cursor-pointer appearance-none place-content-center items-center gap-x-1 whitespace-nowrap rounded-md border-2 border-transparent px-3 py-1.5 font-semibold text-gray-600 transition-all marker:shadow hover:bg-gray-100 focus:bg-gray-100 dark:hover:bg-gray-950; |
| 449 | + } |
| 450 | + |
| 451 | + /* -------------------------------- old css -------------------------------- */ |
379 | 452 |
|
380 |
| -@layer components { |
381 | 453 | ::-webkit-scrollbar {
|
382 | 454 | width: 12px;
|
383 | 455 | }
|
|
437 | 509 | @apply outline-none;
|
438 | 510 | }
|
439 | 511 |
|
440 |
| - .primary-button { |
441 |
| - @apply bg-brandColor border border-brandColor cursor-pointer flex focus:opacity-[0.9] font-semibold gap-x-1 hover:opacity-[0.9] items-center place-content-center px-3 py-1.5 rounded-md text-gray-50 transition-all; |
442 |
| - } |
443 |
| - |
444 |
| - .secondary-button { |
445 |
| - @apply flex cursor-pointer place-content-center items-center gap-x-1 whitespace-nowrap rounded-md border-2 border-brandColor bg-white px-3 py-1.5 font-semibold text-brandColor transition-all hover:bg-[#eff6ff61] focus:bg-[#eff6ff61] dark:border-gray-400 dark:bg-gray-800 dark:text-white dark:hover:opacity-80; |
446 |
| - } |
447 |
| - |
448 |
| - .transparent-button { |
449 |
| - @apply flex cursor-pointer appearance-none place-content-center items-center gap-x-1 whitespace-nowrap rounded-md border-2 border-transparent px-3 py-1.5 font-semibold text-gray-600 transition-all marker:shadow hover:bg-gray-100 focus:bg-gray-100 dark:hover:bg-gray-950; |
450 |
| - } |
451 |
| - |
452 | 512 | .journal-scroll::-webkit-scrollbar {
|
453 | 513 | width: 14px;
|
454 | 514 | cursor: pointer;
|
|
479 | 539 | background-position-x: calc(100% - 10px);
|
480 | 540 | background-position-y: 50%;
|
481 | 541 | }
|
| 542 | + |
482 | 543 | .dark .custom-select{
|
483 | 544 | background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
|
484 | 545 | }
|
|
487 | 548 | background-position-x: calc(100% - (100% - 10px));
|
488 | 549 | }
|
489 | 550 |
|
490 |
| - .label-pending, |
491 |
| - .label-processing, |
492 |
| - .label-closed, |
493 |
| - .label-canceled, |
494 |
| - .label-info, |
495 |
| - .label-fraud, |
496 |
| - .label-pending_payment, |
497 |
| - .label-completed, |
498 |
| - /* .label-active { |
499 |
| - @apply text-[12px] text-white font-semibold py-px px-1.5 max-w-max rounded-md; |
500 |
| - } */ |
501 |
| - |
502 |
| - .label-pending, |
503 |
| - .label-pending_payment { |
504 |
| - @apply bg-yellow-500; |
505 |
| - } |
506 |
| - |
507 |
| - .label-processing{ |
508 |
| - @apply bg-cyan-600; |
509 |
| - } |
510 |
| - |
511 |
| - /* .label-completed, |
512 |
| - .label-active { |
513 |
| - @apply bg-emerald-200; |
514 |
| - } */ |
515 |
| - |
516 |
| - .label-closed { |
517 |
| - @apply bg-indigo-600; |
518 |
| - } |
519 |
| - |
520 |
| - .label-canceled, |
521 |
| - .label-fraud { |
522 |
| - @apply bg-rose-600; |
523 |
| - } |
524 |
| - |
525 |
| - .label-info { |
526 |
| - @apply bg-slate-400; |
527 |
| - } |
528 |
| - |
529 |
| - /* status */ |
530 |
| - .status-enable { |
531 |
| - @apply text-green-600; |
532 |
| - } |
533 |
| - |
534 |
| - .status-disable { |
535 |
| - @apply text-red-600; |
536 |
| - } |
537 |
| - |
538 |
| - .icon-star-fill:before { |
539 |
| - content: "\e938"; |
540 |
| - color: #ffb600; |
541 |
| - } |
542 |
| - |
543 |
| - .shimmer { |
544 |
| - animation-duration: 2.2s; |
545 |
| - animation-fill-mode: forwards; |
546 |
| - animation-iteration-count: infinite; |
547 |
| - animation-name: skeleton; |
548 |
| - animation-timing-function: linear; |
549 |
| - background: linear-gradient( |
550 |
| - to right, |
551 |
| - #f6f6f6 8%, |
552 |
| - #f0f0f0 18%, |
553 |
| - #f6f6f6 33% |
554 |
| - ); |
555 |
| - background-size: 1250px 100%; |
556 |
| - } |
557 |
| - |
558 |
| - .light-shimmer-bg { |
559 |
| - background: linear-gradient( |
560 |
| - to right, |
561 |
| - #fafafa 8%, |
562 |
| - #f5f5f5 18%, |
563 |
| - #fafafa 33% |
564 |
| - ); |
565 |
| - background-size: 1250px 100%; |
566 |
| - } |
567 |
| - |
568 |
| - .dark .shimmer { |
569 |
| - background: linear-gradient( |
570 |
| - to right, |
571 |
| - #1f2937 8%, |
572 |
| - #1a2232 18%, |
573 |
| - #1f2937 33% |
574 |
| - ); |
575 |
| - } |
576 |
| - |
577 | 551 | .draggable-ghost {
|
578 | 552 | @apply border border-dashed !border-gray-300;
|
579 | 553 | }
|
|
592 | 566 | @apply content-['*'];
|
593 | 567 | }
|
594 | 568 |
|
595 |
| - .CodeMirror { |
596 |
| - @apply !h-[calc(100vh-367px)]; |
597 |
| - } |
598 |
| - |
599 |
| - .stage::after { |
600 |
| - content: ''; |
601 |
| - position: absolute; |
602 |
| - top: 50%; |
603 |
| - right: -10px; |
604 |
| - width: 24px; |
605 |
| - height: 24px; |
606 |
| - z-index: 1; |
607 |
| - border-radius: 0 0 0 25px; |
608 |
| - transform: translateY(-50%) rotate(45deg); |
609 |
| - border-right: 4px solid #f3f4f6; |
610 |
| - border-top: 4px solid #f3f4f6; |
611 |
| - } |
612 |
| - |
613 |
| - .dark .stage::after { |
614 |
| - content: ''; |
615 |
| - position: absolute; |
616 |
| - top: 50%; |
617 |
| - right: -10px; |
618 |
| - width: 24px; |
619 |
| - height: 24px; |
620 |
| - z-index: 1; |
621 |
| - border-radius: 0 0 0 25px; |
622 |
| - transform: translateY(-50%) rotate(45deg); |
623 |
| - border-right: 4px solid #030712; |
624 |
| - border-top: 4px solid #030712; |
625 |
| - } |
| 569 | + |
626 | 570 | }
|
627 | 571 |
|
628 | 572 | .tox .tox-toolbar__group:last-child button {
|
|
0 commit comments