mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +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 {
|
||||
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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue