Commit fe0ef388 authored by Mark Otto's avatar Mark Otto
Browse files

Fixes #14095: Add basic styling for captions, which we've for some reason been...

Fixes #14095: Add basic styling for captions, which we've for some reason been missing all this time.
parent 2962f845
4 merge requests!28721Hot test,!16605Test pull please ignore,!22103test,!25326Adjust examples
Showing with 21 additions and 3 deletions
+21 -3
...@@ -2055,6 +2055,12 @@ pre code { ...@@ -2055,6 +2055,12 @@ pre code {
table { table {
background-color: transparent; background-color: transparent;
} }
caption {
padding-top: 8px;
padding-bottom: 8px;
color: #777;
text-align: left;
}
th { th {
text-align: left; text-align: left;
} }
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -2055,6 +2055,12 @@ pre code { ...@@ -2055,6 +2055,12 @@ pre code {
table { table {
background-color: transparent; background-color: transparent;
} }
caption {
padding-top: 8px;
padding-bottom: 8px;
color: #777;
text-align: left;
}
th { th {
text-align: left; text-align: left;
} }
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -6,6 +6,12 @@ ...@@ -6,6 +6,12 @@
table { table {
background-color: @table-bg; background-color: @table-bg;
} }
caption {
padding-top: @table-cell-padding;
padding-bottom: @table-cell-padding;
color: @text-muted;
text-align: left;
}
th { th {
text-align: left; text-align: left;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment