From 4adabda781acb99b78ec52ea4c7a53798ce7061b Mon Sep 17 00:00:00 2001 From: Niyko Date: Fri, 31 Dec 2021 23:45:32 +0530 Subject: [PATCH 1/4] Updated README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aa225f0..288d070 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![Hydra Dark Theme for Adminer logo](https://i.imgur.com/JpUX5NI.png) ## Hydra - Material Design Dark Theme for Adminer -An Adminer dark mode material design theme inspired by the Adminer material design. [Adminer](https://www.adminer.org/) is one of the best DB-Management tools out there. Install the theme with two little steps, just download the `Adminer.css` file and put the file in the same folder as the `Adminer.php`. +An Adminer dark mode material design theme inspired by the Adminer material design. [Adminer](https://www.adminer.org/) is one of the best DB-Management tools out there. Install the theme with two little steps, just download the `Adminer.css` file and put the file in the same folder as the `Adminer.php`. This theme also supports on Adminer editor. ### :zap: Usage * Get a copy of [Adminer](https://www.adminer.org/) From b200c0251d776e189dfff36490ef34f3d8431412 Mon Sep 17 00:00:00 2001 From: Niyko Date: Sat, 1 Jan 2022 00:00:03 +0530 Subject: [PATCH 2/4] Updated README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 288d070..120d8d5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![Hydra Dark Theme for Adminer logo](https://i.imgur.com/JpUX5NI.png) ## Hydra - Material Design Dark Theme for Adminer -An Adminer dark mode material design theme inspired by the Adminer material design. [Adminer](https://www.adminer.org/) is one of the best DB-Management tools out there. Install the theme with two little steps, just download the `Adminer.css` file and put the file in the same folder as the `Adminer.php`. This theme also supports on Adminer editor. +An Adminer dark mode material design theme inspired by the Adminer material design. [Adminer](https://www.adminer.org/) is one of the best DB-Management tools out there. Install the theme with two little steps, just download the `Adminer.css` file and put the file in the same folder as the `Adminer.php`. This theme also supports on [Adminer editor](https://www.adminer.org/en/editor). ### :zap: Usage * Get a copy of [Adminer](https://www.adminer.org/) From f8aa49777ef976fe7cef19a3b78d6bb9bbc416eb Mon Sep 17 00:00:00 2001 From: Niyko Date: Mon, 17 Jan 2022 07:32:52 +0530 Subject: [PATCH 3/4] Made some changes in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 120d8d5..f0c080c 100644 --- a/README.md +++ b/README.md @@ -19,4 +19,4 @@ Hydra, Material Design Dark Theme for Adminer is a clone made from [Adminer-Mate --- -![visitors count](https://server.niyko.com/github-visitors-count?id=hydratheme) + From 0cb560775f85eaded6922da7f9549e468e8fb405 Mon Sep 17 00:00:00 2001 From: jhzrmx <122547859+jhzrmx@users.noreply.github.com> Date: Thu, 11 Apr 2024 22:17:04 +0800 Subject: [PATCH 4/4] Fixed referencing arrow/line not displaying on tables with foreign key(s). Under database schema, the referencing arrow/line not displaying on tables with foreign key(s) has been fixed. This changes also include table position adjustments in database schema, so that arrows point directly into the foreign key. --- adminer.css | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/adminer.css b/adminer.css index 77bd4de..c09dd30 100644 --- a/adminer.css +++ b/adminer.css @@ -1033,21 +1033,26 @@ a[href="#import"]:hover{ background: #2f2b3f; border: none; border-radius: 5px; + min-width: 160px; box-shadow: 0 5px 8px rgba(0, 0, 0, 0.11); - overflow: hidden; } #schema .table a { display: inline-block; background: #7962f2; + border-top-left-radius: 5px; + border-top-right-radius: 5px; color: #fff; padding: 7px; - min-width: 141px; - width: 100%; + min-width: 160px; + width: 91.7%; margin-bottom: 3px; } #schema .table span { margin-left: 10px; } +#schema .references { + transform: translateY(18px); +} .char { color: #00e676; }