1
0
mirror of https://github.com/minio/docs.git synced 2025-07-30 07:03:26 +03:00

Keep same font size for every element in table

Fixes #419
This commit is contained in:
Kaan Kabalak
2022-02-07 16:21:44 -08:00
committed by Ravind Kumar
parent 8e4b9524e5
commit 9b4824970a
3 changed files with 3 additions and 14 deletions

View File

@ -344,27 +344,22 @@ table.docutils {
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
font-size: 0.9rem;
}
table.docutils > tbody tr th.stub {
border: none;
border-bottom: 1px solid #e6e6e6;
color: #C72C48;
font-size: 0.9rem;
}
table.docutils > thead tr th {
border: none;
border-bottom: 1px solid #e6e6e6;
font-size: 1rem;
color: #C72C48;
font-size: 0.9rem;
}
table.docutils > tbody tr td {
border: none;
border-bottom: 1px solid #e6e6e6;
}
table.docutils > tbody tr td > p {
font-size: 0.9rem;
}
.sphinx-tabs-tab {
color: rgba(0, 0, 0, 0.5);

File diff suppressed because one or more lines are too long

View File

@ -144,29 +144,23 @@ table.docutils {
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
font-size: .9rem;
& > tbody tr th.stub {
border: none;
border-bottom: 1px solid $docs-item-table-border;
color: $theme-red;
font-size: .9rem;
}
& > thead tr th {
border: none;
border-bottom: 1px solid $docs-item-table-border;
font-size: 1rem;
color: $theme-red;
font-size: .9rem;
}
& > tbody tr td {
border: none;
border-bottom: 1px solid $docs-item-table-border;
& > p {
font-size: .90rem;
}
}
}