Skip to content

Commit

Permalink
fix table overflow, table customization should be done by user with c…
Browse files Browse the repository at this point in the history
…ustom css #8
  • Loading branch information
Thecarisma committed Sep 5, 2020
1 parent 79d50a9 commit a02e558
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test_rst/test1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Theme Options
The following theme options are accepted in the theme.

Variable Options
'''''''''''''''''
-----------------

.. csv-table::
:header: "Option <Datatype>", "Description"
Expand Down
2 changes: 2 additions & 0 deletions themata/clear/static/css/clear.css_t
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ dd p {
table {
background-color: {{ theme_table_background_color }}; /* theme_table_background_color */
border-spacing: 1px;
table-layout: fixed;
width: 100%;
}

table * {
Expand Down
2 changes: 2 additions & 0 deletions themata/fandango/static/css/fandango.css_t
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ dd p {
table {
background-color: {{ theme_table_background_color }}; /* theme_table_background_color */
border-spacing: 1px;
table-layout: fixed;
width: 100%;
}

table * {
Expand Down
2 changes: 2 additions & 0 deletions themata/fluid/static/css/fluid.css_t
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ dd p {
table {
background-color: {{ theme_table_background_color }}; /* theme_table_background_color */
border-spacing: 1px;
table-layout: fixed;
width: 100%;
}

table * {
Expand Down
5 changes: 5 additions & 0 deletions themata/garri/static/css/garri.css_t
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ li > dl > dd {
margin-left: 0;
}

table {
table-layout: fixed;
width: 100%;
}

table.hlist {
margin-top: 1em;
}
Expand Down
2 changes: 2 additions & 0 deletions themata/hackish/static/css/hackish.css_t
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ dd p {
table {
background-color: {{ theme_table_background_color }}; /* theme_table_background_color */
border-spacing: 1px;
table-layout: fixed;
width: 100%;
}

table * {
Expand Down
3 changes: 2 additions & 1 deletion themata/milkish/static/css/milkiish.css_t
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ dd p {
table {
background-color: {{ theme_table_background_color }}; /* theme_table_background_color */
border-spacing: 1px;
table-layout: fixed;
width: 100%;
}

table * {
Expand Down Expand Up @@ -212,7 +214,6 @@ pre {
margin-left: 18%;
margin-right: 10px;
line-height: 3vh;
overflow-y:hidden;
}

.sidebar-left ul {
Expand Down
2 changes: 2 additions & 0 deletions themata/sugar/static/css/sugar.css_t
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ dd p {
table {
background-color: {{ theme_table_background_color }}; /* theme_table_background_color */
border-spacing: 1px;
table-layout: fixed;
width: 100%;
}

table * {
Expand Down
2 changes: 2 additions & 0 deletions themata/water/static/css/water.css_t
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ dd p {
table {
background-color: {{ theme_table_background_color }}; /* theme_table_background_color */
border-spacing: 1px;
table-layout: fixed;
width: 100%;
}

table * {
Expand Down

0 comments on commit a02e558

Please sign in to comment.