div.term-description {
    position: relative;
    max-height: inherit;
    overflow: inherit;
}
  
div.term-description:after {
    background: none;
}
div.term-description.condensed {
    position: relative;
    max-height: 6em;
    overflow: hidden;
}
  
div.term-description.condensed:after {
    position: absolute;
    bottom: 0;  
    height: 100%;
    width: 100%;
    left: 0;
    content: "";
    background: linear-gradient(to top,
        rgba(255,255,255, 1) 20%, 
        rgba(255,255,255, 0) 80%
    );
    pointer-events: none; /* so the text is still selectable */
}
div.term-description button.expand-desc {
    position: absolute;
    height: 1.5em;
    bottom: 2px;
    right: 2px;
    z-index: 1;
    border: none;
    background: #267a00;
    padding: 1px 3px!important;
	font-weight: normal;
}