1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-13 01:54:00 +02:00

Replace deprecated <acronym> with <abbr>

This commit is contained in:
Peter Knut
2024-09-06 23:33:01 +02:00
committed by Jakub Vrana
parent 2189947c43
commit 6d848bf165
3 changed files with 15 additions and 15 deletions

View File

@@ -279,7 +279,7 @@ function edit_fields($fields, $collations, $type = "TABLE", $foreign_keys = arra
<td><?php echo lang('Options'); /* no label required, options have their own label */ ?> <td><?php echo lang('Options'); /* no label required, options have their own label */ ?>
<?php if ($type == "TABLE") { ?> <?php if ($type == "TABLE") { ?>
<td id="label-null">NULL <td id="label-null">NULL
<td><input type="radio" name="auto_increment_col" value=""><acronym id="label-ai" title="<?php echo lang('Auto Increment'); ?>">AI</acronym><?php echo doc_link(array( <td><input type="radio" name="auto_increment_col" value=""><abbr id="label-ai" title="<?php echo lang('Auto Increment'); ?>">AI</abbr><?php echo doc_link(array(
'sql' => "example-auto-increment.html", 'sql' => "example-auto-increment.html",
'mariadb' => "auto_increment/", 'mariadb' => "auto_increment/",
'sqlite' => "autoinc.html", 'sqlite' => "autoinc.html",

View File

@@ -374,7 +374,7 @@ thead td, thead th {
padding: 7px 2px; padding: 7px 2px;
} }
thead td acronym, thead td sup, thead th acronym, thead th sup { thead td abbr, thead td sup, thead th acronym, thead th sup {
color: #cdf color: #cdf
} }

View File

@@ -1,7 +1,7 @@
/* /*
FLAT UI Flavored Adminer Theme by M. Mahbubur Rahman (mahbub@mahbubblog.com) FLAT UI Flavored Adminer Theme by M. Mahbubur Rahman (mahbub@mahbubblog.com)
Screenshot : http://d.pr/i/cznH Screenshot : http://d.pr/i/cznH
Based on work by : Lukáš Brandejs Based on work by : Lukáš Brandejs
https://raw.github.com/vrana/adminer/master/designs/ng9/adminer.css https://raw.github.com/vrana/adminer/master/designs/ng9/adminer.css
*/ */
@@ -119,7 +119,7 @@ code a:hover{background:transparent}
table{ table{
margin:10px 0px; margin:10px 0px;
border:1px solid #E6E6E6; border:1px solid #E6E6E6;
background-color:#FFFFFF; background-color:#FFFFFF;
} }
tbody tr:hover td,tbody tr:hover th{ tbody tr:hover td,tbody tr:hover th{
@@ -133,17 +133,17 @@ thead th, thead td {
white-space:nowrap; white-space:nowrap;
border-right:1px solid #34495e; border-right:1px solid #34495e;
background:#34495e; background:#34495e;
color:#FFFFFF; color:#FFFFFF;
padding-right:10px; padding-right:10px;
} }
thead th acronym, thead td acronym, thead th sup, thead td sup{ thead th abbr, thead td acronym, thead th sup, thead td sup{
color:#CCDDFF; color:#CCDDFF;
} }
th,td{ th,td{
border:1px solid rgba(233,233,233,.3); border:1px solid rgba(233,233,233,.3);
padding:3px 6px; padding:3px 6px;
vertical-align:top; vertical-align:top;
} }
th a { th a {
@@ -269,12 +269,12 @@ input[name=logout]:hover {
background:#ea0202; background:#ea0202;
} }
#logins a, #tables a { #logins a, #tables a {
background:none; background:none;
} }
#logins a:hover, #tables a:hover { #logins a:hover, #tables a:hover {
} }
#logout { #logout {
@@ -283,7 +283,7 @@ input[name=logout]:hover {
} }
#logout:hover { #logout:hover {
color:red; color:red;
} }
.logout { .logout {
@@ -308,14 +308,14 @@ input[name=logout]:hover {
input[type=submit] { input[type=submit] {
font-size:13px; font-size:13px;
font-weight:normal; font-weight:normal;
-moz-border-radius:1px; -moz-border-radius:1px;
-webkit-border-radius:1px; -webkit-border-radius:1px;
border-radius:1px; border-radius:1px;
border:0px solid #469df5; border:0px solid #469df5;
padding:4px 12px; padding:4px 12px;
text-decoration:none; text-decoration:none;
background-color:#65ADC3; background-color:#65ADC3;
color:#ffffff; color:#ffffff;
display:inline-block; display:inline-block;
@@ -324,7 +324,7 @@ input[type=submit] {
-moz-box-shadow:inset 0px 0px 0px 0px #cae3fc; -moz-box-shadow:inset 0px 0px 0px 0px #cae3fc;
box-shadow:inset 0px 0px 0px 0px #cae3fc; box-shadow:inset 0px 0px 0px 0px #cae3fc;
} }
input[type=submit]:hover { input[type=submit]:hover {
background-color:#34495e; background-color:#34495e;
text-shadow:0px 1px 0px #000; text-shadow:0px 1px 0px #000;
} }