work on __resource -> fxmanifest and RDR compatibility

This commit is contained in:
astatine
2019-12-10 10:57:04 +01:00
parent 4fff23e2ff
commit 5ca4612547
31 changed files with 602 additions and 76 deletions

View File

@@ -7,4 +7,7 @@ chat_theme 'gtao' {
msgTemplates = {
default = '<b>{0}</b><span>{1}</span>'
}
}
}
game 'common'
fx_version 'adamant'

View File

@@ -3,10 +3,10 @@
}
.chat-window {
--size: calc((((2.7vw / 1.77777) * 1.2)) * 6);
--size: calc(((2.7vh * 1.2)) * 6);
position: absolute;
right: calc(1.56vw);
right: calc(2.77vh);
top: calc(50% - (var(--size) / 2));
height: var(--size) !important;
@@ -33,10 +33,10 @@
font-family: Font2, sans-serif;
color: #fff;
font-size: calc(1.8vw / 1.77777); /* 13px in 720p, calc'd by width */
font-size: calc(1.8vh); /* 13px in 720p, calc'd by width */
filter: url(#svgDropShadowFilter);
line-height: calc((2.7vw / 1.77777) * 1.2);
line-height: calc(2.7vh * 1.2);
margin-bottom: 0;
}
@@ -55,7 +55,7 @@
line-height: 1;
font-size: calc(2.7vw / 1.77777); /* 13px in 720p, calc'd by width */
font-size: calc(2.7vh);
}
.msg > span > span > span {
@@ -69,8 +69,8 @@
.chat-input {
position: absolute;
right: calc(1.56vw);
bottom: calc(1.56vw);
right: calc(2.77vh);
bottom: calc(2.77vh);
background: inherit !important;
@@ -86,7 +86,7 @@
.chat-input > div {
background-color: rgba(0, 0, 0, .6);
padding: calc(0.15625vw / 2);
padding: calc(0.28vh / 2);
}
.chat-input .prefix {
@@ -97,20 +97,32 @@
.chat-input > div + div {
position: absolute;
bottom: calc(1.65vh + 0.15625vw + 0.15625vw + 0.15625vw + (0.15625vw / 2));
bottom: calc(1.65vh + 0.28vh + 0.28vh + 0.28vh + (0.28vh / 2));
width: 99.6%;
text-align: left;
}
.suggestions {
border: calc(0.15625vw / 2) solid rgba(180, 180, 180, .6);
border: calc(0.28vh / 2) solid rgba(180, 180, 180, .6);
background: transparent;
}
textarea {
background: transparent;
border: calc(0.15625vw / 2) solid rgba(180, 180, 180, .6);
padding: calc(0.15625vw / 2);
padding-left: calc(3.5% + (0.15625vw / 2));
}
border: calc(0.28vh / 2) solid rgba(180, 180, 180, .6);
padding: calc(0.28vh / 2);
padding-left: calc(3.5% + (0.28vh / 2));
}
@media screen and (min-aspect-ratio: 21/9) {
.chat-window, .chat-input {
right: calc(12.8vw);
}
}
@media screen and (min-aspect-ratio: 32/9) {
.chat-window, .chat-input {
right: calc(25vw);
}
}