Merge pull request #2207 from maxgrapps/ab-export-transactions
New 'download csv' button designpull/2102/head
commit
93bd13295f
@ -1,56 +1,35 @@ |
|||||||
.transaction-details-address { |
.transaction-bottom-panel { |
||||||
font-size: 12px; |
|
||||||
font-weight: bold; |
|
||||||
line-height: 1.2; |
|
||||||
margin: 0 0 12px; |
|
||||||
} |
|
||||||
|
|
||||||
.transaction-top-panel, .transaction-bottom-panel { |
|
||||||
display: flex; |
display: flex; |
||||||
justify-content: space-between; |
|
||||||
flex-direction: column; |
flex-direction: column; |
||||||
@media (min-width: 500px) { |
@media (min-width: 768px) { |
||||||
flex-direction: row; |
flex-direction: row; |
||||||
|
justify-content: space-between; |
||||||
|
align-items: flex-end; |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
.transaction-top-panel { |
.download-all-transactions { |
||||||
.pagination-container { |
text-align: center; |
||||||
margin-top: 30px; |
color: #a3a9b5; |
||||||
|
font-size: 14px; |
||||||
|
margin-top: 10px; |
||||||
|
@media (min-width: 768px) { |
||||||
|
margin-top: 0; |
||||||
} |
} |
||||||
@media (min-width: 500px) { |
.download-all-transactions-link { |
||||||
align-items: flex-start; |
text-decoration: none; |
||||||
.pagination-container { |
svg { |
||||||
margin-top: 0; |
position: relative; |
||||||
|
margin-left: 2px; |
||||||
|
top: -3px; |
||||||
|
path { |
||||||
|
fill: $primary; |
||||||
|
} |
||||||
|
} |
||||||
|
&:hover { |
||||||
|
span { |
||||||
|
text-decoration: underline; |
||||||
|
} |
||||||
} |
} |
||||||
} |
} |
||||||
} |
|
||||||
|
|
||||||
.transaction-bottom-panel { |
|
||||||
@media (min-width: 500px) { |
|
||||||
align-items: flex-end; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
.download-csv { |
|
||||||
display: inline-block; |
|
||||||
height: 24px; |
|
||||||
background: #f5f6fa; |
|
||||||
border-radius: 2px; |
|
||||||
outline: none; |
|
||||||
font-family: Nunito, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; |
|
||||||
font-size: 12px; |
|
||||||
line-height: 25px; |
|
||||||
padding: 0 10px; |
|
||||||
font-weight: 600; |
|
||||||
cursor: pointer; |
|
||||||
color: #a3a9b5; |
|
||||||
text-align: center; |
|
||||||
transition: .1s ease-in; |
|
||||||
text-decoration: none !important; |
|
||||||
&:hover { |
|
||||||
background-color: $primary; |
|
||||||
color: #fff; |
|
||||||
border-color: $primary; |
|
||||||
} |
|
||||||
} |
} |
Loading…
Reference in new issue