mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
RCD Rework.
RCDs now work on a system of schematics, with an RPD style UI.
RPD, RCD, RSF and tile painters all implemented into this new system. (reverted from commit ccb9ceb811)
This commit is contained in:
@@ -1,28 +0,0 @@
|
||||
/*Made by N3X15*/
|
||||
|
||||
html {
|
||||
font-family:sans-serif;
|
||||
font-size:small;
|
||||
}
|
||||
a{
|
||||
color:#0066cc;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a img {
|
||||
border:1px solid #0066cc;
|
||||
background:#dfdfdf;
|
||||
}
|
||||
|
||||
a.color {
|
||||
padding: 5px 10px;
|
||||
font-size: large;
|
||||
font-weight: bold;
|
||||
border:1px solid white;
|
||||
}
|
||||
|
||||
a.selected img,
|
||||
a:hover {
|
||||
background: #0066cc;
|
||||
color: #ffffff;
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
/*
|
||||
RCD UI style.
|
||||
N3X15 wrote the stylesheet (originally RPD stylesheet)
|
||||
Made into a htmli datum by PJB3005
|
||||
*/
|
||||
|
||||
/datum/html_interface/rcd
|
||||
default_html_file = 'html_interface_no_bootstrap.html'
|
||||
|
||||
/datum/html_interface/rcd/New()
|
||||
. = ..()
|
||||
head += "<link rel='stylesheet' type='text/css' href='RCD.css'>"
|
||||
|
||||
/datum/html_interface/rcd/sendResources(var/client/client)
|
||||
. = ..()
|
||||
client << browse_rsc('RCD.css')
|
||||
|
||||
//Send the icons.
|
||||
for(var/path in typesof(/datum/rcd_schematic) - /datum/rcd_schematic)
|
||||
var/datum/rcd_schematic/C = new path()
|
||||
C.send_icons(client)
|
||||
@@ -1,15 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
||||
<meta charset="UTF-8" />
|
||||
<title></title>
|
||||
<link rel="stylesheet" type="text/css" href="html_interface.css"/>
|
||||
<script type="text/javascript">var hSrc = "[hsrc]";</script>
|
||||
<script type="text/javascript" src="jquery.min.js"></script>
|
||||
<script type="text/javascript" src="html_interface.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user