add noscript notices to entry pages
This commit is contained in:
parent
cbb9982ee0
commit
8491624390
|
@ -120,6 +120,12 @@ window.onload = init;
|
|||
|
||||
<div id="prefContent">
|
||||
<p>Loading, please wait...</p>
|
||||
<noscript>
|
||||
<div class="error">
|
||||
Your browser doesn't support Javascript, which is required
|
||||
for this application to function properly. Please check your
|
||||
browser settings.</div>
|
||||
</noscript>
|
||||
</div>
|
||||
|
||||
<div id="prefFooter">
|
||||
|
|
15
tt-rss.css
15
tt-rss.css
|
@ -564,19 +564,20 @@ div.notice {
|
|||
font-size : small;
|
||||
}
|
||||
|
||||
div.error {
|
||||
border : 1px solid #ff0000;
|
||||
background : #ffcccc;
|
||||
padding : 5px;
|
||||
margin : 0px 0px 5px 0px;
|
||||
font-size : small;
|
||||
}
|
||||
|
||||
ul.nomarks {
|
||||
list-style-type : none;
|
||||
margin : 0px;
|
||||
padding : 10px;
|
||||
}
|
||||
|
||||
div.bigErrorMsg {
|
||||
border : 1px solid #c0c0c0;
|
||||
background : #fff0f0;
|
||||
padding : 30px;
|
||||
margin : 20px;
|
||||
}
|
||||
|
||||
div.prefHelp, td.prefHelp {
|
||||
font-size : small;
|
||||
color : gray;
|
||||
|
|
12
tt-rss.php
12
tt-rss.php
|
@ -71,7 +71,17 @@
|
|||
|
||||
<iframe id="backReqBox"></iframe>
|
||||
|
||||
<div id="overlay"><div id="overlay_inner">Loading, please wait...</div></div>
|
||||
<div id="overlay">
|
||||
<div id="overlay_inner">
|
||||
<p>Loading, please wait...</p>
|
||||
<noscript>
|
||||
<div class="error">
|
||||
Your browser doesn't support Javascript, which is required
|
||||
for this application to function properly. Please check your
|
||||
browser settings.</div>
|
||||
</noscript>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="notify" class="notify"><span id="notify_body"> </span></div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue