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

Remove some unused CSS; fix a link to IRI #193

Merged
merged 1 commit into from
Feb 6, 2025
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
73 changes: 9 additions & 64 deletions spec/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,26 +50,6 @@
</script>

<style>
/* @import url("local.css"); */
/* Inlined to make preview work */

/* CSS For SPARQL Query */

/* In-progress working draft artifacts - to be removed eventually */
.issue { background-color: #fdd;
font-size: 88% ; }
.add { background-color: #7fff7f }
.remove { background-color: #ff7f7f }
ul.issue {}
.issueBlock { margin: 1em 1em 1em 2.5em ; /* Top Right Bottom Left */
padding: 1ex;
/*overflow: auto;*/
page-break-inside: avoid ; }
.issueTopic { font-weight: bold ; }

.todo { font-size: 80% ; color: #444 ; }
p.todo {}

.wgNote { border: 0.2em solid red;
padding: 0.5em ;
margin: 1em 1em 1em 2em ; }
Expand All @@ -81,18 +61,16 @@
margin-top: 0.1ex ; margin-bottom: 0.1ex ;
}

/* Misc WD stuff */
span.cvs-id {color: gray; font-size:80%; display: block; }

/* == General Tag Treatment == */
pre { margin: 1em 4em 1em 2.5em ; /* Top Right Bottom Left */
pre { margin: 1em 4em 1em 2.5em ; /* Top Right Bottom Left */
padding: 1ex;
/*overflow: auto;*/
/*overflow: auto;*/
page-break-inside: avoid ; }

/* Tables */
table, td { text-align: left; }
td, th { border-style: solid;
table, td { text-align: left; }
td, th { border-style: solid;
border-width: 1px;
border-color: black;
border-bottom-color: gray;
Expand Down Expand Up @@ -128,7 +106,6 @@
background-color: #F0F8F8 ; }
div.defn p { margin-top: 1ex ; margin-bottom: 1.5ex ;}
div.defn ul { margin-top: 1ex ; margin-bottom: 1.5ex ; }
@media print { .defn { margin: 1em 1em 1em 1em ; } }
span.definedTerm {font-weight: bold;}

div.grammarExtract
Expand All @@ -139,14 +116,6 @@
background-color: #F8F8F8 ;
width: fit-content; }

pre.codeBlock { font-family:monospace ; page-break-inside: avoid ;
margin: 0 ;
margin-right: 2ex ;
border: thin solid #888888; }




/* Examples */
pre.data { border: thin solid #88AA88;
background-color: #E8F0E8;
Expand Down Expand Up @@ -277,24 +246,6 @@
.SPARQLoperator { background-color: #FFFFbf; /* yellow */
}

.owlnonterminal {
font-weight: bold;
font-family: sans-serif;
font-size: 95%;
}
.owlgrammar {
margin-top: 1ex;
margin-bottom: 1ex;
padding-left: 1ex;
padding-right: 1ex;
padding-top: 1ex;
padding-bottom: 0.6ex;
border: 1px dashed #2f6fab;
font-family: monospace;
}



/* ReSpec */
dfn { font-style: normal ; }
/* ReSpec */
Expand All @@ -303,14 +254,6 @@

div.constraint,
div.issue,
div.notice { margin-left: 2em; }

ol.enumar { list-style-type: decimal; }
ol.enumla { list-style-type: lower-alpha; }
ol.enumlr { list-style-type: lower-roman; }
ol.enumua { list-style-type: upper-alpha; }
ol.enumur { list-style-type: upper-roman; }


div.exampleInner pre { margin-left: 1em;
margin-top: 0em; margin-bottom: 0em}
Expand All @@ -328,7 +271,9 @@
div.exampleHeader { font-weight: bold;
margin: 4px}

@media (max-width: 850px) {
@media print { .defn { margin: 1em 1em 1em 1em ; } }

@media (max-width: 850px) {
table th, table td { font-size: 12px; padding: 3px 4px;}
.result table tr td:nth-child(2n), .result table tr th:nth-child(2n) { overflow-wrap: anywhere; min-width: 90px; }
div.result { overflow-x: scroll; width: fit-content; max-width: 100%; }
Expand Down Expand Up @@ -8031,7 +7976,7 @@ <h3>XPath Constructor Functions</h3>
int = <a data-cite="XMLSCHEMA11-2#dt-integer">xsd:integer</a><br>
dT = <a data-cite="XMLSCHEMA11-2#dt-dateTime">xsd:dateTime</a><br>
str = <a data-cite="XMLSCHEMA11-2#dt-string">xsd:string</a><br>
<span class="rdfDM">IRI</span> = <span class="type IRI">IRI</span></p>
IRI = <a data-cite="RDF12-CONCEPTS#iri">IRI</a>
</blockquote>
<table title="Casting table" class="casting"
style="border-spacing: 1px; border-width:1px">
Expand Down Expand Up @@ -8178,7 +8123,7 @@ <h3>XPath Constructor Functions</h3>
"Cast boolean to boolean? Yes">Y</span></td>
</tr>
<tr>
<th><span class="cancast rdfDM" title="IRI">IRI</span></th>
<th><span class="cancast" title="IRI">IRI</span></th>
<td class="castY" style="vertical-align: middle; text-align: center;"><span class="cancast rdfDM" title=
"Cast IRI to string? Yes">Y</span></td>
<td class="castN" style="vertical-align: middle; text-align: center;"><span class="cancast rdfDM" title=
Expand Down
Loading