Add style and help button.

This commit is contained in:
Florian THIERRY
2024-08-29 10:20:31 +02:00
parent a2f1b511c1
commit 5e4068b141
2 changed files with 8 additions and 0 deletions

View File

@@ -47,6 +47,9 @@
<button type="button" disabled matTooltip="Click to insert a code block"> <button type="button" disabled matTooltip="Click to insert a code block">
<mat-icon>code</mat-icon> <mat-icon>code</mat-icon>
</button> </button>
<button type="button" disabled matTooltip="Click to display editor help">
<mat-icon>help</mat-icon>
</button>
</div> </div>
<mat-form-field class="example-form-field"> <mat-form-field class="example-form-field">
<mat-label>Content</mat-label> <mat-label>Content</mat-label>

View File

@@ -130,6 +130,11 @@ button, a.button {
cursor: pointer; cursor: pointer;
} }
&:disabled {
background-color: #5f6aa6;
cursor: not-allowed;
}
&.secondary { &.secondary {
color: #3f51b5; color: #3f51b5;
background-color: white; background-color: white;