From 31175625b446cb5d18b17db23018bca8b14d280c Mon Sep 17 00:00:00 2001 From: Chi Kei Chan Date: Thu, 21 Mar 2019 16:03:30 -0700 Subject: Folder restructure (#6304) * Remove ui/app/keychains/ * Remove ui/app/img/ (unused images) * Move conversion-util to helpers/utils/ * Move token-util to helpers/utils/ * Move /helpers/*.js inside /helpers/utils/ * Move util tests inside /helpers/utils/ * Renameand move confirm-transaction/util.js to helpers/utils/ * Move higher-order-components to helpers/higher-order-components/ * Move infura-conversion.json to helpers/constants/ * Move all utility functions to helpers/utils/ * Move pages directory to top-level * Move all constants to helpers/constants/ * Move metametrics inside helpers/ * Move app and root inside pages/ * Move routes inside helpers/ * Re-organize ducks/ * Move reducers to ducks/ * Move selectors inside selectors/ * Move test out of test folder * Move action, reducer, store inside store/ * Move ui components inside ui/ * Move UI components inside ui/ * Move connected components inside components/app/ * Move i18n-helper inside helpers/ * Fix unit tests * Fix unit test * Move pages components * Rename routes component * Move reducers to ducks/index * Fix bad path in unit test --- ui/app/components/sender-to-recipient/index.scss | 149 ----------------------- 1 file changed, 149 deletions(-) delete mode 100644 ui/app/components/sender-to-recipient/index.scss (limited to 'ui/app/components/sender-to-recipient/index.scss') diff --git a/ui/app/components/sender-to-recipient/index.scss b/ui/app/components/sender-to-recipient/index.scss deleted file mode 100644 index b21e4e1bb..000000000 --- a/ui/app/components/sender-to-recipient/index.scss +++ /dev/null @@ -1,149 +0,0 @@ -.sender-to-recipient { - width: 100%; - display: flex; - flex-direction: row; - justify-content: center; - position: relative; - flex: 0 0 auto; - - &--default { - border-bottom: 1px solid $geyser; - height: 42px; - - .sender-to-recipient { - &__tooltip-wrapper { - min-width: 0; - } - - &__tooltip-container { - max-width: 100%; - } - - &__party { - display: flex; - flex-direction: row; - align-items: center; - flex: 1; - padding: 0 16px; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - - &--sender { - padding-right: 30px; - cursor: pointer; - } - - &--recipient { - padding-left: 30px; - border-left: 1px solid $geyser; - - &-with-address { - cursor: pointer; - } - } - } - - &__arrow-container { - position: absolute; - height: 100%; - display: flex; - align-items: center; - justify-content: center; - } - - &__arrow-circle { - background: $white; - padding: 5px; - border: 1px solid $geyser; - border-radius: 20px; - height: 32px; - width: 32px; - display: flex; - justify-content: center; - align-items: center; - } - - &__name { - padding-left: 14px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - font-size: .875rem; - } - } - } - - &--cards { - .sender-to-recipient { - &__party { - display: flex; - flex-direction: row; - align-items: center; - justify-content: center; - flex: 1; - border-radius: 4px; - box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08); - padding: 6px; - background: $white; - cursor: pointer; - min-width: 0; - color: $dusty-gray; - } - - &__tooltip-wrapper { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - &__name { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - font-size: .5rem; - } - - &__arrow-container { - display: flex; - justify-content: center; - align-items: center; - } - } - } - - &--flat { - .sender-to-recipient { - &__party { - display: flex; - flex-direction: row; - align-items: center; - justify-content: center; - flex: 1; - padding: 6px; - cursor: pointer; - min-width: 0; - color: $dusty-gray; - } - - &__tooltip-wrapper { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - &__name { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - font-size: .6875rem; - } - - &__arrow-container { - display: flex; - justify-content: center; - align-items: center; - } - } - } -} -- cgit