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

Fix link controls getting cropped out under the table when zoom to 400% #379

Merged
merged 1 commit into from
Feb 5, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions pages/documentation/uri-conventions.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h2>1. URI Components</h2>
<h2>2. Service Root URI</h2>
<p>The service root URI identifies the root of an OData service. The resource identified by this URI MUST be an AtomPub Service Document (as specified in [RFC5023]) and follow the OData conventions for AtomPub Service Documents (or an alternate representation of an Atom Service Document if a different format is requested). OData: JSON Format specifies such an alternate JSON-based representation of a service document. The service document is required to be returned from the root of an OData service to provide clients with a simple mechanism to enumerate all of the collections of resources available for the data service.</p>
<div>
<table border="1" cellspacing="0" cellpadding="0" aria-label="Service Root URIs Examples">
<table class="uri-conventions-table" border="1" cellspacing="0" cellpadding="0" aria-label="Service Root URIs Examples">
<tbody>
<tr>
<th>Example Request URI</th>
Expand Down Expand Up @@ -320,7 +320,7 @@ <h3> 4.5. Filter System Query Option ($filter)</h3>
</div>
<p>In addition to operators, a set of functions are also defined for use with the filter query string operator. The following table lists the available functions. Note: ISNULL or COALESCE operators are not defined. Instead, there is a null literal which can be used in comparisons.</p>
<div>
<table border="1" cellspacing="0" cellpadding="0" aria-label="Functions for use with Filter Query Option">
<table border="1" class="uri-conventions-table" cellspacing="0" cellpadding="0" aria-label="Functions for use with Filter Query Option">
<tbody>
<tr>
<th valign="top">Function</th>
Expand Down
5 changes: 5 additions & 0 deletions public/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@ code {
width: 100%;
font-size-adjust: auto;
}

.uri-conventions-table > tbody > tr > td {
word-break: break-all;
}

#index-guide{
padding-left: 60px;
padding-right: 60px;
Expand Down