Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

_meetings_list.scss 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. .meetings-list {
  2. font-size: 14px;
  3. color: #253858;
  4. line-height: 20px;
  5. text-align: left;
  6. text-overflow: ellipsis;
  7. display: flex;
  8. flex-direction: column;
  9. position: relative;
  10. width: 100%;
  11. height: 100%;
  12. overflow: auto;
  13. .meetings-list-empty {
  14. text-align: center;
  15. align-items: center;
  16. justify-content: center;
  17. display: flex;
  18. flex-grow: 1;
  19. flex-direction: column;
  20. .description {
  21. font-size: 16px;
  22. padding: 20px;
  23. }
  24. }
  25. .button {
  26. background: #0074E0;
  27. border-radius: 4px;
  28. color: #FFFFFF;
  29. display: flex;
  30. justify-content: center;
  31. align-items: center;
  32. padding: 5px 10px;
  33. cursor: pointer;
  34. }
  35. .calendar-action-buttons {
  36. .button {
  37. margin: 0px 10px;
  38. }
  39. }
  40. .item {
  41. background: rgba(255,255,255,0.50);
  42. box-sizing: border-box;
  43. display: inline-flex;
  44. margin-top: 5px;
  45. min-height: 92px;
  46. width: 100%;
  47. word-break: break-word;
  48. display: flex;
  49. flex-direction: row;
  50. text-align: left;
  51. &:first-child {
  52. margin-top: 0px;
  53. }
  54. .left-column {
  55. display: flex;
  56. flex-direction: column;
  57. width: 140px;
  58. flex-grow: 0;
  59. padding-left: 30px;
  60. padding-top: 25px;
  61. .date {
  62. font-weight: bold;
  63. padding-bottom: 5px;
  64. }
  65. }
  66. .right-column {
  67. display: flex;
  68. flex-direction: column;
  69. flex-grow: 1;
  70. padding-left: 30px;
  71. padding-top: 25px;
  72. .title {
  73. font-size: 16px;
  74. font-weight: bold;
  75. padding-bottom: 5px;
  76. }
  77. }
  78. .actions {
  79. display: flex;
  80. align-items: center;
  81. justify-content: center;
  82. flex-grow: 0;
  83. padding-right: 30px;
  84. }
  85. &.with-click-handler {
  86. cursor: pointer;
  87. }
  88. &.with-click-handler:hover {
  89. background-color: #75A7E7;
  90. }
  91. .add-button {
  92. width: 30px;
  93. height: 30px;
  94. padding: 0px;
  95. }
  96. i {
  97. cursor: inherit;
  98. }
  99. .join-button {
  100. display: none;
  101. }
  102. &:hover .join-button {
  103. display: block
  104. }
  105. }
  106. }