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 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. .item {
  36. background: rgba(255,255,255,0.50);
  37. box-sizing: border-box;
  38. display: inline-flex;
  39. margin-top: 5px;
  40. min-height: 92px;
  41. width: 100%;
  42. word-break: break-word;
  43. display: flex;
  44. flex-direction: row;
  45. text-align: left;
  46. &:first-child {
  47. margin-top: 0px;
  48. }
  49. .left-column {
  50. display: flex;
  51. flex-direction: column;
  52. width: 140px;
  53. flex-grow: 0;
  54. padding-left: 30px;
  55. padding-top: 25px;
  56. .date {
  57. font-weight: bold;
  58. padding-bottom: 5px;
  59. }
  60. }
  61. .right-column {
  62. display: flex;
  63. flex-direction: column;
  64. flex-grow: 1;
  65. padding-left: 30px;
  66. padding-top: 25px;
  67. .title {
  68. font-size: 16px;
  69. font-weight: bold;
  70. padding-bottom: 5px;
  71. }
  72. }
  73. .actions {
  74. display: flex;
  75. align-items: center;
  76. justify-content: center;
  77. flex-grow: 0;
  78. padding-right: 30px;
  79. }
  80. &.with-click-handler {
  81. cursor: pointer;
  82. }
  83. &.with-click-handler:hover {
  84. background-color: #75A7E7;
  85. }
  86. .add-button {
  87. width: 30px;
  88. height: 30px;
  89. padding: 0px;
  90. }
  91. i {
  92. cursor: inherit;
  93. }
  94. .join-button {
  95. display: none;
  96. }
  97. &:hover .join-button {
  98. display: block
  99. }
  100. }
  101. }