customize-ui | UI Customization plugin for vscode | Code Editor library
kandi X-RAY | customize-ui Summary
kandi X-RAY | customize-ui Summary
This experimental extension allows customizing VSCode user interface beyond what's normally possible, such as.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of customize-ui
customize-ui Key Features
customize-ui Examples and Code Snippets
Community Discussions
Trending Discussions on customize-ui
QUESTION
I am trying to custmoize the User Flows (Policies) by changing the Page layout. I followed this example, first putting my html file on a public folder on my webspace, then also setting up the Blob Storare and CORS (Tested with test-cors.org). In both cases, once I set the Custom page URI, when I Run user flow I get the following exception:
...ANSWER
Answered 2021-Mar-16 at 16:06I don't see the correct Access-Control-Allow-Origin
header coming back when I make a request to your HTML.
Add https://your-tenant-name.b2clogin.com
to the Allowed Origins on the storage account.
https://docs.microsoft.com/en-gb/azure/active-directory-b2c/customize-ui-with-html?pivots=b2c-user-flow#3-configure-cors
QUESTION
I have an Azure account with pay as you go subscription. I created Storage account as discribe in following link
https://docs.microsoft.com/en-us/azure/active-directory-b2c/tutorial-customize-ui
But I can not change the Public access level of the container. It always has disabled as attached images.
Can anyone help me to enable this. I spent lot of time on reading docs. But can not find any.
...ANSWER
Answered 2020-Jul-08 at 17:04You need to set AllowBlobPublicAccess
to true on your storage accounts. You can do this in the Portal under Configuration for the storage account by setting "Blob public access" to Enabled.
QUESTION
We have started using some custom localized html files to show some localized headlines etc. to our users.
As per this article, we just uploaded a couple of html files for rendering.
...ANSWER
Answered 2020-Mar-07 at 18:58This behavior is "by design" and cannot be changed.
https://github.com/MicrosoftDocs/azure-docs/issues/47654
For localization, you can provide the query string parameter,
ui_locales
, from your application. When you call into Azure AD B2C, your page is translated to the locale that you have indicated. This type of configuration gives you complete control over the languages in your user flow and ignores the language settings of the customer's browser. You might not need that level of control over what languages your customer sees. If you don't provide aui_locales
parameter, the customer's experience is dictated by their browser's settings. You can still control which languages your user flow is translated to by adding it as a supported language. If a customer's browser is set to show a language that you don't want to support, then the language that you selected as a default in supported cultures is shown instead.The
{Culture:RFC5646}
claim resolver works in the same way. Meaning If a customer's browser is set to show a language that you don't want to support, then the language that you selected as a default in supported cultures is sent to the HTML page instead.The only case where an unsupported
ui_locales
will be sent to the HTML page, is when the app passes the missingui_locales
in the query string. In this case we consider that to be an application decision and allow it to override supported cultures configuration.So, make sure your application sends only supported language in the
ui_locales
query string parameter.
QUESTION
I have some questions on customization of the UI for B2C portals. I've looked at both of the following links: https://docs.microsoft.com/en-us/azure/active-directory-b2c/active-directory-b2c-reference-customize-ui-custom
But it doesn't seem like my question is answered from those documentation links.
Question 1: What I'm wondering is if it's possible to customize the "Sign in with your social account" string? I looked through the policy XML files and did not see that string being generated anywhere, and it did not look like I could customize it through one tags of the block in the TrustFrameworkExtensions.xml file. So is this string editable? I attempted to add a Metadata Item tag who's key was "language.intro" hoping that would override the string on the "api.signuporsignin" ContentDefinition block...but it did not override.
Question 2: Somewhat related to the above...is it possible to customize the display strings of the built-in fields for the Sign Up / Profile Edit pages? For example, we would like "Surname" to be "Last Name" and "Given Name" to be "First Name". Is it possible to customize those display name strings, without creating all new/custom fields to get the display name we want?
Thanks for the help, I appreciate it!
...ANSWER
Answered 2018-Sep-25 at 18:53The "Sign in with your social account" HTML is just sample HTML from B2C. To replace this, you can save your custom HTML page in Azure Blob Storage and then follow these steps:
- Sign in to your tenant on the Azure portal and navigate to the B2C features blade.
- Click Sign-up or sign-in policies, click your policy and click on Edit (for example, "b2c_1_sign_up_sign_in").
- Click Page UI customization and then Unified sign-up or sign-in page.
- Toggle the Use custom page switch to Yes. In the Custom page URI field, enter https://wingtiptoysb2c.blob.core.windows.net/b2c/wingtip/unified.html. Click OK.
- Click Local account sign-up page. Toggle the Use custom template switch to Yes. In the Custom page URI field, enter https://wingtiptoysb2c.blob.core.windows.net/b2c/wingtip/selfasserted.html.
- Repeat the same step for the Social account sign-up page. Click OK twice to close the UI customization blades.
- Click Save.
For reference, see the full instructions here: https://docs.microsoft.com/en-us/azure/active-directory-b2c/active-directory-b2c-reference-ui-customization-helper-tool
You can do the same thing to customize your Sign Up/Profile Edit pages.
QUESTION
I've created a simple template like in the demos:
...ANSWER
Answered 2019-Jan-07 at 21:52Register your reply url with HTTPS: https://.azurewebsites.net/signin-oidc
. Azure app services hosted under the azurewebsites.net domain provide a built-in SSL certificate.
QUESTION
Our company has been using the built-in SignUpOrSignIn policy for a while now. We also use the custom UI feature so we can brand the sign-in experience. We have a page with our logo and an empty div
element:
We've recently had to move to using the (public preview) custom policies feature, again implementing the custom UI feature.
But while testing the custom policy, I've noticed that on the sign-up page the code that gets inserted inside the empty div
is different to that using the built-in policy.
For example, with the built-in policy, the text "Please enter a valid email address." is contained within a div
with the class error
, which hides the text from the user until they enter an invalid email address. With the custom policy, this text is contained inside a div
with class helpText
, and is displayed as soon as the page is loaded.
The custom policy also sees a lot of extra CSS inserted directly into the head
of the page, which overrides our custom styling in our CSS file. There are other differences as well.
I followed these steps to set up the custom policies if that's relevant.
Why is a different sign-up page being shown when I use the custom policy? The sign-in page seems to be the same, it's just when I click through to sign up for a new account that the differences appear.
...ANSWER
Answered 2018-Jul-28 at 00:17The page UI that is displayed is determined by the content definition.
E.g. In the custom policy starter pack, the api.selfasserted content definition that is used for the sign-up page UI is set to the 1.1.0 version:
QUESTION
I am trying to make a UILabel that if I click I can edit it. I have a hidden textfield.
Per this answer: How to customize UILabel clickable
I tried the following:
...ANSWER
Answered 2017-Dec-08 at 09:22Try enabling user interaction here for label,Worked for me, and please use UITapGesture instead of UIGesture And Textfield should be below uilabel because if the textfield is above label then uilabel's user interaction won't be considered
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install customize-ui
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page