VPicker.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .v-picker.v-sheet {
  2. display: grid;
  3. grid-auto-rows: min-content;
  4. grid-template-areas: "title" "header" "body";
  5. overflow: hidden;
  6. }
  7. .v-picker.v-sheet {
  8. box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
  9. }
  10. .v-picker.v-sheet {
  11. border-radius: 4px;
  12. }
  13. .v-picker.v-sheet.v-picker--with-actions {
  14. grid-template-areas: "title" "header" "body" "actions";
  15. }
  16. .v-picker__body {
  17. grid-area: body;
  18. overflow: hidden;
  19. position: relative;
  20. }
  21. .v-picker__header {
  22. grid-area: header;
  23. }
  24. .v-picker__actions {
  25. grid-area: actions;
  26. padding: 0 12px 12px;
  27. display: flex;
  28. align-items: center;
  29. justify-content: flex-end;
  30. }
  31. .v-picker__actions .v-btn {
  32. min-width: 48px;
  33. }
  34. .v-picker__actions .v-btn:not(:last-child) {
  35. margin-inline-end: 8px;
  36. }
  37. .v-picker--landscape {
  38. grid-template-areas: "title" "header body" "header body";
  39. }
  40. .v-picker--landscape.v-picker--with-actions {
  41. grid-template-areas: "title" "header body" "header actions";
  42. }
  43. .v-picker-title {
  44. text-transform: uppercase;
  45. font-size: 0.75rem;
  46. grid-area: title;
  47. padding-inline: 24px 12px;
  48. padding-top: 16px;
  49. padding-bottom: 16px;
  50. font-weight: 400;
  51. letter-spacing: 0.1666666667em;
  52. }