/* Annotate Block Colors and fonts */
/* Branches explorer */
/* Font */
/* Icons Colors*/
/* Call to Action Colors */
/* History Page */
/* VC Icons (will move to icon strip) */
.vc-changedetails-file-bar {
  display: -webkit-box;
  -webkit-flex-direction: row;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 10px 15px 10px 10px;
}

.vc-changedetails-file-bar.is-directory {
  display: none;
}

.vc-changedetails-file-bar .file-info-container {
  -webkit-box-flex: 1 1 0%;
  -webkit-flex: 1 1 0%;
  flex: 1 1 0%;
  /* Chrome fix - Chrome incorrectly sets a min-height/width it will not go lower than
     * See: https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored
     * CodePen with bug: https://codepen.io/philipwalton/pen/MYbrrr
     * CodePen with min-width: https://codepen.io/anon/pen/VrKGWa
     */
  min-height: 0;
  min-width: 0;
  display: inline-flex;
  overflow: hidden;
}

.vc-changedetails-file-bar .file-icon.bowtie-icon {
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55));
  font-size: 28px;
  line-height: 38px;
}

.vc-changedetails-file-bar .vc-source-path {
  padding-left: 10px;
  overflow: hidden;
}

.vc-changedetails-file-bar .vc-source-path > .full-name,
.vc-changedetails-file-bar .vc-source-path > .file-name,
.vc-changedetails-file-bar .vc-source-path > .full-path {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.vc-changedetails-file-bar .vc-source-path > .full-path {
  font-size: 12px;
}
