AugurProject/augur-ui

View on GitHub
src/modules/block-info/components/block-info-data/block-info-data.styles.less

Summary

Maintainability
Test Coverage
@import (reference) "~assets/styles/shared";

.BlockInfoData {
  align-items: center;
  border-left: 0.0625rem solid @color-lightpurple;
  color: white;
  flex-direction: column;
  justify-content: center;
  max-width: 162px;
  position: relative;
  width: unset !important;

  &:hover {
    background-color: @color-lightpurple;
  }
}

.BlockInfoData__container {
  cursor: pointer;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 24px;
  width: 100%;

  &:focus {
    outline: none;
  }

  @media @breakpoint-mobile {
    padding-bottom: 10px;
    padding-top: 8px;
  }
}

.BlockInfoData__title {
  color: @color-lightergray;
  font-size: @font-size-extra-small;
  line-height: 2;

  @media @breakpoint-mobile {
    line-height: unset;
  }
}

.BlockInfoData__selected {
  background-color: @color-lightpurple;
}

.BlockInfoData__info {
  align-items: flex-end;
  display: flex;
  font-weight: bold;
}

.BlockInfoData__connectDropdown {
  background-color: @color-lightpurple;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  box-shadow: 0 3px 4px -4px rgba(0, 0, 0, 0.5);
  height: 0;
  position: absolute;
  right: -1px;
  text-align: left;
  top: @top-bar-height;
  width: 308px;
  z-index: @above-all-content;

  @media @breakpoint-mobile {
    top: 3.1rem;
    width: 250px;
  }

  @media @breakpoint-mobile-small {
    left: -1px;
    right: unset;
  }
}

.BlockInfoData__connectDropdownLogged {
  @media @breakpoint-mobile-small {
    left: unset;
    right: -1px;
  }
}

.BlockInfoData__dropdownContainer {
  padding: 24px;
}

.BlockInfoData__dropdownTitle {
  color: @color-lightergray;
  font-size: @font-size-medium;
}

.BlockInfoData__percent {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: @color-white;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  font-size: @font-size-rather-large;
  font-weight: bold;
  margin-bottom: 16px;
  margin-top: 8px;
  padding-bottom: 16px;
}

.BlockInfoData__processed {
  color: @color-white;
  font-size: @font-size-large;
  font-weight: bold;
  margin-top: 8px;
}

.BlockInfoData__slash {
  font-weight: normal;
  margin-left: 6px;
  margin-right: 4px;
}

.BlockInfoData__bottom {
  color: @color-white;
}

.BlockInfoData__blocksBehind {
  align-self: center;
  display: flex;
  flex-direction: column;
  font-size: @font-size-extra-small;
  font-weight: normal;
  margin-left: auto;
  padding-left: 8px;
  text-decoration: underline;
}

@media @breakpoint-mobile-mid {
  .BlockInfoData {
    max-width: unset;
  }

  .BlockInfoData__container {
    justify-content: center;
    padding: 5px 24px;
  }
}

@media @breakpoint-mobile-small {
  .BlockInfoData__container {
    padding: 5px 10px;
  }
}