mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
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:
parent
631d97c6b3
commit
9ea42dd981
2 changed files with 22 additions and 2 deletions
|
@ -10022,8 +10022,7 @@ strong {
|
||||||
}
|
}
|
||||||
|
|
||||||
.hide {
|
.hide {
|
||||||
left: -100em;
|
display: none;
|
||||||
position: absolute;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Mobile styles start here
|
/* Mobile styles start here
|
||||||
|
@ -10215,6 +10214,10 @@ All mobile class names should be prefixed by m- */
|
||||||
transition: all .2s ease-out;
|
transition: all .2s ease-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.top-header .close-icon {
|
||||||
|
color: #8f979e;
|
||||||
|
}
|
||||||
|
|
||||||
.exrate {
|
.exrate {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transition: opacity .2s ease-out;
|
transition: opacity .2s ease-out;
|
||||||
|
|
|
@ -38,6 +38,23 @@ html {
|
||||||
background-color: #333333; /* messes up bottom border radius */
|
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,
|
.expired__body,
|
||||||
.success-message {
|
.success-message {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
Loading…
Add table
Reference in a new issue