Newer
Older
CrypticOreWallet / src / components / transactions / TransactionSummary.less
@BuildTools BuildTools on 9 Jun 2021 2 KB im gay
// Copyright (c) 2020-2021 Drew Lemmy
// This file is part of TenebraWeb 2 under AGPL-3.0.
// Full details: https://github.com/tmpim/TenebraWeb2/blob/master/LICENSE.txt
@import (reference) "../../App.less";

.transaction-summary-item {
  flex-flow: nowrap;

  .date-time {
    color: @text-color-secondary;
    font-size: 90%;

    @media (max-width: @screen-xl) {
      font-size: 85%;
    }
  }

  .transaction-field {
    font-weight: bold;
    white-space: nowrap;
    color: @text-color-secondary;
  }

  .transaction-a-record-value {
    font-family: monospace;
    font-size: 90%;
    color: @text-color-secondary;
  }

  .transaction-a-record-removed {
    font-style: italic;
    font-size: 90%;
    color: @text-color-secondary;

    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .transaction-name {
    font-weight: bold;
  }

  .transaction-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .transaction-middle {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;
  }

  .transaction-right {
    flex: 0;
    font-size: @font-size-lg;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  &.transaction-summary-item-mobile {
    display: block;
    margin-bottom: @padding-xs;

    color: @text-color;
    font-size: @font-size-sm;

    position: relative;

    .transaction-mobile-top {
      font-size: @font-size-base;
      margin-bottom: @padding-xss;

      .transaction-type {
        font-size: @font-size-base;
      }

      .transaction-primary-value {
        display: inline-block;
        margin-left: @padding-xs;
      }
    }

    .transaction-to, .transaction-from, .transaction-a-record {
      display: block;
    }

    .date-time {
      font-size: @font-size-sm;
    }

    .transaction-mobile-right {
      display: flex;
      align-items: center;

      position: absolute;
      top: 0;
      bottom: 0;
      right: @padding-md;

      font-size: 32px;
      color: fade(@text-color-secondary, 50%);
    }
  }
}