Skip to content

Commit

Permalink
Adding a fix for highlight and table overflow (#7007)
Browse files Browse the repository at this point in the history
* Adding a fix for highlight and table overflow

* Updating css

* Testing table-based user experience

* Reverting table display test attempt

* Updating table

---------

Co-authored-by: Carrie Warner (Mattermost) <74422101+cwarnermm@users.noreply.github.com>
  • Loading branch information
asaadmahmood and cwarnermm authored Apr 3, 2024
1 parent db8b28f commit 90bf7e6
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 5 deletions.
25 changes: 23 additions & 2 deletions source/_static/css/homepage-v1.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion source/_static/css/homepage-v1.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 27 additions & 2 deletions source/_static/scss/partials/_blog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -183,12 +183,37 @@ body:not([data-custom-theme="light"]) {
font-size: 12px;
}

table.align-default {
min-width: 500px;
overflow: auto;
}

table.align-default td {
min-width: 200px;
}


::-moz-selection {
/* Code for Firefox */
background: #DEEAFA;
background: hsla(42, 100%, 56%, 0.2);
}

::selection {
background: #DEEAFA;
background: hsla(42, 100%, 56%, 0.2);
}

body:not([data-custom-theme="light"]) {
::-moz-selection {
/* Code for Firefox */
background: hsla(214, 100%, 46%, 0.4);
}

::selection {
background: hsla(214, 100%, 46%, 0.4);
}
}


.bg-white {
background: #fff;
}
8 changes: 8 additions & 0 deletions source/getting-started/architecture-overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -139,43 +139,51 @@ Each AWS diagram represents a full High Availability deployment on Amazon Web Se
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. image:: ../images/MattermostDeployment5kUsers.png
:class: bg-white

5,000 users on Enterprise - AWS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. image:: ../images/MattermostDeployment5kaws.png
:class: bg-white

10,000 users on Enterprise - General
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. image:: ../images/MattermostDeployment10kUsers.png
:class: bg-white

10,000 users on Enterprise - AWS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. image:: ../images/MattermostDeployment10kaws.png
:class: bg-white

25,000 users on Enterprise - General
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. image:: ../images/MattermostDeployment25kUsers.png
:class: bg-white

25,000 users on Enterprise - AWS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. image:: ../images/MattermostDeployment25kaws.png
:class: bg-white

50,000 users on Enterprise - AWS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. image:: ../images/MattermostDeployment50kaws.png
:class: bg-white

Database with VIPs
~~~~~~~~~~~~~~~~~~

The following diagram is a suggested configuration for Highly-Available databases through virtual IPs.

.. image:: ../images/DatabasewithVIPs.png
:class: bg-white

Load testing
~~~~~~~~~~~~
Expand Down

0 comments on commit 90bf7e6

Please sign in to comment.