Browse Source
Merge pull request #15096 from abpframework/Cmskit-findings-on-blogpost-15088
Fixed the slide issue
pull/15117/head
Gizem Mutu Kurt
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
3 additions and
11 deletions
-
modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/CmsKit/Shared/Components/Commenting/Default.cshtml
-
modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/CmsKit/Shared/Components/Commenting/default.css
-
modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/CmsKit/Shared/Components/Commenting/default.scss
|
|
|
@ -51,7 +51,7 @@ |
|
|
|
<img src="@Model.Input.CaptchaImageBase64" /> |
|
|
|
</div> |
|
|
|
<div class="flex-grow-1 bd-highlight"> |
|
|
|
<abp-input asp-for="@Model.Input.Captcha" suppress-label="true" class="d-inline-block" autocomplete="off" /> |
|
|
|
<abp-input type="number" asp-for="@Model.Input.Captcha" suppress-label="true" class="d-inline-block" autocomplete="off" /> |
|
|
|
</div> |
|
|
|
|
|
|
|
<abp-input asp-for="@Model.CaptchaId" value="@Model.CaptchaOutput.Id" /> |
|
|
|
@ -60,12 +60,12 @@ |
|
|
|
} |
|
|
|
<div class="col-auto"> |
|
|
|
<div class="text-end"> |
|
|
|
<abp-button id="submit-button" type="submit" button-type="Primary" size="Block"> |
|
|
|
<abp-button id="submit-button" type="submit" button-type="Primary"> |
|
|
|
<i class="fa fa-comment-alt me-1"></i> @L["Send"] |
|
|
|
</abp-button> |
|
|
|
@if (cancelButton) |
|
|
|
{ |
|
|
|
<abp-button type="button" button-type="Light" class="reply-cancel-button mb-2" size="Block_Small" data-reply-id="@(repliedCommentId?.ToString() ?? "")"> |
|
|
|
<abp-button type="button" button-type="Light" class="reply-cancel-button" data-reply-id="@(repliedCommentId?.ToString() ?? "")"> |
|
|
|
<i class="fa fa-times me-1"></i> @L["Cancel"] |
|
|
|
</abp-button> |
|
|
|
} |
|
|
|
|
|
|
|
@ -24,7 +24,3 @@ body .form-control { |
|
|
|
border: 1px outset #e3e3e3 !important; |
|
|
|
padding: 10px !important; |
|
|
|
} |
|
|
|
|
|
|
|
body #submit-button { |
|
|
|
margin-top: 10px; |
|
|
|
} |
|
|
|
|
|
|
|
@ -23,8 +23,4 @@ body { |
|
|
|
border: 1px outset #e3e3e3 !important; |
|
|
|
padding: 10px !important; |
|
|
|
} |
|
|
|
|
|
|
|
#submit-button { |
|
|
|
margin-top: 10px; |
|
|
|
} |
|
|
|
} |
|
|
|
|