this is the filed out line I need to change it to be the same color of border when focused Source: Angular..
Category : css
I have a component which has a clarity input element. I want to customize the styling of it to set its background-color based on condition. This is what I have: template <form clrForm style="padding-top: 0;padding-left:0" class="full-width-component"> <clr-input-container class="text-component"> <label>Input</label> <input style="width: 100%" clrInput [(ngModel)]="value" name="name" [disabled]="isDisabled" [class.disabled]="isDisabled"/> </clr-input-container> </form> scss .disabled { background-color: lightgray; } ..
Is it possible to detect the browser zoom level when the user changed the zoom level of browser, and the default zoom level using javascript. Source: Angular..
Do you have a solution for css intellisense in VS Code for Angular projects? I don’t get any class suggestion for component’s css. HTML CSS Support extension doesn’t work at all. I found this extensions but it suggests each class from all css files, but I want only accessible css classes for current component Source: ..
I do have an Angular child component, that I would like to place on the Angular parent component via absolute positioning. My aim is only to position the component correctly; not to set any inner stylings of the child. The template of my parent component looks like this: <div class="parent"> <child></child> </div> with styles like: ..

I tried to use panel-menu in primeng. But I want the arrow icons on the right. Like this…. Source: Angular..
I’m currently working on an Angular 11+ project with Azure Maps. I want to create a custom CSS styled HTML Marker like shown in the docs (https://docs.microsoft.com/en-us/azure/azure-maps/map-add-custom-html), but Angular seems to ignore the CSS completely. With F12 I can find the marker, but I can’t visually see it. If I create the HTML Marker with ..

I am having difficulties aligning the icon to the right of the quantity. When I try float:right it positions the icon to the very right of the cell rather than up against the text. Is there a way to get it to the right of the text but right up against it? Any assistance with ..
I have innerhtml content as a string in component ts file under the variable text. So I am displaying that in my html file(In the UI). Some of the htmlcontent contains a span tag with a class named highlight. What i want is that when I hover my mouse over the highlight class I have ..
I have innerhtml content as a string in component ts file under the variable text. So I am displaying that in my html file (In the UI). Some of the htmlcontent contains a span tag with a class named highlight. What i want is that when I hover my mouse over the highlight class I ..
Recent Comments