yWeb: drop obsolete type="text/css" statement; pt. 2

Origin commit data
------------------
Branch: ni/coolstream
Commit: ac54fd3802
Author: vanhofen <vanhofen@gmx.de>
Date: 2023-02-18 (Sat, 18 Feb 2023)

Origin message was:
------------------
- yWeb: drop obsolete type="text/css" statement; pt. 2

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2023-02-18 23:49:00 +01:00
parent 6cedf045cf
commit 3ff251a1f7
13 changed files with 21 additions and 21 deletions

View File

@@ -6,7 +6,7 @@ start-block~neutrino_form
{=include-block:Y_Blocks.txt;head=}
{=include-block:Y_Blocks.txt;js_prototype=}
<script src="/Y_Baselib.js"></script>
<style type="text/css">
<style>
.line {border-top: 1px solid #6D96A9;}
</style>
{=include-block:Y_Blocks.txt;head_close=}

View File

@@ -96,7 +96,7 @@ function do_rename(){
alert("{=L:bou.no_bouquet_name=}!");
}
</script>
<style type="text/css">
<style>
.fly_form
{
visibility: hidden;

View File

@@ -21,7 +21,7 @@
{=var-set:doscamport={=script:Y_NI_Tools get_doscam_webif_port=}=}
{=include-block:Y_Blocks.txt;head_ni=}
<style type="text/css">
<style>
input[type="button"], .tools select {
width: 100%;
}

View File

@@ -1,5 +1,5 @@
{=include-block:Y_Blocks.txt;head_ni=}
<style type="text/css">
<style>
#InputOutputField
{
display: none;

View File

@@ -1,5 +1,5 @@
{=include-block:Y_Blocks.txt;head_ni=}
<style type="text/css">
<style>
#InputOutputField
{
display: none;

View File

@@ -1,6 +1,6 @@
{=include-block:Y_Blocks.txt;management_check_top=}
{=include-block:Y_Blocks.txt;head=}
<style type="text/css">
<style>
.alink {
text-decoration: underline;
}

View File

@@ -1,6 +1,6 @@
{=include-block:Y_Blocks.txt;management_check_top=}
{=include-block:Y_Blocks.txt;head=}
<style type="text/css">
<style>
.alink {
text-decoration: underline;
}

View File

@@ -1,6 +1,6 @@
{=include-block:Y_Blocks.txt;management_check_top=}
{=include-block:Y_Blocks.txt;head=}
<style type="text/css">
<style>
.alink {
text-decoration: underline;
}

View File

@@ -79,7 +79,7 @@ function do_switch_hostname()
}
}
</script>
<style type="text/css">
<style>
input[type="text"],
select {
width: 220px;

View File

@@ -1,3 +1,3 @@
version=3.0.32
version=3.0.33
date=18.02.2023
info=NI-Neutrino-Webinterface

View File

@@ -41,7 +41,7 @@ jQuery(document).ready(function(){
jQuery('html head').find('title').text("yInfo");
});
</script>
<style type="text/css">
<style>
/* globals */
html {
margin: 0;

View File

@@ -10,7 +10,7 @@
<link rel="manifest" href="/lcd4linux/manifest.json">
<meta name="theme-color" content="#212121">
<style type="text/css">
<style>
html {
margin: 0;
padding: 0;

View File

@@ -70,9 +70,9 @@ buildStreamingAudioRawURL()
y_format_message_html()
{
tmp="<html><head><meta http-equiv='Content-Type' content='text/html; charset=windows-1252'>"
tmp="$tmp <link rel='stylesheet' type='text/css' href='/Y_Main.css'>"
tmp="$tmp <link rel='stylesheet' type='text/css' href='/Y_Dist.css'>"
tmp="$tmp <link rel='stylesheet' type='text/css' href='/Y_User.css'></head>"
tmp="$tmp <link rel='stylesheet' href='/Y_Main.css'>"
tmp="$tmp <link rel='stylesheet' href='/Y_Dist.css'>"
tmp="$tmp <link rel='stylesheet' href='/Y_User.css'></head>"
tmp="$tmp <body><div class='work_box'><div class='work_box_head'><div class='work_box_head_h2'>Results</div></div><div class='work_box_body' style='overflow:auto'>"
tmp="$tmp <pre>\n$msg\n</pre></div></div></body></html>"
@@ -83,9 +83,9 @@ y_format_message_html()
y_format_message_html2()
{
tmp="<html><head><meta http-equiv='Content-Type' content='text/html; charset=windows-1252'>"
tmp="$tmp <link rel='stylesheet' type='text/css' href='/Y_Main.css'>"
tmp="$tmp <link rel='stylesheet' type='text/css' href='/Y_Dist.css'>"
tmp="$tmp <link rel='stylesheet' type='text/css' href='/Y_User.css'></head>"
tmp="$tmp <link rel='stylesheet' href='/Y_Main.css'>"
tmp="$tmp <link rel='stylesheet' href='/Y_Dist.css'>"
tmp="$tmp <link rel='stylesheet' href='/Y_User.css'></head>"
tmp="$tmp <body><div class='work_box'><div class='work_box_head'><div class='work_box_head_h2'>Results</div></div><div class='work_box_body'>"
tmp="$tmp $msg</div></div></body></html>"
echo "$tmp"
@@ -94,9 +94,9 @@ y_format_message_html2()
y_format_message_html_plain()
{
tmp="<html><head><meta http-equiv='Content-Type' content='text/html; charset=windows-1252'>"
tmp="$tmp <link rel='stylesheet' type='text/css' href='/Y_Main.css'>"
tmp="$tmp <link rel='stylesheet' type='text/css' href='/Y_Dist.css'>"
tmp="$tmp <link rel='stylesheet' type='text/css' href='/Y_User.css'></head>"
tmp="$tmp <link rel='stylesheet' href='/Y_Main.css'>"
tmp="$tmp <link rel='stylesheet' href='/Y_Dist.css'>"
tmp="$tmp <link rel='stylesheet' href='/Y_User.css'></head>"
tmp="$tmp <body>$msg</body></html>"
echo "$tmp"
}