_playlist.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. .playlist-description {
  2. width: 555px;
  3. margin-bottom: 20px;
  4. }
  5. .playlist-search-container {
  6. z-index: 1000;
  7. position: relative;
  8. width: 700px;
  9. box-shadow: 0px 0px 55px 0px black;
  10. background-color: $panel-bg;
  11. .label-tag {
  12. margin-left: 6px;
  13. font-size: 11px;
  14. padding: 2px 6px;
  15. }
  16. }
  17. .playlist-search-switches {
  18. position: absolute;
  19. top: 8px;
  20. right: 11px;
  21. }
  22. .playlist-search-containerwrapper {
  23. margin-bottom: 15px;
  24. }
  25. .playlist-search-field-wrapper {
  26. input {
  27. width: 100%;
  28. padding: 8px 8px;
  29. height: 100%;
  30. box-sizing: border-box;
  31. }
  32. button {
  33. margin: 0 4px 0 0;
  34. }
  35. > span {
  36. display: block;
  37. overflow: hidden;
  38. }
  39. }
  40. .playlist-search-results-container {
  41. min-height: 100px;
  42. overflow: auto;
  43. display: block;
  44. line-height: 28px;
  45. .search-item:hover,
  46. .search-item.selected {
  47. background-color: $list-item-hover-bg;
  48. }
  49. .selected {
  50. .search-result-tag {
  51. opacity: 0.7;
  52. color: white;
  53. }
  54. }
  55. .fa-star,
  56. .fa-star-o {
  57. padding-left: 13px;
  58. }
  59. .fa-star {
  60. color: $orange;
  61. }
  62. .search-result-link {
  63. .fa {
  64. padding-right: 10px;
  65. }
  66. }
  67. .search-item {
  68. display: block;
  69. padding: 3px 10px;
  70. white-space: nowrap;
  71. background-color: $list-item-bg;
  72. margin-bottom: 4px;
  73. .search-result-icon:before {
  74. content: '\f009';
  75. }
  76. &.search-item-dash-home .search-result-icon:before {
  77. content: '\f015';
  78. }
  79. }
  80. .search-result-tags {
  81. float: right;
  82. }
  83. .search-result-actions {
  84. float: right;
  85. padding-left: 20px;
  86. }
  87. }
  88. .playlist-available-list {
  89. td {
  90. line-height: 28px;
  91. max-width: 335px;
  92. white-space: nowrap;
  93. text-overflow: ellipsis;
  94. overflow: hidden;
  95. }
  96. .add-dashboard {
  97. text-align: center;
  98. }
  99. .fa-star {
  100. color: $orange;
  101. }
  102. }
  103. .playlist-column-header {
  104. border-bottom: thin solid $gray-1;
  105. padding-bottom: 3px;
  106. margin-bottom: 15px;
  107. }
  108. .selected-playlistitem-settings {
  109. text-align: right;
  110. }