mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-08-07 05:38:27 +02:00
Controller customization feature
This commit is contained in:
@@ -47,6 +47,7 @@ button_color(name, normal, hover, active, disabled)
|
||||
@font-face {
|
||||
font-family: 'promptfont';
|
||||
src: url('https://redphx.github.io/better-xcloud/fonts/promptfont.otf');
|
||||
unicode-range: U+2196-E011;
|
||||
}
|
||||
|
||||
/* Fix Stream menu buttons not hiding */
|
||||
@@ -73,6 +74,10 @@ div[class^=HUDButton-module__hiddenContainer] ~ div:not([class^=HUDButton-module
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
.bx-auto-height {
|
||||
height: auto !important;
|
||||
}
|
||||
|
||||
.bx-no-scroll {
|
||||
overflow: hidden !important;
|
||||
}
|
||||
@@ -125,6 +130,10 @@ div[class^=HUDButton-module__hiddenContainer] ~ div:not([class^=HUDButton-module
|
||||
font-family: var(--bx-promptfont-font) !important;
|
||||
}
|
||||
|
||||
.bx-monospaced {
|
||||
font-family: var(--bx-monospaced-font) !important;
|
||||
}
|
||||
|
||||
.bx-line-through {
|
||||
text-decoration: line-through !important;
|
||||
}
|
||||
@@ -270,3 +279,15 @@ div[class*=SupportedInputsBadge] {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.bx-horizontal-shaking {
|
||||
animation: bx-horizontal-shaking .4s ease-in-out 2;
|
||||
}
|
||||
|
||||
@keyframes bx-horizontal-shaking {
|
||||
0% { transform: translateX(0) }
|
||||
25% { transform: translateX(5px) }
|
||||
50% { transform: translateX(-5px) }
|
||||
75% { transform: translateX(5px) }
|
||||
100% { transform: translateX(0) }
|
||||
}
|
||||
|
Reference in New Issue
Block a user