Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ff-editor / lib / react-rte / src / ui / ButtonGroup.css
Size: Mime:
.root {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px 5px 0;
  white-space: nowrap;
}

.root:last-child {
  margin-right: 0;
}

/* TODO: remove all this child selector and tag selector stuff. */

.root > div > button {
  margin-right: 0;
  border-radius: 0;
}

.root > div > button:focus {
  position: relative;
  z-index: 1;
}

.root > div:first-child > button {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.root > div + div > button {
  border-left-width: 0;
}

.root > div:last-child > button {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}