1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 17:44:07 +02:00

Designs: Fix logout button

This commit is contained in:
Jakub Vrana
2025-03-04 18:44:40 +01:00
parent c7d283d262
commit 0426bd4610
3 changed files with 7 additions and 22 deletions

View File

@@ -59,6 +59,7 @@ outline:0;background:url(//www.bradezone.com/random/adminer_logo.gif) no-repeat;
* html #lang{padding-top:10px;height:30px} * html #lang{padding-top:10px;height:30px}
* html form#form{height:100%} * html form#form{height:100%}
#logins a,#tables a{background: none} #logins a,#tables a{background: none}
.logout{color:#fff}
#logout{color:#333;text-decoration:none;border-bottom:1px dotted} #logout{color:#333;text-decoration:none;border-bottom:1px dotted}
#logout:hover{border-color:#333;background:#333;color:#fff} #logout:hover{border-color:#333;background:#333;color:#fff}
.js .column{background:#ddd} .js .column{background:#ddd}

View File

@@ -216,12 +216,12 @@ th {
color:white; color:white;
} }
input[name=logout] { #logout {
color:#fce2e2; color:#fce2e2;
background:#d73e3e; background:#d73e3e;
} }
input[name=logout]:hover { #logout:hover {
background:#ea0202; background:#ea0202;
} }
@@ -234,14 +234,8 @@ input[name=logout]:hover {
color:white; color:white;
} }
#logout { .logout {
color:#0033ff; z-index: 2;
text-decoration:none;
}
#logout:hover {
color:white;
background:#0033ff;
} }
.js .column { .js .column {

View File

@@ -215,12 +215,12 @@ th {
color:white; color:white;
} }
input[name=logout] { #logout {
color:#fce2e2; color:#fce2e2;
background:#d73e3e; background:#d73e3e;
} }
input[name=logout]:hover { #logout:hover {
background:#ea0202; background:#ea0202;
} }
@@ -236,16 +236,6 @@ input[name=logout]:hover {
z-index: 5; z-index: 5;
} }
#logout {
color:#006aeb;
text-decoration:none;
}
#logout:hover {
color:white;
background:#006aeb;
}
.js .column { .js .column {
background:#f2eee1; background:#f2eee1;
} }