.texteditor__menu {
  display: flex;
  position: absolute;
  z-index: 1000;
  color: #fff;
  background: #222;
  display: none;
}
.texteditor__menu.active {
  display: flex;
}
.texteditor__menu.link .texteditor__link {
  display: flex;
}
.texteditor__button {
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  width: 40px;
  height: 50px;
  line-height: 50px;
  opacity: 0.75;
  transition: all 0.15s ease-out;
  box-sizing: content-box;
}
.texteditor__button:first-child {
  padding-left: 5px;
}
.texteditor__button:last-child {
  padding-right: 5px;
}
.texteditor__button:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}
.texteditor__button.active {
  opacity: 1;
  background: #666;
}
.texteditor__button--h2 {
  font-size: 1.1em;
}
.texteditor__button--h3 {
  font-size: 0.8em;
}
.texteditor__button--divider {
  cursor: default;
  width: 1px;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.25) !important;
}
.texteditor__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #222;
  display: none;
}
.texteditor__linkinput {
  flex-grow: 1;
  background: transparent;
  color: #fff;
  padding: 0 20px;
  border: none;
}
.texteditor__linkclose {
  height: 50px;
  line-height: 50px;
  width: 50px;
  text-align: center;
  cursor: pointer;
}
.texteditor.link .texteditor__link {
  display: flex;
}