diff --git a/client/coral-admin/src/routes/Community/components/People.css b/client/coral-admin/src/routes/Community/components/People.css index 669da480d..ac565c8f8 100644 --- a/client/coral-admin/src/routes/Community/components/People.css +++ b/client/coral-admin/src/routes/Community/components/People.css @@ -133,6 +133,7 @@ th.header:nth-child(2), th.header:nth-child(3) { .roleDropdown { width: 150px; + text-align: left; } .roleOption { diff --git a/client/coral-admin/src/routes/Community/components/People.js b/client/coral-admin/src/routes/Community/components/People.js index ce9a8b75a..d152f83e3 100644 --- a/client/coral-admin/src/routes/Community/components/People.js +++ b/client/coral-admin/src/routes/Community/components/People.js @@ -202,7 +202,7 @@ class People extends React.Component { this.props.onStatusChange(value, id)} > - ); }; diff --git a/client/coral-ui/components/Dropdown.css b/client/coral-ui/components/Dropdown.css index 3128a8be4..400654f94 100644 --- a/client/coral-ui/components/Dropdown.css +++ b/client/coral-ui/components/Dropdown.css @@ -1,4 +1,5 @@ .dropdown { + display: inline-block; position: relative; } diff --git a/client/coral-ui/components/Option.css b/client/coral-ui/components/Option.css index eb76df93d..cc5ac1263 100644 --- a/client/coral-ui/components/Option.css +++ b/client/coral-ui/components/Option.css @@ -1,4 +1,5 @@ .option { + min-width: 100px; width: 100%; padding: 10px; outline: none; diff --git a/views/auth-callback.njk b/views/auth-callback.njk index 7119a6255..cfd439ea0 100644 --- a/views/auth-callback.njk +++ b/views/auth-callback.njk @@ -4,7 +4,7 @@ {% include "partials/data.njk" %} - + diff --git a/views/embed/stream.njk b/views/embed/stream.njk index ddc620f8e..9b237b5c2 100644 --- a/views/embed/stream.njk +++ b/views/embed/stream.njk @@ -5,6 +5,9 @@ {% block css %} + +{# Custom CSS is included after the CSS block so that its overrides will apply #} +{% include "partials/custom-css.njk" %} {% endblock %} {% block html %} diff --git a/views/login.njk b/views/login.njk index 6a3c1112f..7198dbdff 100644 --- a/views/login.njk +++ b/views/login.njk @@ -4,6 +4,9 @@ {% block css %} + +{# Custom CSS is included after the CSS block so that its overrides will apply #} +{% include "partials/custom-css.njk" %} {% endblock %} {% block html %} diff --git a/views/templates/account.njk b/views/templates/account.njk index 7e1b6e6c9..bcda22a67 100644 --- a/views/templates/account.njk +++ b/views/templates/account.njk @@ -3,4 +3,7 @@ {% block css %} + +{# Custom CSS is included after the CSS block so that its overrides will apply #} +{% include "partials/custom-css.njk" %} {% endblock %} diff --git a/views/templates/base.njk b/views/templates/base.njk index 23048151e..3a5331a1d 100644 --- a/views/templates/base.njk +++ b/views/templates/base.njk @@ -19,7 +19,6 @@ - {% include "partials/custom-css.njk" %} {% block css %}{% endblock %} {# Static data injection #}