From 65ff5cb13abbd2572c31628d3c6fb281b74f6d3e Mon Sep 17 00:00:00 2001 From: Luke Date: Fri, 7 May 2021 20:09:29 +0200 Subject: [PATCH] statt "package://assets" lieber "../..", hoffentlich nichts kaputt, weg damit --- .../assets/css/atm/atm.css | 4 ++-- .../assets/css/login/styles.css | 8 +++---- .../assets/css/login/styles.scss | 8 +++---- .../assets/css/vehiclemenu/style.css | 2 +- .../html/Introduction/Introduction.html | 4 ++-- .../assets/html/Playerlist/Tabliste.html | 2 +- .../assets/html/School/DrivingSchool.html | 4 ++-- .../assets/html/SimpleTextBox.html | 8 +++---- .../assets/html/Wantedlist/wanteds.html | 4 ++-- .../assets/html/atm/index.html | 8 +++---- .../assets/html/chat/index.html | 8 +++---- .../html/factionmanagement/ranks/index.html | 10 ++++----- .../assets/html/helpcommand/ahelp.html | 4 ++-- .../assets/html/helpcommand/shelp.html | 4 ++-- .../assets/html/helpcommand/userhelp.html | 4 ++-- .../assets/html/inputhelper/index.html | 12 +++++----- .../assets/html/licenses/scheine.html | 6 ++--- .../assets/html/login/login.html | 12 +++++----- .../assets/html/login/register.html | 12 +++++----- .../assets/html/save/blip/index.html | 6 ++--- .../assets/html/sound/index.html | 2 +- .../assets/html/vehiclemenu/index.html | 22 +++++++++---------- .../assets/html/wanteds/index.html | 6 ++--- 23 files changed, 80 insertions(+), 80 deletions(-) diff --git a/ReallifeGamemode.Client/assets/css/atm/atm.css b/ReallifeGamemode.Client/assets/css/atm/atm.css index e95e49ef..772c4d45 100644 --- a/ReallifeGamemode.Client/assets/css/atm/atm.css +++ b/ReallifeGamemode.Client/assets/css/atm/atm.css @@ -1,11 +1,11 @@ @font-face { font-family: 'OSL'; - src: url('package://assets/font/OSL.ttf') format('truetype'); + src: url('../../font/OSL.ttf') format('truetype'); } @font-face { font-family: 'OSB'; - src: url('package://assets/font/OpenSans-Bold.ttf') format('truetype'); + src: url('../../font/OpenSans-Bold.ttf') format('truetype'); } * { diff --git a/ReallifeGamemode.Client/assets/css/login/styles.css b/ReallifeGamemode.Client/assets/css/login/styles.css index 7385c7db..91088032 100644 --- a/ReallifeGamemode.Client/assets/css/login/styles.css +++ b/ReallifeGamemode.Client/assets/css/login/styles.css @@ -47,7 +47,7 @@ body { header { height: 5em; margin-bottom: 2em; - background-image: url("package://assets/img/login/logo.png"); + background-image: url("../../img/login/logo.png"); background-repeat: no-repeat; background-position: center; background-size: contain; @@ -155,7 +155,7 @@ main form button.transparent:focus { main form button.transparent#submit { width: 3.25em; - background-image: url("package://assets/img/login/enter.png"); + background-image: url("../../img/login/enter.png"); background-repeat: no-repeat; background-position: right; background-size: contain; @@ -208,7 +208,7 @@ body.light main { } body.light header { - background-image: url("package://assets/img/login/logo-light.png"); + background-image: url("../../img/login/logo-light.png"); opacity: .75; } @@ -221,7 +221,7 @@ body.light form span#password-visibility::before { } body.light form button.transparent#submit { - background-image: url("package://assets/img/login/enter-dark.png"); + background-image: url("../../img/login/enter-dark.png"); } body.light form #alert { diff --git a/ReallifeGamemode.Client/assets/css/login/styles.scss b/ReallifeGamemode.Client/assets/css/login/styles.scss index f4ecceaa..856f79f8 100644 --- a/ReallifeGamemode.Client/assets/css/login/styles.scss +++ b/ReallifeGamemode.Client/assets/css/login/styles.scss @@ -34,7 +34,7 @@ header { height: 5em; margin-bottom: 2em; - background-image: url('package://assets/img/login/logo.png'); + background-image: url('../../img/login/logo.png'); background-repeat: no-repeat; background-position: center; background-size: contain; @@ -141,7 +141,7 @@ main { &#submit { width: 3.25em; - background-image: url('package://assets/img/login/enter.png'); + background-image: url('../../img/login/enter.png'); background-repeat: no-repeat; background-position: right; background-size: contain; @@ -193,7 +193,7 @@ body.light { } header { - background-image: url('package://assets/img/login/logo-light.png'); + background-image: url('../../img/login/logo-light.png'); opacity: .75; } @@ -210,7 +210,7 @@ body.light { button.transparent { &#submit { - background-image: url('package://assets/img/login/enter-dark.png'); + background-image: url('../../img/login/enter-dark.png'); } } diff --git a/ReallifeGamemode.Client/assets/css/vehiclemenu/style.css b/ReallifeGamemode.Client/assets/css/vehiclemenu/style.css index 6d928238..3b4e2db4 100644 --- a/ReallifeGamemode.Client/assets/css/vehiclemenu/style.css +++ b/ReallifeGamemode.Client/assets/css/vehiclemenu/style.css @@ -1,6 +1,6 @@ @font-face { font-family: 'OSL'; - src: url('package://assets/font/OpenSans-Bold.ttf') format('truetype'); + src: url('../../font/OpenSans-Bold.ttf') format('truetype'); } *:focus { diff --git a/ReallifeGamemode.Client/assets/html/Introduction/Introduction.html b/ReallifeGamemode.Client/assets/html/Introduction/Introduction.html index 497b8ce4..6c45d997 100644 --- a/ReallifeGamemode.Client/assets/html/Introduction/Introduction.html +++ b/ReallifeGamemode.Client/assets/html/Introduction/Introduction.html @@ -5,7 +5,7 @@ Eingabe | Life of German - + @@ -39,6 +39,6 @@ - + \ No newline at end of file diff --git a/ReallifeGamemode.Client/assets/html/Playerlist/Tabliste.html b/ReallifeGamemode.Client/assets/html/Playerlist/Tabliste.html index 764b197a..d843ae26 100644 --- a/ReallifeGamemode.Client/assets/html/Playerlist/Tabliste.html +++ b/ReallifeGamemode.Client/assets/html/Playerlist/Tabliste.html @@ -23,7 +23,7 @@ - + \ No newline at end of file diff --git a/ReallifeGamemode.Client/assets/html/School/DrivingSchool.html b/ReallifeGamemode.Client/assets/html/School/DrivingSchool.html index d45b1e4a..5a53efbb 100644 --- a/ReallifeGamemode.Client/assets/html/School/DrivingSchool.html +++ b/ReallifeGamemode.Client/assets/html/School/DrivingSchool.html @@ -5,7 +5,7 @@ Eingabe | Life of German - + @@ -33,6 +33,6 @@ - + \ No newline at end of file diff --git a/ReallifeGamemode.Client/assets/html/SimpleTextBox.html b/ReallifeGamemode.Client/assets/html/SimpleTextBox.html index 5837569a..cc32ed79 100644 --- a/ReallifeGamemode.Client/assets/html/SimpleTextBox.html +++ b/ReallifeGamemode.Client/assets/html/SimpleTextBox.html @@ -1,7 +1,7 @@  - - + + @@ -17,7 +17,7 @@ - - + + \ No newline at end of file diff --git a/ReallifeGamemode.Client/assets/html/Wantedlist/wanteds.html b/ReallifeGamemode.Client/assets/html/Wantedlist/wanteds.html index a5163765..f245ef13 100644 --- a/ReallifeGamemode.Client/assets/html/Wantedlist/wanteds.html +++ b/ReallifeGamemode.Client/assets/html/Wantedlist/wanteds.html @@ -5,7 +5,7 @@ Eingabe | Life of German - + @@ -32,7 +32,7 @@ - + \ No newline at end of file diff --git a/ReallifeGamemode.Client/assets/html/atm/index.html b/ReallifeGamemode.Client/assets/html/atm/index.html index 152092a5..c9a86fc0 100644 --- a/ReallifeGamemode.Client/assets/html/atm/index.html +++ b/ReallifeGamemode.Client/assets/html/atm/index.html @@ -3,9 +3,9 @@ - + @@ -292,8 +292,8 @@ - - + + - + + \ No newline at end of file diff --git a/ReallifeGamemode.Client/assets/html/factionmanagement/ranks/index.html b/ReallifeGamemode.Client/assets/html/factionmanagement/ranks/index.html index d27f359e..7561a03f 100644 --- a/ReallifeGamemode.Client/assets/html/factionmanagement/ranks/index.html +++ b/ReallifeGamemode.Client/assets/html/factionmanagement/ranks/index.html @@ -9,7 +9,7 @@ - +
@@ -22,9 +22,9 @@
- - - - + + + + \ No newline at end of file diff --git a/ReallifeGamemode.Client/assets/html/helpcommand/ahelp.html b/ReallifeGamemode.Client/assets/html/helpcommand/ahelp.html index 2b192fcd..669a014d 100644 --- a/ReallifeGamemode.Client/assets/html/helpcommand/ahelp.html +++ b/ReallifeGamemode.Client/assets/html/helpcommand/ahelp.html @@ -5,7 +5,7 @@ Eingabe | Life of German - + @@ -66,6 +66,6 @@ - + \ No newline at end of file diff --git a/ReallifeGamemode.Client/assets/html/helpcommand/shelp.html b/ReallifeGamemode.Client/assets/html/helpcommand/shelp.html index d4e32c13..eab5e6a5 100644 --- a/ReallifeGamemode.Client/assets/html/helpcommand/shelp.html +++ b/ReallifeGamemode.Client/assets/html/helpcommand/shelp.html @@ -5,7 +5,7 @@ Eingabe | Life of German - + @@ -42,6 +42,6 @@ - + \ No newline at end of file diff --git a/ReallifeGamemode.Client/assets/html/helpcommand/userhelp.html b/ReallifeGamemode.Client/assets/html/helpcommand/userhelp.html index 5459b629..39a6148d 100644 --- a/ReallifeGamemode.Client/assets/html/helpcommand/userhelp.html +++ b/ReallifeGamemode.Client/assets/html/helpcommand/userhelp.html @@ -5,7 +5,7 @@ Eingabe | Life of German - + @@ -40,6 +40,6 @@ - + \ No newline at end of file diff --git a/ReallifeGamemode.Client/assets/html/inputhelper/index.html b/ReallifeGamemode.Client/assets/html/inputhelper/index.html index 335e30f4..fe3e0310 100644 --- a/ReallifeGamemode.Client/assets/html/inputhelper/index.html +++ b/ReallifeGamemode.Client/assets/html/inputhelper/index.html @@ -5,10 +5,10 @@ Eingabe | Life of German - - - - + + + + @@ -26,7 +26,7 @@ - + - + diff --git a/ReallifeGamemode.Client/assets/html/licenses/scheine.html b/ReallifeGamemode.Client/assets/html/licenses/scheine.html index bef20299..0d898bbe 100644 --- a/ReallifeGamemode.Client/assets/html/licenses/scheine.html +++ b/ReallifeGamemode.Client/assets/html/licenses/scheine.html @@ -1,12 +1,12 @@ - +
- +
@@ -22,6 +22,6 @@
- + \ No newline at end of file diff --git a/ReallifeGamemode.Client/assets/html/login/login.html b/ReallifeGamemode.Client/assets/html/login/login.html index 856c935a..f5eee977 100644 --- a/ReallifeGamemode.Client/assets/html/login/login.html +++ b/ReallifeGamemode.Client/assets/html/login/login.html @@ -5,10 +5,10 @@ Login | Life of German - - - - + + + + @@ -43,7 +43,7 @@ - - + + diff --git a/ReallifeGamemode.Client/assets/html/login/register.html b/ReallifeGamemode.Client/assets/html/login/register.html index afd9bd89..ab5166c9 100644 --- a/ReallifeGamemode.Client/assets/html/login/register.html +++ b/ReallifeGamemode.Client/assets/html/login/register.html @@ -5,10 +5,10 @@ Registrierung | Life of German - - - - + + + + @@ -50,7 +50,7 @@ - - + + diff --git a/ReallifeGamemode.Client/assets/html/save/blip/index.html b/ReallifeGamemode.Client/assets/html/save/blip/index.html index 52da2d5f..b972895d 100644 --- a/ReallifeGamemode.Client/assets/html/save/blip/index.html +++ b/ReallifeGamemode.Client/assets/html/save/blip/index.html @@ -7,7 +7,7 @@ - + @@ -66,7 +66,7 @@
- - + + \ No newline at end of file diff --git a/ReallifeGamemode.Client/assets/html/sound/index.html b/ReallifeGamemode.Client/assets/html/sound/index.html index c08cf699..73f38382 100644 --- a/ReallifeGamemode.Client/assets/html/sound/index.html +++ b/ReallifeGamemode.Client/assets/html/sound/index.html @@ -17,7 +17,7 @@ + +