Removes all \red and \blue's (#2309)

Removes all \red's and \blues in favor of span classes. \red things that were bold were replaced with danger because it's warning but bold.
This commit is contained in:
Ron
2017-05-21 12:07:57 +03:00
committed by skull132
parent fe396373c6
commit 790480c8da
226 changed files with 1027 additions and 1027 deletions
+5 -5
View File
@@ -102,7 +102,7 @@
establish_db_connection(dbcon)
if (!dbcon.IsConnected())
src << "\red Action failed! Database link could not be established!"
src << "<span class='warning'>Action failed! Database link could not be established!</span>"
return
@@ -110,11 +110,11 @@
check_query.Execute(list(":id" = request_id))
if (!check_query.NextRow())
src << "\red No request found!"
src << "<span class='warning'>No request found!</span>"
return
if (ckey(check_query.item[1]) != ckey || check_query.item[2] != "new")
src << "\red Request authentication failed!"
src << "<span class='warning'>Request authentication failed!</span>"
return
var/query_contents = ""
@@ -134,7 +134,7 @@
feedback_message = "<font color='red'><b>Link request rejected!</b></font>"
else
src << "\red Invalid command sent."
src << "<span class='warning'>Invalid command sent.</span>"
return
var/DBQuery/update_query = dbcon.NewQuery(query_contents)
@@ -278,7 +278,7 @@
src.preload_rsc = pick(config.resource_urls)
else src.preload_rsc = 1 // If config.resource_urls is not set, preload like normal.
src << "\red If the title screen is black, resources are still downloading. Please be patient until the title screen appears."
src << "<span class='warning'>If the title screen is black, resources are still downloading. Please be patient until the title screen appears.</span>"
clients += src