From 4c914ede7e790395a193003265eec87ea317acb4 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Tue, 27 Nov 2018 03:01:19 -0800 Subject: Fix links after running linkcheck, excluding HISTORY.txt, a local link, and a bad link in WebOb docs --- docs/quick_tour/sqla_demo/sqla_demo/models/meta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/quick_tour') diff --git a/docs/quick_tour/sqla_demo/sqla_demo/models/meta.py b/docs/quick_tour/sqla_demo/sqla_demo/models/meta.py index 02285b3ff..d659c7857 100644 --- a/docs/quick_tour/sqla_demo/sqla_demo/models/meta.py +++ b/docs/quick_tour/sqla_demo/sqla_demo/models/meta.py @@ -3,7 +3,7 @@ from sqlalchemy.schema import MetaData # Recommended naming convention used by Alembic, as various different database # providers will autogenerate vastly different names making migrations more -# difficult. See: http://alembic.zzzcomputing.com/en/latest/naming.html +# difficult. See: https://alembic.sqlalchemy.org/en/latest/naming.html NAMING_CONVENTION = { "ix": "ix_%(column_0_label)s", "uq": "uq_%(table_name)s_%(column_0_name)s", -- cgit v1.2.3 From dfc9af83ad7e5913410fdd14cbbf017bfe76928c Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Tue, 27 Nov 2018 03:10:40 -0800 Subject: Add a style to show text in input fields. Fixes #3431 The cookiecutter has been updated. - See https://github.com/Pylons/pyramid-cookiecutter-starter/pull/64 --- docs/quick_tour/logging/hello_world/static/theme.css | 3 +++ docs/quick_tour/package/hello_world/static/theme.css | 3 +++ docs/quick_tour/sessions/hello_world/static/theme.css | 3 +++ docs/quick_tour/sqla_demo/sqla_demo/static/theme.css | 3 +++ 4 files changed, 12 insertions(+) (limited to 'docs/quick_tour') diff --git a/docs/quick_tour/logging/hello_world/static/theme.css b/docs/quick_tour/logging/hello_world/static/theme.css index 0f4b1a4d4..a70ee557a 100644 --- a/docs/quick_tour/logging/hello_world/static/theme.css +++ b/docs/quick_tour/logging/hello_world/static/theme.css @@ -17,6 +17,9 @@ h6 { p { font-weight: 300; } +button, input, optgroup, select, textarea { + color: black; +} .font-normal { font-weight: 400; } diff --git a/docs/quick_tour/package/hello_world/static/theme.css b/docs/quick_tour/package/hello_world/static/theme.css index 0f4b1a4d4..a70ee557a 100644 --- a/docs/quick_tour/package/hello_world/static/theme.css +++ b/docs/quick_tour/package/hello_world/static/theme.css @@ -17,6 +17,9 @@ h6 { p { font-weight: 300; } +button, input, optgroup, select, textarea { + color: black; +} .font-normal { font-weight: 400; } diff --git a/docs/quick_tour/sessions/hello_world/static/theme.css b/docs/quick_tour/sessions/hello_world/static/theme.css index 0f4b1a4d4..a70ee557a 100644 --- a/docs/quick_tour/sessions/hello_world/static/theme.css +++ b/docs/quick_tour/sessions/hello_world/static/theme.css @@ -17,6 +17,9 @@ h6 { p { font-weight: 300; } +button, input, optgroup, select, textarea { + color: black; +} .font-normal { font-weight: 400; } diff --git a/docs/quick_tour/sqla_demo/sqla_demo/static/theme.css b/docs/quick_tour/sqla_demo/sqla_demo/static/theme.css index 0f4b1a4d4..a70ee557a 100644 --- a/docs/quick_tour/sqla_demo/sqla_demo/static/theme.css +++ b/docs/quick_tour/sqla_demo/sqla_demo/static/theme.css @@ -17,6 +17,9 @@ h6 { p { font-weight: 300; } +button, input, optgroup, select, textarea { + color: black; +} .font-normal { font-weight: 400; } -- cgit v1.2.3