next set of spans (#16434)

* next set of spans

* some more

* next

* next

* next

* .

* text...

* next... rest soon

* .

* .

* ok last set for the night

* .

* .

* .

* .

* some more

* next

* next

* all for now

* .

* some more easy ones

* some more easy ones

* .

* .

* some more bolds

* oups auto complete moment

* add the remaining spans

* this as well

* this as well

* .

* .,

* resync them properly
This commit is contained in:
Kashargul
2024-10-16 23:37:27 +02:00
committed by GitHub
parent 6275972fef
commit b594520a74
604 changed files with 2801 additions and 2638 deletions
+3 -3
View File
@@ -103,8 +103,8 @@ GLOBAL_DATUM_INIT(catalogue_data, /datum/category_collection/catalogue, new)
. += item
/datum/category_item/catalogue/proc/display_in_chatlog(mob/user)
to_chat(user, "<br>")
to_chat(user, span_notice("<b>[uppertext(name)]</b>"))
to_chat(user, span_infoplain("<br>"))
to_chat(user, span_boldnotice("[uppertext(name)]"))
// Some entries get very long so lets not totally flood the chatlog.
var/desc_length_limit = 750
@@ -113,7 +113,7 @@ GLOBAL_DATUM_INIT(catalogue_data, /datum/category_collection/catalogue, new)
displayed_desc = copytext(displayed_desc, 1, desc_length_limit + 1)
displayed_desc += "... (View databanks for full data)"
to_chat(user, span_notice("<i>[displayed_desc]</i>"))
to_chat(user, span_notice(span_italics("[displayed_desc]")))
to_chat(user, span_notice("Cataloguers : <b>[english_list(cataloguers)]</b>."))
to_chat(user, span_notice("Contributes <b>[value]</b> points to personal exploration fund."))
+2 -2
View File
@@ -258,7 +258,7 @@ GLOBAL_LIST_EMPTY(all_cataloguers)
dat += "<a href='?src=\ref[src];debug_unlock=\ref[displayed_data]'>\[(DEBUG) Force Discovery\]</a>"
dat += "<hr>"
dat += "<i>[displayed_data.desc]</i>"
dat += span_italics("[displayed_data.desc]")
if(LAZYLEN(displayed_data.cataloguers))
dat += "Cataloguers : <b>[english_list(displayed_data.cataloguers)]</b>."
else
@@ -271,7 +271,7 @@ GLOBAL_LIST_EMPTY(all_cataloguers)
var/list/group_dat = list()
var/show_group = FALSE
group_dat += "<b>[group.name]</b>"
group_dat += span_bold("[group.name]")
for(var/datum/category_item/catalogue/item as anything in group.items)
if(item.visible || debug)
group_dat += "<a href='?src=\ref[src];show_data=\ref[item]'>[item.name]</a>"