2,658 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
0
answers
51
views
VS code extension side panel UI development test [closed]
Is there anything I have to test the UI sidebar UI design test always without check from the extension running.
2
votes
1
answer
139
views
How do I make a matplotlib bar graph scale with the amount of items?
I am working on a small project and it is my first time using matplotlib, and I am struggling with how to make my bar graph look better with more inputs. The whole idea of the program is to read text ...
2
votes
1
answer
85
views
CSS Lists in a specific format
I am wondering if you could automatically create a list in the following format:
A.
I.
1.
a)
aa)
(1)
(a)
(aa)
etc. etc.
Could anyone help me accomplish this?
I am asking for my Anki-template
I ...
0
votes
0
answers
62
views
How to change the sizing or the layout of the label lightning-accordion-section so that it wouldn't overlap with the buttons in the action slot?
I have an issue with the lightning-accordion-section styling where it overlaps with the action buttons:
screenshot here
Here is my code:
<lightning-accordion allow-multiple-sections-open>
&...
1
vote
0
answers
53
views
Modfiy the text color of the picker items on Android
Is there an easier way to change the text color of the items in a Picker on Android other than implementing your own AlertDialog or custom MAUI picker? I'm talking about the picker and no other ...
1
vote
1
answer
49
views
Why isn't my React Native view moving down?
I'm trying to move this view, which is currently at the top and blue, down. I've tried everything I can think of, but it hasn't moved and remains at the top.enter image description here
As you can see ...
-2
votes
2
answers
104
views
I can't get the color styling to work on my embedded icon in HTML. It's a hamburger style menu bar for responsive top nav [closed]
I'm introducing a responsive navbar to my site so the menu turns into a hamburger style menu that only appears when the screen size is less that 600 pixels wide.
I have the icon (embedded from font ...
1
vote
0
answers
84
views
How to style background color and border line for the selected bar in React ApexCharts like this?
I'm using react-apexcharts to create a bar chart, and I want to customize the appearance of a selected bar when clicked.
designer want this.
I know that setting the states.active.filter to none ...
1
vote
0
answers
124
views
Any workaround for broken SystemColors from Win10 onwards?
I want to use one of the system colors in XAML.
It used to be possible to do this:
<Setter Property="Foreground"
Value="{DynamicResource {x:Static SystemColors....
2
votes
3
answers
146
views
Why are the button sizes on the iOS simulator so huge, but correctly sized on Windows and Android? - .NET MAUI
Im developing an app and testing on iOS, Windows and Android.
Windows is fine, Android too, but the iOS simulator is throwing up some strange behaviour in terms of button sizing? Malformed I suppose?
...
1
vote
1
answer
400
views
Avalonia UI use Button.myclass:pointerover to override Button:pointerover
I managed to override properties of a button class using styles:
<Style Selector="Button.icononly">
<Setter Property="Background" Value="Yellow"/>
</...
0
votes
1
answer
70
views
How to position image in ImageBackground component?
I just want to place this image to the top of the screen with ImageBackground component of React-Native, using this background image resizeMode='contain' (NOT cover) since the image is fit to ...
0
votes
1
answer
75
views
How to remove striping from JS Datatables after applying custom styling
To remove striping on Datatables you add:
stripeClasses:[]
But I have the following styling added to change background cell color depending on the value of the cell:
var table = $('#...
1
vote
1
answer
1k
views
How to style "Namespace" in a "Class Diagram" in Mermaid?
In Mermaid, we can define a class such as EnumMap to be an object in our Class Diagram.
class EnumMap { }
We can style that object by using style command.
style EnumMap color : SeaGreen
Furthermore, ...
-1
votes
1
answer
45
views
Sticky button stickied left taking up whole width?
Hello I have a button that is stickied to the bottom left but taking up whole space for some reason. Commenting display: flex and flex-direction: column in .todo-list does not allow the plus button to ...