Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve display on mobile phones #20

Merged
merged 8 commits into from
May 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 23 additions & 11 deletions spec/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,20 +57,32 @@
display:block;
}
.separated { border-collapse:collapse; }
.separated thead tr th { border:1px solid black; padding: .2em; }
.separated tbody tr td { border:1px solid black; text-align: center; }
.separated thead tr th { border:1px solid black; padding: .2em; min-width: 10vw }
.separated tbody tr td { border:1px solid black; text-align: center; min-width: 10vw }
.separated tbody tr td.r { text-align: right; padding: .5em; }
.grammar td { font-family: monospace; vertical-align: top; }
.grammar-literal { color: gray;}
.grammar_comment { color: #A52A2A; font-style: italic; }
.hl-bold { font-weight: bold; color: #0a3; }
code {color: #ff4500;} /* Old W3C Style */
code { color: #ff4500; } /* Old W3C Style */
@media (max-width: 850px) {
table th, table td { font-size: 12px; padding: 3px 4px;}
table.ex th, table.ex td {overflow-x: scroll; max-width: 42vw !important;}
}
@media (max-width: 767px) {
table { word-break: break-all; }
.separated thead tr th { border:1px solid black; padding: .2em; min-width: 10vw }
.separated thead tr th:nth-child(2) { word-break: break-all; }
.separated tbody tr td:nth-child(2) {padding: 3px 2px;}
.separated tbody tr td:nth-child(3) {padding: 3px 2px;}
.separated tbody tr td { border:1px solid black; text-align: center; min-width: 10vw }
table { word-break: normal; overflow-wrap: anywhere; }
table.ex, .ex th, .ex td { border: none; padding: 0; }
table.ex { font-size: 1.4vw; }
.separated tbody tr td:first-child, .separated tbody tr th:first-child {max-width: 220px; overflow-wrap: anywhere;}

table.ex, .ex th, .ex td {
border: none;
padding: 0;
}
.ex th {text-align: center;}
.ex th { text-align: center; }
</style>
</head>

Expand Down Expand Up @@ -1020,20 +1032,20 @@ <h3>Escape Sequences</h3>
<a href="#grammar-production-sparqlPrefix">PREFIX</a>,
<a href="#grammar-production-base">@base</a>,
or <a href="#grammar-production-sparqlBase">BASE</a> declarations</td>
<td style="background-color: green; border:1px solid black;">yes</td>
<td style="background-color: lightgreen; border:1px solid black;">yes</td>
<td>no</td>
<td>no</td>
</tr>
<tr>
<td class="r"><a href="#grammar-production-PN_LOCAL"><span style="font-weight:bold;">local name</span>s</a></td>
<td>no</td>
<td>no</td>
<td style="background-color: green; border:1px solid black;">yes</td>
<td style="background-color: lightgreen; border:1px solid black;">yes</td>
</tr>
<tr>
<td class="r"><span style="font-weight:bold;">String</span>s</td>
<td style="background-color: green; border:1px solid black;">yes</td>
<td style="background-color: green; border:1px solid black;">yes</td>
<td style="background-color: lightgreen; border:1px solid black;">yes</td>
<td style="background-color: lightgreen; border:1px solid black;">yes</td>
<td>no</td>
</tr>
</tbody>
Expand Down