1
0
mirror of https://github.com/minio/docs.git synced 2025-07-28 19:42:10 +03:00

Minor ui/ux tweaks

This commit is contained in:
ravindk89
2021-01-14 19:38:53 -05:00
parent 78108c0b40
commit f52f6abf03
3 changed files with 19 additions and 1 deletions

View File

@ -243,6 +243,10 @@ table.docutils {
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none; }
table.docutils > tbody tr th.stub {
border: none;
border-bottom: 1px solid #e6e6e6;
color: #C72C48; }
table.docutils > thead tr th {
border: none;
border-bottom: 1px solid #e6e6e6;
@ -257,6 +261,10 @@ table.docutils {
.xref {
color: #C72C48; }
img {
-webkit-box-shadow: 0px 0px 5px lightgray;
box-shadow: 0px 0px 5px lightgray; }
@media (min-width: 1200px) {
.content, .header {
padding: 0 4rem; } }

File diff suppressed because one or more lines are too long

View File

@ -87,6 +87,12 @@ table.docutils {
-webkit-box-shadow: none;
-moz-box-shadow: none;
& > tbody tr th.stub {
border: none;
border-bottom: 1px solid $docs-item-table-border;
color: $theme-red
}
& > thead tr th {
border: none;
border-bottom: 1px solid $docs-item-table-border;
@ -107,4 +113,8 @@ table.docutils {
.xref {
color: $theme-red;
}
img {
box-shadow: 0px 0px 5px lightgray;
}