CSS override

Hi;

I create my own ProcessDashboartdSchema page i add some fields

The parent object has CSS file indicated:
define("ProcessDashboardSchema",
    [
        "ProcessDashboardSchemaResources",
        "ConfigurationConstants",
        "RemindingsUtilities",
        "FormatUtils",
        "DesktopPopupNotification",
        "DcmElementSchemaManager",
        "EmptyGridMessageConfigBuilder",
        "QuickFilterModuleV2",
        "css!ProcessDashboardModule"
    ],

I would like to add some CSS tags so i create my new CSS file and try to add it to my new object definition but on page i can see just only settings from CSS indicate in base object.

I would like only increase tom margin of notificationContainer because i add some fields to filterconteiner

Appreciate for any help

Regards
Tomek Branicki
 

Like 0

Like

2 comments

Hello Tomasz,

 

The algorithm how you can add or edit CSS style in your page is described in the article https://community.creatio.com/articles/how-add-or-edit-css-style.

 

Also if you have some styles that can conflict with each other don't forget to add !important to the style that has to be applied.

For example:

.notificationContainer {
	margin-top: 10px !mportant;
}

Iryna Oriyenko,

Hi Iryna;
Thanks for replay.
it work

regards
Tomek

Show all comments