123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- .playlist-description {
- width: 555px;
- margin-bottom: 20px;
- }
- .playlist-search-container {
- z-index: 1000;
- position: relative;
- width: 700px;
- box-shadow: 0px 0px 55px 0px black;
- background-color: $panel-bg;
- .label-tag {
- margin-left: 6px;
- font-size: 11px;
- padding: 2px 6px;
- }
- }
- .playlist-search-switches {
- position: absolute;
- top: 8px;
- right: 11px;
- }
- .playlist-search-containerwrapper {
- margin-bottom: 15px;
- }
- .playlist-search-field-wrapper {
- input {
- width: 100%;
- padding: 8px 8px;
- height: 100%;
- box-sizing: border-box;
- }
- button {
- margin: 0 4px 0 0;
- }
- > span {
- display: block;
- overflow: hidden;
- }
- }
- .playlist-search-results-container {
- min-height: 100px;
- overflow: auto;
- display: block;
- line-height: 28px;
- .search-item:hover,
- .search-item.selected {
- background-color: $list-item-hover-bg;
- }
- .selected {
- .search-result-tag {
- opacity: 0.7;
- color: white;
- }
- }
- .fa-star,
- .fa-star-o {
- padding-left: 13px;
- }
- .fa-star {
- color: $orange;
- }
- .search-result-link {
- .fa {
- padding-right: 10px;
- }
- }
- .search-item {
- display: block;
- padding: 3px 10px;
- white-space: nowrap;
- background-color: $list-item-bg;
- margin-bottom: 4px;
- .search-result-icon:before {
- content: '\f009';
- }
- &.search-item-dash-home .search-result-icon:before {
- content: '\f015';
- }
- }
- .search-result-tags {
- float: right;
- }
- .search-result-actions {
- float: right;
- padding-left: 20px;
- }
- }
- .playlist-available-list {
- td {
- line-height: 28px;
- max-width: 335px;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .add-dashboard {
- text-align: center;
- }
- .fa-star {
- color: $orange;
- }
- }
- .playlist-column-header {
- border-bottom: thin solid $gray-1;
- padding-bottom: 3px;
- margin-bottom: 15px;
- }
- .selected-playlistitem-settings {
- text-align: right;
- }
|