/**
* Customized version of the HAL Browser styles.css provided from https://github.com/mikekelly/hal-browser
* Copyright (c) 2012 Mike Kelly, http://stateless.co/
* MIT LICENSE: https://github.com/mikekelly/hal-browser/blob/master/MIT-LICENSE.txt
*
* This DSpace version has be customized to include:
*     * Updates to align with Bootstrap 4.
**/
html, body, #browser, .hal-browser { height: 100%; }

#browser #location-bar { margin: 10px 0; }

#browser #location-bar .address {
  border: 1px solid #999;
  padding: 4px; margin: 0;
}

#browser #headers-bar {
 border: 1px solid #888;
 padding: 5px
}

#request-headers {
  border: 0;
  outline: none;
  padding: 0;
  resize: vertical;
  width: 100%;
  height: 40px;
  margin-bottom: 0px;

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Updated to roughly match Bootstrap 4 'row' class */
.hal-browser {
    display: flex;
    flex-wrap: wrap;
}

/* Updated to roughly match Bootstrap 4 'col-6' class */
.inspector { height: 100%;
             flex: 0 0 49%;
             max-width: 49%;
             margin-left: 2%}

/* Updated to roughly match Bootstrap 4 'col-6' class */
.explorer { flex: 0 0 49%;
             max-width: 49%;}

.documentation { height: 100%; }
.documentation iframe { width: 100%; height: 100%; border-color: transparent;}

.modal input, .modal textarea {
  width: 90%;
}

.modal textarea {
  height: 100px;
}

.read-only {
  background-color: #f5f5f5 !important;
}

.links .btn {
  padding: 2px 5px 2px;
  font-size: 12px;
  line-height: 14px;
}

body table.table {
  font-size: 14px;
}

.location-bar-container {
  line-height: 30px;
}

.ajax-loader {
  vertical-align: middle;
  background-image: url("./vendor/img/ajax-loader.gif");
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  opacity: 0;
  display: inline-block;
  transition: opacity 1s;
}
.ajax-loader.visible {
  opacity: 1;
}
.embedded-resource-title {
  font-style: italic;
}
.embedded-resource-title:before {
  content: "\"";
}
.embedded-resource-title:after {
  content: "\"";
}