DateTimePicker.css 592 B

1234567891011121314151617181920212223242526272829303132333435
  1. .jdp-wrap {
  2. width: 100%;
  3. }
  4. .jdp-wrap > * {
  5. width: 100%;
  6. }
  7. .jdp-wrap input {
  8. direction: ltr;
  9. text-align: left;
  10. unicode-bidi: plaintext;
  11. }
  12. .jdp-dark .jdp-wrap input,
  13. .jdp-dark input {
  14. color: rgba(255, 255, 255, 0.88) !important;
  15. background-color: #23252b !important;
  16. }
  17. .jdp-ultra .jdp-wrap input,
  18. .jdp-ultra input {
  19. color: rgba(255, 255, 255, 0.88) !important;
  20. background-color: #101013 !important;
  21. }
  22. .jdp-dark input::placeholder,
  23. .jdp-ultra input::placeholder {
  24. color: rgba(255, 255, 255, 0.30) !important;
  25. }
  26. .jdp-disabled {
  27. pointer-events: none;
  28. opacity: 0.6;
  29. }