cms/app-client/app/styles/results.scss
author nowmad@23.1.168.192.in-addr.arpa
Fri, 22 Jan 2016 10:35:52 +0100
changeset 95 f7ab931581af
parent 87 24fef043ea0b
child 196 7550cb541901
permissions -rw-r--r--
improve interface

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

.result-header{
  flex: 0 1 auto;
  float: left;
  padding: 0 10px;
}

.result-header .filters{
  display: inline-block;
  border-radius: 5px;
  padding: 1px 5px;
  color: #fff;
}
.result-header .filters.location{
  background-color: #3985AB;
}
.result-header .filters.langue{
  background-color: #B94A43;
}
.result-header .filters.discours{
  background-color: #468842;
}
.result-header .filters.date{
  background-color: #E50086;
}
.result-header .filters.thematique{
  background-color: #F89406;
}
.result-header .fa{
  display: inline-block;
  margin-left: 5px;
  position: relative;
  top: 1px;
  cursor: pointer;
}

.result-list{
  flex: 1 1 auto;
  float: left;
  overflow: auto;
  border: none;
  background: #eeeeee;
  padding: 5px 10px;
}

.result-item {
  margin-bottom: 1px;
  min-height: 64px;
  cursor: pointer;
  padding: 5px;
  overflow: hidden;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  color: #777;
  transition: all 0.4s ease 0s;
}
.result-item:hover {
  // box-shadow: -1px -1px 5px 0px rgba(0,0,0,0.75);
}

.result-item .hidden-elt {
  display: none;
}
.result-item.show-more .hidden-elt{
  display: block;
}

.result-item.show-more {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin: 1rem 0rem;
  z-index: 200;
  // height: inherit;
}

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

.playing-indicator{
    color: #287288;
}

.result-item.playing .playing-indicator {
  background: rgba(0, 0, 0, 0) url("images/equalizer.png") no-repeat scroll 0 0 / 15px auto;
  height: 14px;
  margin: 2px 7px;
  width: 15px;
}
.result-item.playing .playing-indicator:before {
  content: none;
}

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