/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/ */

/**
 * This is the stylesheet of the Box Model view implemented in the layout panel.
 */

.boxmodel-container {
  overflow: auto;
  padding-bottom: 4px;
  max-width: 600px;
  margin: 0 auto;
}

/* Header */

.boxmodel-header,
.boxmodel-info {
  display: flex;
  align-items: center;
  padding: 4px 17px;
}

.layout-geometry-editor::before {
  background: url(images/geometry-editor.svg) no-repeat center center / 16px 16px;
}

/* Main: contains the box-model regions */

.boxmodel-main {
  position: relative;
  color: var(--theme-selection-color);
  /* Make sure there is some space between the window's edges and the regions */
  margin: 14px auto;
  width: calc(100% - 2 * 14px);
  min-width: 240px;
  /* The view will grow bigger as the window gets resized, until 400px */
  max-width: 400px;
}

.boxmodel-box {
  margin: 25px;
  /* The regions are semi-transparent, so the white background is partly
     visible */
  background-color: white;
}

.boxmodel-margin,
.boxmodel-size {
  color: var(--theme-highlight-blue);
}

.theme-dark .boxmodel-margin,
.theme-dark .boxmodel-size {
  color: var(--grey-60);
}

/* Regions are 3 nested elements with wide borders and outlines */

.boxmodel-contents {
  height: 18px;
}

.boxmodel-margins,
.boxmodel-borders,
.boxmodel-paddings {
  border-color: hsla(210,100%,85%,0.2);
  border-width: 18px;
  border-style: solid;
  outline: dotted 1px hsl(210,100%,85%);
}

.boxmodel-margins {
  /* This opacity applies to all of the regions, since they are nested */
  opacity: .8;
}

/* Regions colors */

.boxmodel-margins {
  border-color: #edff64;
}

.boxmodel-borders {
  border-color: #444444;
}

.boxmodel-paddings {
  border-color: #6a5acd;
}

.boxmodel-contents {
  background-color: #87ceeb;
}

.theme-firebug .boxmodel-main,
.theme-firebug .boxmodel-header {
  font-family: var(--proportional-font-family);
}

.theme-firebug .boxmodel-main {
  color: var(--theme-body-color);
  font-size: var(--theme-toolbar-font-size);
}

.theme-firebug .boxmodel-header {
  font-size: var(--theme-toolbar-font-size);
}

/* Editable region sizes are contained in absolutely positioned <p> */

.boxmodel-main > p,
.boxmodel-size {
  position: absolute;
  pointer-events: none;
  margin: 0;
  text-align: center;
}

.boxmodel-main > p > span,
.boxmodel-main > p > input,
.boxmodel-content,
.boxmodel-size > span {
  vertical-align: middle;
  pointer-events: auto;
}

/* Coordinates for the region sizes */

.boxmodel-top,
.boxmodel-bottom {
  width: calc(100% - 2px);
  text-align: center;
}

.boxmodel-padding.boxmodel-top {
  top: 37px;
}

.boxmodel-padding.boxmodel-bottom {
  bottom: 38px;
}

.boxmodel-border.boxmodel-top {
  top: 19px;
}

.boxmodel-border.boxmodel-bottom {
  bottom: 20px;
}

.boxmodel-margin.boxmodel-top {
  top: 1px;
}

.boxmodel-margin.boxmodel-bottom {
  bottom: 2px;
}

.boxmodel-size,
.boxmodel-position.boxmodel-left,
.boxmodel-position.boxmodel-right,
.boxmodel-margin.boxmodel-left,
.boxmodel-margin.boxmodel-right,
.boxmodel-border.boxmodel-left,
.boxmodel-border.boxmodel-right,
.boxmodel-padding.boxmodel-left,
.boxmodel-padding.boxmodel-right {
  top: 22px;
  line-height: 80px;
}

.boxmodel-size {
  width: calc(100% - 2px);
}

.boxmodel-position.boxmodel-top,
.boxmodel-position.boxmodel-bottom,
.boxmodel-position.boxmodel-left,
.boxmodel-position.boxmodel-right,
.boxmodel-margin.boxmodel-right,
.boxmodel-margin.boxmodel-left,
.boxmodel-border.boxmodel-right,
.boxmodel-border.boxmodel-left,
.boxmodel-padding.boxmodel-right,
.boxmodel-padding.boxmodel-left {
  width: 21px;
}

