/**
 * @file
 * Styles for dropbuttons.
 */
 
 /* Schriftfarbe und Schrift-Art eines Dopbuttons angepasst */
.js .dropbutton a {
  color: #fff;
}

/* Dropbutton Multiple sollen mehr nach rechts an den Rand rutschen */
.js td .dropbutton-multiple {
  margin-right: 0;
  padding-right: 8.5em;
}
 
/* Etwas Abstand um die Beschriftung, sowie keine Umbrüche */
.dropbutton .dropbutton-action {
  padding: 0.175em 0.5em;
  white-space: nowrap;
}

 /* CI konformen Hintergrund bei Dopbuttons */
.js .dropbutton-widget,
.js .dropbutton-toggle button {
  background-color: #0d9be2;
  text-align: center;
  max-width: fit-content;
}

/* CI konforme Farbe bei einem Hover,.. über Dopbuttons */
.js .dropbutton a:hover,
.js .dropbutton a:active,
.js .dropbutton a:focus,
.js .dropbutton .dropbutton-action:hover,
.js .dropbutton .dropbutton-action:active,
.js .dropbutton .dropbutton-action:focus {
  background-color: #29b8ff;
}
