HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/slenders.komma.pro/resources/sass/kms/attributes/_componentsArea.scss
.c-components-area {
  padding: 60px;
  background: linear-gradient($backgroundGradient);
  box-shadow: inset 0px 15px 15px -15px rgba(0, 0, 0, 0.15)
}

.c-components-area__main{
  width: 100%;
  max-width: 1000px;
  margin: auto;

  &.hide-background-options{
    .entity-attribute.is-background-option{
      display: none;
    }
  }
}

.c-components-area__copy {
  @include flex(flex-end, center);
  background: white;
  padding: 15px 0;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
  color: #666666;
  font-size: 0.7rem;

  p {
    margin: 0 15px;
  }

  select {
    -webkit-appearance: button;
    -moz-appearance: button;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-padding-end: 20px;
    -moz-padding-end: 20px;
    -webkit-padding-start: 20px;
    -moz-padding-start: 20px;
    background-color: rgba(103, 113, 122, 0.05);
    background-image: url("/img/kms/svg/arrow_dark_select.svg");
    background-position: 100% 50%;
    background-repeat: no-repeat;
    border: 1px solid #E0E1E3;
    border-radius: 5px;
    box-shadow: none;
    font-size: 0.7rem;
    margin: 0 15px;
    overflow: hidden;
    padding: 5px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 60px;

    &:focus {
      box-shadow: none;
      outline: none;
    }
  }

  .confirm {
    display: inline-block;
    cursor: pointer;
    border: solid 1px #a0a9b7;
    border-radius: 5px;
    padding: 8px 15px;
    color: #666666;
    margin: 0 15px;
    font-size: 12px;
    font-family: $fontFamily;
  }
}

.c-components-area__buttons {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

//TODO: Test this on IE
.c-components-area__grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}

.c-components-area__label {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.4px;
  color: $gray;
  font-weight: bold;
}

.c-components-area-button {
  position: relative;
  z-index: 2;
  @include flex(space-between, center);
  padding: 15px 10px 15px 15px;
  background: white;
  cursor: pointer;

  > * {
    pointer-events: none;
    user-select: none;
  }

  &:before {
    content: '';
    position: absolute;
    left: 80px;
    top: 5px;
    display: block;
    width: 1px;
    height: calc(100% - 10px);
    background-color: $lightGray;
    opacity: 0.75;
  }

  &:after{
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
    opacity: 1;
    transition: opacity 0.4s;
  }

  &:hover{
    &:after{
      opacity: 0.2;
    }
  }
}

.c-components-area-button__icon {
  width: 50px;

  img {
    width: 100%;
  }
}

.c-components-area-button__label {
  margin-top: 2px;
  width: calc(100% - 80px);
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.4px;
  color: mix($iconColor, $gray);

}