.boxmodel-padding.boxmodel-left {
  left: 60px;
}

.boxmodel-padding.boxmodel-right {
  right: 60px;
}

.boxmodel-border.boxmodel-left {
  left: 41px;
}

.boxmodel-border.boxmodel-right {
  right: 42px;
}

.boxmodel-margin.boxmodel-right {
  right: 25px;
}

.boxmodel-margin.boxmodel-left {
  left: 25px;
}

.boxmodel-rotate.boxmodel-left:not(.boxmodel-editing) {
  transform: rotate(-90deg);
}

.boxmodel-rotate.boxmodel-right:not(.boxmodel-editing) {
  transform: rotate(90deg);
}

.boxmodel-rotate.boxmodel-left.boxmodel-position:not(.boxmodel-editing) {
  border-top: none;
  border-right: 1px solid var(--theme-highlight-purple);
  width: auto;
  height: 30px;
}

.boxmodel-size > p {
  display: inline-block;
  margin: auto;
  line-height: 0;
}

.boxmodel-rotate.boxmodel-right.boxmodel-position:not(.boxmodel-editing) {
  border-top: none;
  border-left: 1px solid var(--theme-highlight-purple);
  width: auto;
  height: 30px;
}

/* Box Model Positioning: contains top, right, bottom, left */

.boxmodel-position {
  color: var(--theme-highlight-purple);
}

.boxmodel-position.boxmodel-top,
.boxmodel-position.boxmodel-bottom {
  border-left: 1px solid var(--theme-highlight-purple);
  left: calc(50% - 2px);
  padding-left: 1px;
}

.boxmodel-position.boxmodel-right,
.boxmodel-position.boxmodel-left {
  border-top: 1px solid var(--theme-highlight-purple);
  line-height: 15px;
  top: calc(50% - 1px);
  width: 30px;
}

.boxmodel-position.boxmodel-top {
  top: -18px;
}

.boxmodel-position.boxmodel-right {
  right: -9px;
}

.boxmodel-position.boxmodel-bottom {
  bottom: -18px;
}

.boxmodel-position.boxmodel-left {
  left: -9px;
}

/* Legend: displayed inside regions */

.boxmodel-legend {
  position: absolute;
  margin: 2px 6px;
  z-index: 1;
}

.boxmodel-legend[data-box="margin"] {
  color: var(--theme-highlight-blue);
}

.theme-dark .boxmodel-legend[data-box="margin"] {
  color: var(--grey-60);
}

.boxmodel-legend[data-box="position"] {
  color: var(--theme-highlight-purple);
  margin: -18px -9px;
}

/* Editable fields */

.boxmodel-editable {
  border: 1px dashed transparent;
  -moz-user-select: none;
}

.boxmodel-editable:hover {
  border-bottom-color: hsl(0, 0%, 50%);
}

.boxmodel-size > span {
  cursor: default;
}

/* Box Model Info: contains the position and size of the element */

.boxmodel-element-size {
  flex: 1;
}

.boxmodel-position-group {
  display: flex;
  align-items: center;
}

/* Box Model Properties: contains a list of relevant box model properties */

.boxmodel-properties-header {
  padding: 2px 3px;
}

.boxmodel-properties-expander {
  vertical-align: middle;
  display: inline-block;
}

.boxmodel-properties-wrapper {
  column-width: 250px;
  column-gap: 20px;
  column-rule: 1px solid var(--theme-splitter-color);
}

.boxmodel-properties-wrapper .computed-property-view {
  padding-inline-start: 17px;
}

.boxmodel-properties-wrapper .computed-property-name-container {
  flex: 1;
}

.boxmodel-properties-wrapper .computed-property-value-container {
  flex: 1;
  display: block;
}

.boxmodel-container .reference-element {
  margin-inline-start: 14px;
  margin-block-start: 4px;
  display: block;
}

/* Tag displayed next to DOM Node previews (used to display reference elements) */

.boxmodel-container .reference-element-type {
  background: var(--theme-highlight-purple);
  color: white;
  padding: 1px 2px;
  border-radius: 2px;
  font-size: 9px;
  margin-inline-end: 5px;
}

.theme-dark .boxmodel-container .reference-element-type {
  color: black;
}

/* Box Model Main - Offset Parent */

.boxmodel-offset-parent {
  position: absolute;
  top: -20px;
  right: -10px;
  color: var(--theme-highlight-purple);
}
