diff --git a/pgaweb/templates/pgaweb/styleguide/accordion/accordion.html b/pgaweb/templates/pgaweb/styleguide/accordion/accordion.html index 9cb54d4..f201cf5 100644 --- a/pgaweb/templates/pgaweb/styleguide/accordion/accordion.html +++ b/pgaweb/templates/pgaweb/styleguide/accordion/accordion.html @@ -1,5 +1,8 @@ +{% extends 'pgaweb/styleguide/style_theme.html' %} +{% block title %}Styleguide: Accordion{% endblock %} +{% block styleguide_content %}
-

Accordion

+

Styleguide: Accordion

{% include "pgaweb/styleguide/theme_nav_bar.html" %} @@ -18,4 +21,5 @@

- \ No newline at end of file + +{% endblock %} \ No newline at end of file diff --git a/pgaweb/templates/pgaweb/styleguide/button/button.html b/pgaweb/templates/pgaweb/styleguide/alerts/alerts.html similarity index 62% rename from pgaweb/templates/pgaweb/styleguide/button/button.html rename to pgaweb/templates/pgaweb/styleguide/alerts/alerts.html index 5be1a06..ce2b03e 100644 --- a/pgaweb/templates/pgaweb/styleguide/button/button.html +++ b/pgaweb/templates/pgaweb/styleguide/alerts/alerts.html @@ -1,21 +1,25 @@ +{% extends 'pgaweb/styleguide/style_theme.html' %} +{% block title %}Styleguide: Alert{% endblock %} +{% block styleguide_content %}
-

Buttons

+

Styleguide: Alert

{% include "pgaweb/styleguide/theme_nav_bar.html" %}

- {% include "pgaweb/styleguide/button/sd_button.html" %} + {% include "pgaweb/styleguide/alerts/sd_alert.html" %}
- {% include "pgaweb/styleguide/button/dark_button.html" %} + {% include "pgaweb/styleguide/alerts/dark_alert.html" %}
- {% include "pgaweb/styleguide/button/hc_button.html" %} + {% include "pgaweb/styleguide/alerts/hc_alert.html" %}

-
\ No newline at end of file + +{% endblock %} \ No newline at end of file diff --git a/pgaweb/templates/pgaweb/styleguide/alert/dark_alert.html b/pgaweb/templates/pgaweb/styleguide/alerts/dark_alert.html similarity index 100% rename from pgaweb/templates/pgaweb/styleguide/alert/dark_alert.html rename to pgaweb/templates/pgaweb/styleguide/alerts/dark_alert.html diff --git a/pgaweb/templates/pgaweb/styleguide/alert/hc_alert.html b/pgaweb/templates/pgaweb/styleguide/alerts/hc_alert.html similarity index 100% rename from pgaweb/templates/pgaweb/styleguide/alert/hc_alert.html rename to pgaweb/templates/pgaweb/styleguide/alerts/hc_alert.html diff --git a/pgaweb/templates/pgaweb/styleguide/alert/sd_alert.html b/pgaweb/templates/pgaweb/styleguide/alerts/sd_alert.html similarity index 100% rename from pgaweb/templates/pgaweb/styleguide/alert/sd_alert.html rename to pgaweb/templates/pgaweb/styleguide/alerts/sd_alert.html diff --git a/pgaweb/templates/pgaweb/styleguide/dropdown/dropdown.html b/pgaweb/templates/pgaweb/styleguide/buttons/buttons.html similarity index 61% rename from pgaweb/templates/pgaweb/styleguide/dropdown/dropdown.html rename to pgaweb/templates/pgaweb/styleguide/buttons/buttons.html index 8ab6799..211fa94 100644 --- a/pgaweb/templates/pgaweb/styleguide/dropdown/dropdown.html +++ b/pgaweb/templates/pgaweb/styleguide/buttons/buttons.html @@ -1,21 +1,25 @@ +{% extends 'pgaweb/styleguide/style_theme.html' %} +{% block title %}Styleguide: Button{% endblock %} +{% block styleguide_content %}
-

Dropdowns

+

Styleguide: Button

{% include "pgaweb/styleguide/theme_nav_bar.html" %}

- {% include "pgaweb/styleguide/dropdown/sd_dropdown.html" %} + {% include "pgaweb/styleguide/buttons/sd_button.html" %}
- {% include "pgaweb/styleguide/dropdown/dark_dropdown.html" %} + {% include "pgaweb/styleguide/buttons/dark_button.html" %}
- {% include "pgaweb/styleguide/dropdown/hc_dropdown.html" %} + {% include "pgaweb/styleguide/buttons/hc_button.html" %}

-
\ No newline at end of file + +{% endblock %} \ No newline at end of file diff --git a/pgaweb/templates/pgaweb/styleguide/button/dark_button.html b/pgaweb/templates/pgaweb/styleguide/buttons/dark_button.html similarity index 100% rename from pgaweb/templates/pgaweb/styleguide/button/dark_button.html rename to pgaweb/templates/pgaweb/styleguide/buttons/dark_button.html diff --git a/pgaweb/templates/pgaweb/styleguide/button/hc_button.html b/pgaweb/templates/pgaweb/styleguide/buttons/hc_button.html similarity index 100% rename from pgaweb/templates/pgaweb/styleguide/button/hc_button.html rename to pgaweb/templates/pgaweb/styleguide/buttons/hc_button.html diff --git a/pgaweb/templates/pgaweb/styleguide/button/sd_button.html b/pgaweb/templates/pgaweb/styleguide/buttons/sd_button.html similarity index 100% rename from pgaweb/templates/pgaweb/styleguide/button/sd_button.html rename to pgaweb/templates/pgaweb/styleguide/buttons/sd_button.html diff --git a/pgaweb/templates/pgaweb/styleguide/checkbox/checkbox.html b/pgaweb/templates/pgaweb/styleguide/checkbox/checkbox.html index c1ee04e..13dfafb 100644 --- a/pgaweb/templates/pgaweb/styleguide/checkbox/checkbox.html +++ b/pgaweb/templates/pgaweb/styleguide/checkbox/checkbox.html @@ -1,5 +1,8 @@ +{% extends 'pgaweb/styleguide/style_theme.html' %} +{% block title %}Styleguide: Checkbox{% endblock %} +{% block styleguide_content %}
-

