diff --git a/ckanext/opendata_theme/extended_themes/virginiaogda/public/css/custom.css b/ckanext/opendata_theme/extended_themes/virginiaogda/public/css/custom.css index 57387cc1..5e6615ec 100644 --- a/ckanext/opendata_theme/extended_themes/virginiaogda/public/css/custom.css +++ b/ckanext/opendata_theme/extended_themes/virginiaogda/public/css/custom.css @@ -315,7 +315,6 @@ aside.secondary .filters .accordion-group .accordion-toggle.collapsed[data-toggl /* Additional info tables */ .table.table-striped.table-bordered.table-condensed { - border: 1px solid #000000; border-collapse: collapse; width: 100%; margin: 0 auto; @@ -331,7 +330,6 @@ aside.secondary .filters .accordion-group .accordion-toggle.collapsed[data-toggl } .table.table-striped.table-bordered.table-condensed { - border: 1px solid #000000; border-collapse: collapse; width: 100%; margin: 0 auto; diff --git a/ckanext/opendata_theme/extended_themes/virginiaogda/public/css/custom.scss b/ckanext/opendata_theme/extended_themes/virginiaogda/public/css/custom.scss index e259b459..ac60b579 100644 --- a/ckanext/opendata_theme/extended_themes/virginiaogda/public/css/custom.scss +++ b/ckanext/opendata_theme/extended_themes/virginiaogda/public/css/custom.scss @@ -305,7 +305,6 @@ aside.secondary { /* Additional info tables */ .table.table-striped.table-bordered.table-condensed{ - border: 1px solid #000000; border-collapse: collapse; width: 100%; margin: 0 auto; @@ -317,12 +316,10 @@ aside.secondary { .dataset-label{ background-color: #173055; color: #fff; - } - - } + } +} .table.table-striped.table-bordered.table-condensed{ - border: 1px solid #000000; border-collapse: collapse; width: 100%; margin: 0 auto; @@ -331,11 +328,11 @@ aside.secondary { font-weight: normal; line-height: 1.5; tr { - th[scope="row"]{ - background-color: #173055!important; - color: #fff; - } + th[scope="row"]{ + background-color: #173055!important; + color: #fff; } + } } @media (min-width: 980px) { diff --git a/ckanext/opendata_theme/extended_themes/virginiaogda/templates/base.html b/ckanext/opendata_theme/extended_themes/virginiaogda/templates/base.html index 5ddbaeaf..609a34f6 100644 --- a/ckanext/opendata_theme/extended_themes/virginiaogda/templates/base.html +++ b/ckanext/opendata_theme/extended_themes/virginiaogda/templates/base.html @@ -7,6 +7,5 @@ {%- block scripts %} {{ super() }} - {% endblock -%} diff --git a/ckanext/opendata_theme/extended_themes/virginiaogda/templates/page.html b/ckanext/opendata_theme/extended_themes/virginiaogda/templates/page.html new file mode 100644 index 00000000..c58c0c5e --- /dev/null +++ b/ckanext/opendata_theme/extended_themes/virginiaogda/templates/page.html @@ -0,0 +1,6 @@ +{% ckan_extends %} + +{%- block scripts %} + {{ super() }} + +{% endblock -%} diff --git a/ckanext/opendata_theme/opengov_custom_theme/templates/snippets/activity_stream.html b/ckanext/opendata_theme/opengov_custom_theme/templates/snippets/activity_stream.html new file mode 100644 index 00000000..4af4321d --- /dev/null +++ b/ckanext/opendata_theme/opengov_custom_theme/templates/snippets/activity_stream.html @@ -0,0 +1,26 @@ +{% ckan_extends %} + +{% block activity_stream %} + {% if activity_stream|length > 0 %} + + {% else %} +

+ {{ _('No activity found') }}. +

+ {% endif %} +{% endblock %}