/**
 * Pony.fm - A community for pony fan music.
 * Copyright (C) 2015 Peter Deltchev
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

@import 'base/bootstrap/bootstrap';
@import 'mixins';
@import 'variables';

@media (max-width: 1300px) and (min-width: 720px) {
  html {
    .albums-listing, .playlists-listing, .users-listing {
      &.two-columns li {
        width: auto;
        float: none;
      }

      li {
        width: 33.33333%;
      }
    }
  }
}

@media (max-width: 720px) {
  html {
    .albums-listing, .playlists-listing, .users-listing {
      &.two-columns li {
        width: auto;
        float: none;
      }

      li {
        width: auto;
        float: none;
      }
    }
  }
}

.albums-listing, .playlists-listing, .users-listing {
  margin: 0px;
  padding: 0px;
  list-style: none;
  overflow: hidden;

  &.two-columns {
    li {
      width: 50%;
    }
  }

  li {
    .box-sizing(border-box);
    float: left;
    width: 25%;
    padding: 5px;
    line-height: normal;

    a {
      background: #eee;
      display: block;
      overflow: hidden;
      position: relative;

      img {
        display: block;
        float: left;
        width: 67px;
        height: 67px;
        background: #ddd;
      }

      .info {
        margin-left: 72px;
        display: block;
      }

      .title, .published, .stats {
        display: block;
        color: #444;
        padding: 5px;
      }

      .title {
        .ellipsis();

        font-weight: bold;
        font-size: 11pt;
        padding-left: 3px;
        padding-bottom: 0px;
      }

      .published {
        font-size: 8pt;
        color: #555;
      }

      .published, .stats {
        padding-top: 0px;
      }

      .stats {
        font-size: 10pt;
        color: #777;
        position: absolute;
        bottom: 3px;
        right: 3px;

        strong {
          font-weight: normal;
        }
      }

      &:hover {
        text-decoration: none;
        background: #ddd;
      }
    }
  }
}

.resource-details {
  &.track-details {
    > header {
      h2, h1 {
        margin-left: 47px;
      }
    }
  }

  &.artist-details {
    > header {
      .tabs {
        clear: left;
        margin: 0px;
        margin-top: 5px;
        border: none;
        font-size: 9pt;

        li.active {
          a {
            border: none;
            background: #C1889E;
            color: #fff;
          }
        }
      }
    }

    &.x-archived {
      background: #eee;
    }
  }

  .share-buttons {
    .transition(opacity 250ms ease-out);
    margin-top: 5px;
    opacity: 0;
    overflow: hidden;
    height: 28px;

    &.loaded {
      opacity: 1;
      overflow: visible;
    }

    .facebook, .twitter {
      margin-top: 3px;
    }
  }

  > header {
    padding: 5px;
    background: #eee;
    overflow: hidden;
    margin-bottom: 10px;

    h1 {
      margin: 0px;
    }

    h2 {
      margin: 0px;
      padding: 0px;
      font-weight: normal;
      clear: none;
      line-height: normal;
      display: block;
      float: none;
      font-size: 8pt;
      color: #777;
      border: none;

      a {
        display: inline;
        float: none;
        color: #111;
      }
    }
  }

  h2 {
    color: #C2889C;
    font-size: 10pt;
    border-bottom: 2px solid #ddd;
    padding: 5px 0px;
    margin: 0px;
    margin-bottom: 5px;
    line-height: normal;
  }

  .resource-toolbar {
    .clearfix();

    background: #eee;
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-bottom: 5px;

    > li {
      padding: 5px;
      float: left;
      margin: 0px;
    }
  }
}

@icon-size: 42px;

@media (max-width: 1300px) and (min-width: 720px) {
  html {
    .tracks-listing {
      &.four-columns li {
        width: 33.333%;
      }

      &.three-columns li {
        width: 50%;
      }

      &.two-columns li {
        width: auto;
        float: none;
      }
    }
  }
}

@media (max-width: 720px) {
  html {
    .tracks-listing {
      &.four-columns li {
        width: auto;
        float: none;
      }

      &.three-columns li {
        width: auto;
        float: none;
      }

      &.two-columns li {
        width: auto;
        float: none;
      }
    }
  }
}

.tracks-listing.four-columns {
  li {
    float: left;
    width: 25%;
  }
}

.tracks-listing.three-columns {
  li {
    float: left;
    width: 33.3333%;
  }
}

.tracks-listing.two-columns {
  li {
    float: left;
    width: 50%;
  }
}

html .single-player .play-button {
  display: block;
}

.single-player, .tracks-listing li .image {
  float: left;
  width: @icon-size;
  height: @icon-size;
  position: relative;

  .play-button {
    .transition(background 250ms ease-out);

    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    line-height: 45px;
    text-align: center;
    font-size: 12pt;
    color: #fff;
    text-decoration: none;
    background: rgba(0, 0, 0, .4);
    display: none;
    pointer-events: all;

    &:hover {
      background: rgba(0, 0, 0, .8);
    }
  }

  img {
    display: block;
    width: 100%;
    pointer-events: none;
  }
}

html {
  li {
    &.empty {
      .empty-box;
    }

    .cache-loading {
      display: block;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      line-height: 100%;
      font-size: 93%;
      padding-left: 3px;
      padding-right: 3px;
      overflow-y: hidden;
    }
  }
}

.empty-box {
  .border-radius(0px);
  background: lighten(@pfm-purple, 30%);
  border: 1px solid lighten(@pfm-purple, 10%);
  color: lighten(@pfm-purple, 3%);
  float: none !important;
  width: auto !important;
  display: block;
  margin-top: 5px;
  padding: 5px;
  font-size: 9pt;

  &:hover {
    background-color: lighten(@pfm-purple, 30%);
  }
}

.tracks-listing {
  margin: 0px;
  padding: 0px;
  list-style: none;
  overflow: hidden;

  li {
    .box-sizing(border-box);
    overflow: hidden;

    line-height: normal;
    padding: 0px;
    padding: 5px 0px;
    padding-right: 10px;
    position: relative;

    .icons {
      float: right;
      display: block;
      margin-top: 5px;

      i.icon-microphone-off {
        opacity: .5;
      }

      i.icon-microphone-off, i.icon-microphone {
        color: #777;
      }

      a {
        text-decoration: none;
      }
    }

    a.info {
      display: block;
      margin-left: (@icon-size + 10);

      &:hover {
        text-decoration: none;
      }

      > span {
        display: block;
      }
    }

    .title {
      .ellipsis();

      color: #000;
      margin-top: 5px;
    }

    .artist {
      .ellipsis();
    }

    .artist, .stats, .genre, .stats-expanded {
      color: #777;
      font-size: 80%;
    }

    .stats {
      float: right;
      padding: 3px;

      strong {
        color: #C1889E;
      }
    }

    .artist, .stats {
      margin-top: 2px;
    }

    &:hover {
      background: #dedede;

      .image {
        .play-button {
          display: block;
        }
      }
    }

    &.is-playing {
      background: #ddd;
    }

    &.has-played {
      background: red;
    }

    &.is-favourited {
      .icons {
        a.icon-favourite {
          color: @orange;
          text-decoration: none;

          i {
            color: #FFD76E;
            text-shadow: 0px 0px 2px rgba(0,0,0,0.8);

            &:before {
              content: "\f005"
            }
          }
        }
      }
    }
  }
}

.users-listing {
  &.-condensed {
    .image {
      height: 30px;
      width: 30px;
    }

    .info {
      margin-left: 40px;
    }

    .published {
      display: none;
    }
  }
}