From bcae32afe27b40a92042cf7e0ff00a9f5dc35ebe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Onur=20P=C4=B1=C3=A7akc=C4=B1?= <98148844+onurpicakci@users.noreply.github.com> Date: Tue, 16 May 2023 15:42:12 +0300 Subject: [PATCH] blogging: created css file for detail page --- .../Pages/Blogs/Posts/Detail.cshtml | 1 + .../Pages/Blogs/Posts/detail.css | 27 +++++++++++++++++++ .../Pages/Blogs/Shared/Styles/blog.css | 27 ------------------- 3 files changed, 28 insertions(+), 27 deletions(-) create mode 100644 modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/detail.css diff --git a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Detail.cshtml b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Detail.cshtml index 9c44b0feb2..ed94556d78 100644 --- a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Detail.cshtml +++ b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Detail.cshtml @@ -47,6 +47,7 @@ + } diff --git a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/detail.css b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/detail.css new file mode 100644 index 0000000000..7bf7612836 --- /dev/null +++ b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/detail.css @@ -0,0 +1,27 @@ +.last-post-title{ + font-size: 15px; + line-height: 20px; + font-weight: 700; + letter-spacing: 0px; + text-decoration: none; + color: black; +} +.last-post-image{ + width: 30px; + height: 30px; + border-top-left-radius: 50%; + border-top-right-radius: 50%; + border-bottom-right-radius: 50%; + border-bottom-left-radius: 50%; +} +.last-post-name{ + padding-right: 2px; + max-height: 16px; + padding-top: 0.5em; + padding-right: 0.5em; +} +#CopyLink{ + padding: 0; + border: none; + background: none; +} \ No newline at end of file diff --git a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Shared/Styles/blog.css b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Shared/Styles/blog.css index b24425f547..d158489f70 100644 --- a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Shared/Styles/blog.css +++ b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Shared/Styles/blog.css @@ -320,31 +320,4 @@ div.vs-blog { text-decoration: none; } div.vs-blog > .form-group { margin: 0 !important; } -.last-post-title{ - font-size: 15px; - line-height: 20px; - font-weight: 700; - letter-spacing: 0px; - text-decoration: none; - color: black; -} -.last-post-image{ - width: 30px; - height: 30px; - border-top-left-radius: 50%; - border-top-right-radius: 50%; - border-bottom-right-radius: 50%; - border-bottom-left-radius: 50%; -} -.last-post-name{ - padding-right: 2px; - max-height: 16px; - padding-top: 0.5em; - padding-right: 0.5em; -} -#CopyLink{ - padding: 0; - border: none; - background: none; -}