Class Name |
Description |
e-upload-browse-btn |
Applied to browse button of uploader component. |
e-file-drop |
Applied to drop area(drop files here) of uploader component |
e-file-clear-btn |
Applied to clear button of uploader component. |
e-file-upload-btn |
Applied to upload button of uploader component. |
e-file-delete-btn |
Applied to remove icon of uploader component. |
e-upload-success |
Applied to status text of uploader component. |
Component |
Documentation Link |
ListView |
|
Tooltip |
|
Range slider |
|
DashboardLayout |
|
Sidebar |
|
Grid |
|
Dialog |
|
Inplace-editor |
|
RichTextEditor |
|
Splitter |
|
Toast |
|
Spinner |
|
Calendar components |
We will add the information in UG in Volume 4 SP release |
DropDown Components |
We will add the information in UG in Volume 4 SP release |
Input components |
We will add the information in UG in Volume 4 SP release |
Uploader |
We will add the information in UG in Volume 4 SP release |
Chart |
CSS styles is not applicable for chart component. We are using API for customizations. |
TextBox |
// background color change on hovering
.e-treeview .e-list-item.e-active.e-hover > .e-fullrow {
background-color: lightgray;
}
//background color change on Selection
.e-treeview .e-list-item.e-active > .e-fullrow {
background-color: lightslategrey;
}
// Text color change on hovering
.e-treeview .e-list-item.e-active.e-hover > .e-text-content .e-list-text {
color: black;
}
// Text color change on Selection
.e-treeview .e-list-item.e-active > .e-text-content .e-list-text {
color: white;
} |
e-icon-collapsible |
This class will be added for collapse icon of TreeView component. |
e-icon-expandable |
This class will be added for expand icon of TreeView component. |
.e-treeview |
CSS to customize the TreeView. |
.e-treeview .e-list-item .e-fullrow
|
Customize the entire TreeView node |
.e-treeview .e-list-item |
This class will be added for each TreeView node. |
/*apply custom css to first level*/
.e-treeview .e-level-1 > .e-text-content .e-list-text {
font-style: italic;
}
/*apply custom css to second level*/
.e-treeview .e-level-2 > .e-text-content .e-list-text {
color: darkmagenta;
}
/*apply custom css to all the leaf nodes*/
.e-treeview .e-level-3 > .e-text-content .e-list-text {
font-weight: bold;
} |
.e-treeview .e-list-text {
line-height: 50px;
}
.e-treeview .e-fullrow {
height: 50px;
} |
e-hover |
This class is added to the TreeView when hovering the TreeView node. |
.e-treeview .e-list-item.e-hover > .e-fullrow {
background-color: blue;
} |
e-active |
This class is added to the TreeView when selecting the TreeView node. |
.e-treeview .e-list-item.e-active > .e-fullrow {
background-color: blue;
} |
@using Syncfusion.Blazor.Inputs
<SfTextBox CssClass="e-custom"></SfTextBox>
<style>
.e-custom.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
box-shadow: 0 0 0 3px rgb(255 0 0 / 25%);
border-color: #e41616;
}
</style> |