Checkbox

+

Styleguide: Checkbox

{% include "pgaweb/styleguide/theme_nav_bar.html" %} @@ -18,4 +21,5 @@

- \ No newline at end of file + +{% endblock %} \ No newline at end of file diff --git a/pgaweb/templates/pgaweb/styleguide/color_palette/color_palette.html b/pgaweb/templates/pgaweb/styleguide/color_palette/color_palette.html index cc317e9..3b433bf 100644 --- a/pgaweb/templates/pgaweb/styleguide/color_palette/color_palette.html +++ b/pgaweb/templates/pgaweb/styleguide/color_palette/color_palette.html @@ -1,5 +1,8 @@ +{% extends 'pgaweb/styleguide/style_theme.html' %} +{% block title %}Styleguide: Color Palette{% endblock %} +{% block styleguide_content %}
-

Color Palette

+

Styleguide: Color Palette

pgAdmin uses standard sets of colors for consistency and style. We are also committed to complying with AA standard contrast ratios (AAA for the high contrast theme). @@ -29,4 +32,6 @@

- \ No newline at end of file + +{% endblock %} + diff --git a/pgaweb/templates/pgaweb/styleguide/dropdown/dark_dropdown.html b/pgaweb/templates/pgaweb/styleguide/dropdowns/dark_dropdown.html similarity index 100% rename from pgaweb/templates/pgaweb/styleguide/dropdown/dark_dropdown.html rename to pgaweb/templates/pgaweb/styleguide/dropdowns/dark_dropdown.html diff --git a/pgaweb/templates/pgaweb/styleguide/menu/menu.html b/pgaweb/templates/pgaweb/styleguide/dropdowns/dropdowns.html similarity index 61% rename from pgaweb/templates/pgaweb/styleguide/menu/menu.html rename to pgaweb/templates/pgaweb/styleguide/dropdowns/dropdowns.html index 8f3bf50..5ca394b 100644 --- a/pgaweb/templates/pgaweb/styleguide/menu/menu.html +++ b/pgaweb/templates/pgaweb/styleguide/dropdowns/dropdowns.html @@ -1,21 +1,25 @@ +{% extends 'pgaweb/styleguide/style_theme.html' %} +{% block title %}Styleguide: Dropdown{% endblock %} +{% block styleguide_content %}
-

Menu

+

Styleguide: Dropdown

{% include "pgaweb/styleguide/theme_nav_bar.html" %}

- {% include "pgaweb/styleguide/menu/sd_menu.html" %} + {% include "pgaweb/styleguide/dropdowns/sd_dropdown.html" %}
- {% include "pgaweb/styleguide/menu/dark_menu.html" %} + {% include "pgaweb/styleguide/dropdowns/dark_dropdown.html" %}
- {% include "pgaweb/styleguide/menu/hc_menu.html" %} + {% include "pgaweb/styleguide/dropdowns/hc_dropdown.html" %}

-
\ No newline at end of file + +{% endblock %} \ No newline at end of file diff --git a/pgaweb/templates/pgaweb/styleguide/dropdown/hc_dropdown.html b/pgaweb/templates/pgaweb/styleguide/dropdowns/hc_dropdown.html similarity index 100% rename from pgaweb/templates/pgaweb/styleguide/dropdown/hc_dropdown.html rename to pgaweb/templates/pgaweb/styleguide/dropdowns/hc_dropdown.html diff --git a/pgaweb/templates/pgaweb/styleguide/dropdown/sd_dropdown.html b/pgaweb/templates/pgaweb/styleguide/dropdowns/sd_dropdown.html similarity index 100% rename from pgaweb/templates/pgaweb/styleguide/dropdown/sd_dropdown.html rename to pgaweb/templates/pgaweb/styleguide/dropdowns/sd_dropdown.html diff --git a/pgaweb/templates/pgaweb/styleguide/iconography/iconography.html b/pgaweb/templates/pgaweb/styleguide/iconography/iconography.html index 79fb2ef..12e1d36 100644 --- a/pgaweb/templates/pgaweb/styleguide/iconography/iconography.html +++ b/pgaweb/templates/pgaweb/styleguide/iconography/iconography.html @@ -1,4 +1,7 @@ -

Iconography

+{% extends 'pgaweb/styleguide/style_theme.html' %} +{% block title %}Styleguide: Iconography{% endblock %} +{% block styleguide_content %} +

Styleguide: Iconography

Icons are visual representations of commands, files or common actions. They should be meaningful, simple and legible. pgAdmin uses custom as well as @@ -42,4 +45,5 @@

- \ No newline at end of file + +{% endblock %} \ No newline at end of file diff --git a/pgaweb/templates/pgaweb/styleguide/iconography/style_iconography_theme.html b/pgaweb/templates/pgaweb/styleguide/iconography/style_iconography_theme.html index bf27331..0f04ca1 100644 --- a/pgaweb/templates/pgaweb/styleguide/iconography/style_iconography_theme.html +++ b/pgaweb/templates/pgaweb/styleguide/iconography/style_iconography_theme.html @@ -3,7 +3,7 @@