angular-material-calendar.css 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. calendar-md {
  2. display: block;
  3. max-height: 100%;
  4. }
  5. calendar-md .md-toolbar-tools h2 {
  6. overflow-x: hidden;
  7. text-overflow: ellipsis;
  8. white-space: nowrap;
  9. }
  10. calendar-md md-content>md-content {
  11. border: 1px solid rgba(0, 0, 0, 0.12);
  12. }
  13. calendar-md md-content>md-content.agenda>*>* {
  14. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  15. }
  16. calendar-md md-content>md-content.agenda>*>*.disabled {
  17. color: rgba(0, 0, 0, 0.3);
  18. pointer-events: none;
  19. cursor: auto;
  20. }
  21. calendar-md md-content>md-content.agenda>*>* :first-child {
  22. padding: 12px;
  23. width: 200px;
  24. text-align: right;
  25. color: rgba(0, 0, 0, 0.75);
  26. font-weight: 100;
  27. overflow-x: hidden;
  28. text-overflow: ellipsis;
  29. white-space: nowrap;
  30. }
  31. calendar-md md-content>md-content.agenda>*>* :not(:first-child) {
  32. overflow: hidden;
  33. text-overflow: ellipsis;
  34. }
  35. calendar-md md-content>md-content>*>* {
  36. min-width: 48px;
  37. }
  38. calendar-md md-content>md-content.calendar> :first-child {
  39. background: rgba(0, 0, 0, 0.02);
  40. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  41. margin-right: 0;
  42. min-height: 36px;
  43. }
  44. calendar-md md-content>md-content.calendar> :not(:first-child)>* {
  45. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  46. border-right: 1px solid rgba(0, 0, 0, 0.12);
  47. cursor: pointer;
  48. }
  49. calendar-md md-content>md-content.calendar> :not(:first-child)>*:hover {
  50. background: rgba(0, 0, 0, 0.04);
  51. }
  52. calendar-md md-content>md-content.calendar> :not(:first-child)>*.disabled {
  53. color: rgba(0, 0, 0, 0.3);
  54. pointer-events: none;
  55. cursor: auto;
  56. }
  57. calendar-md md-content>md-content.calendar> :not(:first-child)>*.active {
  58. box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
  59. }
  60. calendar-md md-content>md-content.calendar> :not(:first-child)>* :first-child {
  61. padding: 0;
  62. }
  63. calendar-md md-content>md-content.calendar> :not(:first-child)>* :last-child {
  64. overflow: hidden;
  65. text-overflow: ellipsis;
  66. }