From 48e92c7580f93e01d9e90a43870d3c1ed04c66cf Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Fri, 14 Aug 2020 16:34:59 +0800 Subject: [PATCH] feat(webui): navigate to series books from book details screen closes #272 --- komga-webui/src/App.vue | 3 + komga-webui/src/components/ItemCard.vue | 9 -- komga-webui/src/styles/global.css | 8 ++ komga-webui/src/views/BrowseBook.vue | 106 +++++++++++++++++++----- 4 files changed, 94 insertions(+), 32 deletions(-) create mode 100644 komga-webui/src/styles/global.css diff --git a/komga-webui/src/App.vue b/komga-webui/src/App.vue index 2c3cec5f1..bc7388d1c 100644 --- a/komga-webui/src/App.vue +++ b/komga-webui/src/App.vue @@ -3,3 +3,6 @@ + diff --git a/komga-webui/src/components/ItemCard.vue b/komga-webui/src/components/ItemCard.vue index f2fa71fb8..0c212ff1c 100644 --- a/komga-webui/src/components/ItemCard.vue +++ b/komga-webui/src/components/ItemCard.vue @@ -285,13 +285,4 @@ export default Vue.extend({ right: 0; z-index: 2; } - -.link-underline { - text-decoration: none; -} - -.link-underline:hover { - text-decoration: underline; - text-decoration-color: black; -} diff --git a/komga-webui/src/styles/global.css b/komga-webui/src/styles/global.css new file mode 100644 index 000000000..39314e654 --- /dev/null +++ b/komga-webui/src/styles/global.css @@ -0,0 +1,8 @@ +.link-underline { + text-decoration: none; +} + +.link-underline:hover { + text-decoration: underline; + text-decoration-color: black; +} diff --git a/komga-webui/src/views/BrowseBook.vue b/komga-webui/src/views/BrowseBook.vue index 08989b49a..4054b26fe 100644 --- a/komga-webui/src/views/BrowseBook.vue +++ b/komga-webui/src/views/BrowseBook.vue @@ -1,24 +1,59 @@