diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c528b27..fc219994 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ - Align numeric functions right - Autocomplete: Support table aliases - Fix type error in Create function (bug #1053, regression from 5.1.1) +- Add border to column actions (bug #1072) - MySQL: Avoid warning on selecting tables with fulltext indexes (bug #1036) - MySQL, PostgreSQL: Support index algorithms (bug #1030) - MySQL: Fix connecting to localhost:3306 (bug #1057, regression from 5.1.1) diff --git a/adminer/static/dark.css b/adminer/static/dark.css index a2b69f5a..b360cb61 100644 --- a/adminer/static/dark.css +++ b/adminer/static/dark.css @@ -11,7 +11,7 @@ a, a:visited { color: #618cb3; } a:link:hover, a:visited:hover { color: #9bc0e1; } h1 { border-color: #5e94c1; color: #ffddbf; } h2 { border-color: #a3bdd3; color: #000; background: #3c678d; } -table, td, th { border-color: #0e416d; } +table, td, th, .js .column { border-color: #0e416d; } th { background: #11385a; } thead td, thead th, thead th a { color: #a8b05f; } fieldset { border-color: #16548a; } diff --git a/adminer/static/default.css b/adminer/static/default.css index 9b9e2988..1ead4fe7 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -19,7 +19,7 @@ h3 { font-weight: normal; font-size: 130%; margin: 1em 0 0; } form { margin: 0; } td table { width: 100%; margin: 0; } table { margin: 1em 20px 0 0; font-size: 90%; border-spacing: 0; border-width: 1px 0 0 1px; } -table, td, th { border-color: #999; border-style: solid; } +table, td, th, .js .column { border-color: #999; border-style: solid; } td, th { border-width: 0 1px 1px 0; padding: .2em .3em; margin: 0; } th { background: var(--dim); text-align: left; } thead { position: sticky; top: 0; } @@ -45,7 +45,7 @@ input.wayoff { left: -1000px; position: absolute; } .block { display: block; } .version { color: #777; font-size: 62%; } .js .hidden, .nojs .jsonly { display: none; } -.js .column { position: absolute; background: var(--lit); padding: .27em 1ex .3em 0; margin-top: -.27em; } +.js .column { position: absolute; background: var(--lit); padding: .27em 1ex .33em 0; margin-top: -.37em; border-width: 1px 1px 1px 0; border-radius: 0 8px 8px 0; } .nowrap td, .nowrap th, td.nowrap, p.nowrap { white-space: pre; } .wrap td { white-space: normal; } .error { color: red; background: #fee; }