cms/app-client/app/styles/results.scss
author nowmad@nowmads-macbook-pro.local
Fri, 18 Dec 2015 18:09:42 +0100
changeset 78 08765d161e96
parent 68 69977e2aa39e
child 82 d489885d116d
permissions -rw-r--r--
change path to assets so it fit with the prod path

.result-header,
.result-list{
  background-color: #eeeeee;
}

.result-header{
  flex: 0 1 auto;
  float: left;
  border-left: none;
  border-top: none;
}

.result-list{
  flex: 1 1 auto;
  float: left;
  overflow: auto;
  border-left: none;
  border-top: none;
  margin-bottom: 10px;
}

.result-item {
  border: 1px solid black;
  margin-bottom: 1px;
  height: 64px;
  cursor: pointer;
  padding: 5px;
  overflow: hidden;
}
.result-item:hover {
  box-shadow: inset -1px -1px 5px 0px rgba(0,0,0,0.75);
}
.result-item.details {
  height: inherit;
}

.result-item .description{
  margin-top: 10px;
}

.result-item .play-icon {
  float: right;
  background: url('images/play-button.png') no-repeat;
  background-size: 20px;
  height: 20px;
  width: 20px;
  cursor: pointer;
  margin: 4px 7px 0 0;
}
.result-item.playing .play-icon {
  background: url('images/playing.gif') no-repeat;
  margin: 6px 5px 0 0;
}