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 { |
||||
font-size: 12px; |
||||
font-weight: bold; |
||||
line-height: 1.2; |
||||
margin: 0 0 12px; |
||||
} |
||||
|
||||
.transaction-top-panel, .transaction-bottom-panel { |
||||
.transaction-bottom-panel { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
flex-direction: column; |
||||
@media (min-width: 500px) { |
||||
flex-direction: row; |
||||
@media (min-width: 768px) { |
||||
flex-direction: row; |
||||
justify-content: space-between; |
||||
align-items: flex-end; |
||||
} |
||||
} |
||||
|
||||
.transaction-top-panel { |
||||
.pagination-container { |
||||
margin-top: 30px; |
||||
.download-all-transactions { |
||||
text-align: center; |
||||
color: #a3a9b5; |
||||
font-size: 14px; |
||||
margin-top: 10px; |
||||
@media (min-width: 768px) { |
||||
margin-top: 0; |
||||
} |
||||
@media (min-width: 500px) { |
||||
align-items: flex-start; |
||||
.pagination-container { |
||||
margin-top: 0; |
||||
.download-all-transactions-link { |
||||
text-decoration: none; |
||||
svg { |
||||
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