Checkout CSS improvements (#1684)

* Checkout: Hide hidden items

As [reported on Mattermost](https://chat.btcpayserver.org/btcpayserver/pl/4mxado5a3ifnzxyhrszusz4q8e) the old way of hiding does not work well with widescreen displays.

* Checkout: Minor theme improvements
This commit is contained in:
Dennis Reimann 2020-06-23 16:25:43 +02:00 committed by GitHub
parent 631d97c6b3
commit 9ea42dd981
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 2 deletions

View file

@ -10022,8 +10022,7 @@ strong {
}
.hide {
left: -100em;
position: absolute;
display: none;
}
/* Mobile styles start here
@ -10215,6 +10214,10 @@ All mobile class names should be prefixed by m- */
transition: all .2s ease-out;
}
.top-header .close-icon {
color: #8f979e;
}
.exrate {
opacity: 1;
transition: opacity .2s ease-out;

View file

@ -38,6 +38,23 @@ html {
background-color: #333333; /* messes up bottom border radius */
}
.vex.vex-theme-btcpay .vex-content {
color: #fff;
background-color: #333;
}
.vex.vex-theme-btcpay .vex-content .vexmenuitem {
border-bottom-color: #8f979e;
}
.vex.vex-theme-btcpay .vex-content .vexmenuitem:hover {
background-color: #292929;
}
.vex.vex-theme-btcpay .vex-content a {
color: inherit;
}
.expired__body,
.success-message {
color: #fff;