-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Removed somes images (.png) + And replaced by SVG * Modified some files
- Loading branch information
Showing
14 changed files
with
119 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* This file is important for the script to work. | ||
* | ||
* @author: iKlem <[email protected]> | ||
* @version: 1.1 | ||
* @version: 1.1.1 | ||
*/ | ||
|
||
//Number of files to download | ||
|
@@ -26,7 +26,8 @@ var isAnimate = false; | |
|
||
|
||
/* IMAGE SVG */ | ||
var dlFile = "<svg class='dlImg' xmlns='http://www.w3.org/2000/svg' width='90px' height='90px' viewBox='0 0 128 128'><path id='dlSVG' fill='black' stroke='black' stroke-width='1' d='M 110.00,116.00 C 110.00,116.00 110.00,124.00 110.00,124.00 110.00,124.00 20.00,124.00 20.00,124.00 20.00,124.00 20.00,116.00 20.00,116.00 20.00,116.00 110.00,116.00 110.00,116.00 Z M 83.00,3.00 C 83.00,3.00 83.00,65.00 83.00,65.00 83.00,65.00 110.00,65.00 110.00,65.00 110.00,65.00 97.63,78.88 97.63,78.88 97.63,78.88 76.63,99.88 76.63,99.88 76.63,99.88 64.88,111.13 64.88,111.13 64.88,111.13 53.13,99.63 53.13,99.63 53.13,99.63 32.38,79.00 32.38,79.00 32.38,79.00 20.00,65.00 20.00,65.00 20.00,65.00 47.00,65.00 47.00,65.00 47.00,65.00 47.00,3.00 47.00,3.00 47.00,3.00 83.00,3.00 83.00,3.00 Z' /></svg>" | ||
var dlFile = "./img/dl.svg" | ||
var theGear = "./img/gear.svg" | ||
|
||
/* DEBUG VALUES */ | ||
/* --- */ | ||
|
@@ -77,7 +78,7 @@ function DownloadingFile(fileName) { | |
$("#loadBar-width").css({"visibility": "visible"}); | ||
isDownload = true; | ||
$("#stateLoad").html("Downloading " + fileName); | ||
$("#imgLoad").html(dlFile); | ||
$("#noBorder").attr("src", dlFile); | ||
$("#noBorder").attr("class", "NOPE"); | ||
var splitSTR = fileName.split(" "); | ||
for (var i = 0; i<splitSTR.length; i++) { | ||
|
@@ -104,7 +105,7 @@ function SetStatusChanged(status) { | |
} | ||
} | ||
$("#stateLoad").html(status); | ||
$("#noBorder").attr("src", "./img/gear.png"); | ||
$("#noBorder").attr("src", theGear); | ||
$("#noBorder").attr("class", "walk"); | ||
RefreshFileBox(); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
/* | ||
* @author: iKlem <[email protected]> | ||
* @version: 1.0 | ||
* @version: 1.1 | ||
*/ | ||
|
||
/* Change the background image and color. */ | ||
body { | ||
background: #CCCCCC url("img/bg.jpg"); | ||
background: #CCCCCC url("img/bg.png"); | ||
} | ||
|
||
/* Change the background color of the left panel */ | ||
|
@@ -19,35 +19,6 @@ h1, #player { | |
background-color: #045FB4; | ||
} | ||
|
||
/* SVG COLORATION - dl.svg */ | ||
#dlSVG { | ||
fill: #176BAA; | ||
stroke: black; | ||
stroke-width: 1px; | ||
} | ||
|
||
/* SVG COLORATION - Gmod logo | ||
* Uncomment what you need and don't forget to comment the other one | ||
*/ | ||
/* With stroke */ | ||
/*#square { | ||
fill: #045FB4; | ||
stroke: black; | ||
stroke-width: 1px; | ||
}*/ | ||
/* Without stroke */ | ||
#square { | ||
fill: #045FB4; | ||
stroke: none; | ||
stroke-width: 0px; | ||
} | ||
|
||
#G { | ||
fill: white; | ||
stroke: black; | ||
stroke-width: 1px; | ||
} | ||
|
||
/* Change the background color of the back bar */ | ||
#loadBar { | ||
background-color: #939393; | ||
|