Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #20166 : Updates character ‘s’ Next to Edit Icon in ‘Insert Image’ of RTE with 'SVG' #20209

Merged
merged 4 commits into from
Apr 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
updates
  • Loading branch information
Akhilesh-max committed Apr 24, 2024
commit a7af02a3950dcd78bd84b89c9c2966f68e5f257e
11 changes: 10 additions & 1 deletion extensions/objects/templates/svg-editor.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,8 @@
<div *ngIf="isDiagramSaved()">
<div class="diagram-editor-saved-image-container e2e-test-saved-diagram-container">
<i class="fas fa-pen diagram-editor-edit edit-icon" (click)="continueDiagramEditing()"
title="Continue editing the diagram">SVG
title="Continue editing the diagram">
<span class="edit-text">SVG</span>
</i>
<img [src]="data.savedSvgUrl" [ngStyle]="svgContainerStyle">
</div>
Expand Down Expand Up @@ -329,6 +330,14 @@
top: 6px;
}

.edit-icon {
font-size: 16px;
}

.edit-text {
font-size: 10px;
}

.svg-editor .svg-editor {
background-color: #fff;
min-height: 450px;
Expand Down