You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_meetings_list.scss 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. overflow: auto;
  11. width: 100%;
  12. .meetings-list-empty {
  13. text-align: center;
  14. align-items: center;
  15. justify-content: center;
  16. display: flex;
  17. flex-grow: 1;
  18. flex-direction: column;
  19. .description {
  20. color: #2f3237;
  21. font-size: 14px;
  22. line-height: 18px;
  23. margin-bottom: 16px;
  24. max-width: 436px;
  25. }
  26. }
  27. .meetings-list-empty-image {
  28. text-align: center;
  29. margin: 24px 0 20px 0;
  30. }
  31. .meetings-list-empty-button {
  32. align-items: center;
  33. color: #0163FF;
  34. cursor: pointer;
  35. display: flex;
  36. font-size: 14px;
  37. line-height: 18px;
  38. margin: 24px 0 32px 0;
  39. }
  40. .meetings-list-empty-icon {
  41. display: inline-block;
  42. margin-right: 8px;
  43. }
  44. .button {
  45. background: #0074E0;
  46. border-radius: 4px;
  47. color: #FFFFFF;
  48. display: flex;
  49. justify-content: center;
  50. align-items: center;
  51. padding: 8px;
  52. cursor: pointer;
  53. }
  54. .calendar-action-buttons {
  55. .button {
  56. margin: 0px 10px;
  57. }
  58. }
  59. .item {
  60. background: #fff;
  61. box-sizing: border-box;
  62. border-radius: 4px;
  63. display: inline-flex;
  64. margin: 4px 4px 0 4px;
  65. min-height: 60px;
  66. width: calc(100% - 8px);
  67. word-break: break-word;
  68. display: flex;
  69. flex-direction: row;
  70. text-align: left;
  71. &:first-child {
  72. margin-top: 0px;
  73. }
  74. .left-column {
  75. display: flex;
  76. flex-direction: column;
  77. flex-grow: 0;
  78. padding-left: 16px;
  79. padding-top: 13px;
  80. }
  81. .right-column {
  82. display: flex;
  83. flex-direction: column;
  84. flex-grow: 1;
  85. padding-left: 16px;
  86. padding-top: 13px;
  87. position: relative;
  88. }
  89. .title {
  90. font-size: 12px;
  91. font-weight: 600;
  92. line-height: 16px;
  93. padding-bottom: 4px;
  94. }
  95. .subtitle {
  96. color: #5E6D7A;
  97. font-weight: normal;
  98. font-size: 12px;
  99. line-height: 16px;
  100. }
  101. .actions {
  102. display: flex;
  103. align-items: center;
  104. justify-content: center;
  105. flex-grow: 0;
  106. margin-right: 16px;
  107. }
  108. &.with-click-handler {
  109. cursor: pointer;
  110. }
  111. &.with-click-handler:hover,
  112. &.with-click-handler:focus {
  113. background-color: #c7ddff;
  114. }
  115. .add-button {
  116. width: 30px;
  117. height: 30px;
  118. padding: 0px;
  119. }
  120. i {
  121. cursor: inherit;
  122. }
  123. .join-button {
  124. display: none;
  125. }
  126. &:hover .join-button {
  127. display: block
  128. }
  129. }
  130. .delete-meeting {
  131. display: none;
  132. margin-right: 16px;
  133. position: absolute;
  134. &> svg {
  135. fill: #0074e0;
  136. }
  137. }
  138. .item:hover, .item:focus, .item:focus-within {
  139. .delete-meeting {
  140. display: block;
  141. }
  142. }
  143. }