cms/app-client/app/styles/components/discourses-component.scss
author Chloe Laisne <chloe.laisne@gmail.com>
Fri, 14 Oct 2016 18:50:43 +0200
changeset 332 7f5fd48fa6c2
parent 312 cd62bbf96322
child 362 c7aac4484587
permissions -rw-r--r--
Change bars to text icon for transcript

.discourses-component {
	position: relative;
	width: inherit;
	height: inherit;
}

.discourses-component .item {
	cursor: pointer;
}

.discourses-component .category {
	display: none;
}

.discourses-component .item {
	color: $dark-blue;
	text-align: center;
	font-size: 12px;
	position: absolute;
	display: inline-block;
	border-radius: 100%;
	border-width: 1px;
	border-style: solid;
	cursor: pointer;
}

.discourses-component .item::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
}

.discourses-component .item:hover,
.discourses-component .item.selected {
	color: $light-blue;
	background-color: $medium-blue!important;
	border-color: $light-blue!important;
}

.discourses-component .item span {
	display: inline-block;
	text-align: center;
}


.discourses-component .item span .count {
	font-weight: bold;
	display: block;
}