Kony loading screen customization - temenos-quantum

I am using loading screen in kony by following api-
kony.application.showLoadingScreen("BusyIndicator","Loading data...",constants.LOADING_SCREEN_POSITION_FULL_SCREEN, true,true,null);
BusyIndicator is custom skin made by me which includes background color black with 35% transparency.
However I am getting text 'Loading data...' in black color.
Please help me to customize this text by changing text color and size.

You need to apply an existing skin (e.g "slTextWhite") available in your project and use the same in code like below:
kony.application.showLoadingScreen("slTextWhite","Please wait",constants.LOADING_SCREEN_POSITION_ONLY_CENTER,true,true,{});
Hope this helps!

You can try this way
kony.application.showLoadingScreen("sknLoading"," loading ....", constants.LOADING_SCREEN_POSITION_FULL_SCREEN, true, true, {shouldShowLabelInBottom: "true", separatorHeight:200})
where sknLoading to be defined in common skin -- you will see at the bottom "common" in skin.
you can set background color, font color and other properties too.

Related

Set secondary color of all views

image of an Editor
Like shown in the image above my secondary color for all my views is pink.
But I want it to be a different one.
Where can I set the Color globally?
For the Entries that pink color is the color accent of the application
Which can be modified of course. example
But if you want a little more customization for this view and maybe others. You will have to use custom renderers. Here is another question about that

CKeditor, size of image preview box

Searched the web all over to find the way to change the image preview box dimensions in CKeditor, with no luck.
Although https://docs.ckeditor.com/ckeditor4/docs/#!/guide/dev_howtos_dialog_windows-section-6 teaches how to change the dialog dimensions, it doesn't provide information on how to set the image preview box width and height, which remain fixed on changing the dimensions of its parent window.
Dimensions of the preview box could be changed in skin's CSS, located – in the case of moono and moono-lisa skins – in skins/<name of skin>/dialog.css. The selector connected with it is .cke_dialog .ImagePreviewBox.

Is it possible to style the color of the font?

I would like to change the default black color of the font to white. I tried to add this to the styling section of my graph:
style request-rejected fill:#e74c3c,color:#FFFFFF;
The background is correctly changed to #e74c3c but the font stays black. It looks however that normal CSS styles are used in the .less source.
Is it possible to change the font color in a graph?
I know that this is a SUPER old post - but just in case someone else ends up here...
Please see Mermaid documentation for information on styling

setting default design and font in powerpoint 2016

This question may be a bit too simplistic for this community but I'm stumped. When preparing a lecture I prefer to have a black background with white text on a square slide.
I know how to create a theme to get the slide design quickly.
I know how to change font text color.
But...
1) How do I assign a theme to default (instead of having to load it manually each time)?
2) How do I change the default text color?
Ideally, I'd like to have powerpoint open with my custom theme and having white text as the default color so I don't need to change these settings manually.
much thanks!
Point Google here to get a more detailed set of instrux,
https://www.google.com/search?q=default+theme+powerpoint+2016&ie=utf-8&oe=utf-8
But basically you rightclick the theme you want to set as default in the Themes gallery, then choose Set as Default.
When creating your theme, add a text box, format it to the font style you want, then right click and choose Set as Default Text Box. This will set the font style for any newly added text. Also make sure that the font theme included in your theme specifies the fonts you want for title and body text. To do this, go to View | Slide Master. On the Slide Master tab, you can use the Fonts button in the Background group to choose or modify the font theme.

Is it possible to change the black colour of CKEditor Toolbar icons(in the moono skin), like one can with webfonts.?

I have just upgraded to CKEditor 4.4.5 from 3.5, and notice quite a few changes !! One of the changes is the new skin called Moono which looks great. However it did get me wondering whether it would be possible to change the black in the menu icons to a custom colour, for branding reasons for example. We do this in the rest of the web application using a combination of Server code and CSS.
Many thanks.
Toolbar icons in Moono are images, so if you want to change them, you'd need to create a new skin or use an alternative one from the CKEditor Addons Repository.
However, since Moono is a monochromatic skin, maybe for branding purposes it would be enough for you to use the so-called "chameleon feature" that lets you change the UI color with a simple configuration option?
If so, just use config.uiColor to provide a mataching RGB color value or an HTML color name, as in:
config.uiColor = '#AADC6E';
See a working example here: http://sdk.ckeditor.com/samples/uicolor.html

Resources