From a2e2460be21236d1b9f2e4ef24af14d757ef50f7 Mon Sep 17 00:00:00 2001 From: peterdesmet Date: Fri, 3 Feb 2023 17:34:44 +0100 Subject: [PATCH] Move first col styling to custom and enable it for all tables --- build/terms.tmpl | 6 ------ docs/_sass/_custom.scss | 9 +++++++++ docs/terms/index.md | 6 ------ 3 files changed, 9 insertions(+), 12 deletions(-) create mode 100644 docs/_sass/_custom.scss diff --git a/build/terms.tmpl b/build/terms.tmpl index d748fa2..9cf28f1 100644 --- a/build/terms.tmpl +++ b/build/terms.tmpl @@ -5,12 +5,6 @@ # Darwin Core Quick Reference Guide - - This document is intended to be an easy-to-read reference of the currently (as of 2021-07-15) recommended terms maintained as part of the [Darwin Core standard](https://www.tdwg.org/standards/dwc/) and is maintained by the [Darwin Core Maintenance Group](https://www.tdwg.org/community/dwc/). This page is not part of the standard, but combines the normative term names and definitions with the non-normative comments and examples that are meant to help people to use the terms consistently. Capitalized terms, such as Occurrence, are Darwin Core classes, which are special category terms used to group sets of terms for convenience. Comprehensive metadata for current and obsolete terms in human readable form are found in the document [List of Darwin Core terms](../list/). diff --git a/docs/_sass/_custom.scss b/docs/_sass/_custom.scss new file mode 100644 index 0000000..6124b00 --- /dev/null +++ b/docs/_sass/_custom.scss @@ -0,0 +1,9 @@ +// Custom styling + +.content { + table { + td:first-of-type { + width: 120px; // Label column, long words will still push this wider + } + } +} diff --git a/docs/terms/index.md b/docs/terms/index.md index 06c6e04..202498c 100644 --- a/docs/terms/index.md +++ b/docs/terms/index.md @@ -1,12 +1,6 @@ # Darwin Core Quick Reference Guide - - This document is intended to be an easy-to-read reference of the currently (as of 2021-07-15) recommended terms maintained as part of the [Darwin Core standard](https://www.tdwg.org/standards/dwc/) and is maintained by the [Darwin Core Maintenance Group](https://www.tdwg.org/community/dwc/). This page is not part of the standard, but combines the normative term names and definitions with the non-normative comments and examples that are meant to help people to use the terms consistently. Capitalized terms, such as Occurrence, are Darwin Core classes, which are special category terms used to group sets of terms for convenience. Comprehensive metadata for current and obsolete terms in human readable form are found in the document [List of Darwin Core terms](../list/).