We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cc5c12 commit 10e8472Copy full SHA for 10e8472
src/LinkDotNet.Blog.Web/Features/Admin/BlogPostEditor/Components/CreateNewBlogPost.razor
@@ -32,7 +32,9 @@
32
@bind-Value="@model.Content"></MarkdownTextArea>
33
<ValidationMessage For="() => model.Content"></ValidationMessage>
34
35
- <div class="btn-group position-absolute bottom-0 end-0 m-5 admin-extra-buttons">
+ <div class="btn-group position-absolute bottom-0 end-0 m-5"
36
+ style="opacity: 0.25; transition: opacity 0.2s;"
37
+ onmouseover="this.style.opacity='1';" onmouseout="this.style.opacity='0.25';">>
38
<button class="btn btn-primary btn-outlined btn-sm dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
39
More
40
</button>
0 commit comments