<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* colorselector dropdown */
.dropdown-colorselector&gt;.dropdown-menu {
  top: 80%;
  left: 0px;
  padding: 2px;
  min-width: 162px;
  max-width: 130px;
}

.dropdown-colorselector&gt;.dropdown-menu&gt;li {
  display: block;
  float: left;
  width: 34px;
  height: 34px;
  margin: 2px;
}

.dropdown-colorselector&gt;.dropdown-menu&gt;li&gt;.color-btn {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  position: relative;
  -webkit-transition: all ease 0.1s;
  transition: all ease 0.1s;
  border-radius: 5px;
}

.dropdown-colorselector&gt;.dropdown-menu&gt;li&gt;.color-btn:hover {
  text-decoration: none;
  opacity: 0.8;
  filter: alpha(opacity = 80);
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.dropdown-colorselector&gt;.dropdown-menu&gt;li&gt;.color-btn.selected:after {
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900; 
  content: "\f00c";
  display: inline-block;
  font-size: 11px;
  color: #FFF;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 34px;
}

.btn-colorselector {
  display: inline-block;
  width: 72px;
  height: 36px;
  background-color: #DDD;
  vertical-align: middle;
  border-radius:5px;
}

.dropdown-menu.dropdown-caret:before {
  border-bottom: 7px solid rgba(0, 0, 0, 0.2);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: "";
  display: inline-block;
  left: 9px;
  position: absolute;
  top: -7px;
}

.dropdown-menu.dropdown-caret:after {
  border-bottom: 6px solid #FFFFFF;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  display: inline-block;
  left: 10px;
  position: absolute;
  top: -6px;
}</pre></body></html>