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.

94 lines
1.6 KiB

  1. .list-editor {
  2. background: $ui-base-color;
  3. flex-direction: column;
  4. border-radius: 8px;
  5. box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
  6. width: 380px;
  7. overflow: hidden;
  8. @media screen and (max-width: 420px) {
  9. width: 90%;
  10. }
  11. h4 {
  12. padding: 15px 0;
  13. background: lighten($ui-base-color, 13%);
  14. font-weight: 500;
  15. font-size: 16px;
  16. text-align: center;
  17. border-radius: 8px 8px 0 0;
  18. }
  19. .drawer__pager {
  20. height: 50vh;
  21. }
  22. .drawer__inner {
  23. border-radius: 0 0 8px 8px;
  24. &.backdrop {
  25. width: calc(100% - 60px);
  26. box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
  27. border-radius: 0 0 0 8px;
  28. }
  29. }
  30. &__accounts {
  31. overflow-y: auto;
  32. }
  33. .account__display-name {
  34. &:hover strong {
  35. text-decoration: none;
  36. }
  37. }
  38. .account__avatar {
  39. cursor: default;
  40. }
  41. .search {
  42. margin-bottom: 0;
  43. }
  44. }
  45. .list-adder {
  46. background: $ui-base-color;
  47. flex-direction: column;
  48. border-radius: 8px;
  49. box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
  50. width: 380px;
  51. overflow: hidden;
  52. @media screen and (max-width: 420px) {
  53. width: 90%;
  54. }
  55. &__account {
  56. background: lighten($ui-base-color, 13%);
  57. }
  58. &__lists {
  59. background: lighten($ui-base-color, 13%);
  60. height: 50vh;
  61. border-radius: 0 0 8px 8px;
  62. overflow-y: auto;
  63. }
  64. .list {
  65. padding: 10px;
  66. border-bottom: 1px solid lighten($ui-base-color, 8%);
  67. }
  68. .list__wrapper {
  69. display: flex;
  70. }
  71. .list__display-name {
  72. flex: 1 1 auto;
  73. overflow: hidden;
  74. text-decoration: none;
  75. font-size: 16px;
  76. padding: 10px;
  77. }
  78. }