styling Questions
4
Solved
I am trying to do some pagination, which in theory is working but the colour of the outline and number are coming out black and my background is very dark so it took me a while to even realised it ...
Paba asked 4/12, 2020 at 13:30
5
Solved
Here is my view styling
<View
style={{
flexDirection: 'column',
marginTop: 15,
borderTopWidth: 2,
borderStyle: 'dashed',
borderTopColor: 'rgb(225, 225,225)',
margin: 20,
alignSelf: 'cent...
Surgery asked 26/8, 2022 at 22:15
2
Solved
I'm trying to set the background color for TextField components in the app I'm working on, however it seems that when I add style={{background: "rgb(232, 241, 250)"}} to this component wi...
Sept asked 3/11, 2020 at 15:24
6
I am searching a way to styling shadow DOM from the outside. For example, I would like to set the color of all text in all 'span.special' elements as RED. Including 'span.special' elements from sha...
Oxpecker asked 20/5, 2016 at 17:34
9
Solved
I have a simple select box with an option group in my application.
<select>
<optgroup label="Swedish Cars">
<option value="volvo">Volvo</option>
<option value="saab"&...
6
Does anyone know how to add superscripts in the option tag of
<select name=" ">
<option value=" ">24<sup>th</sup></option>
</select>
1
i have a console.log message on my site with a link.
The styling is working but the link remains in black font on white background.
Can i change that?
$(function() {
var t = navigator.userAgent.t...
Grecism asked 9/4, 2018 at 8:39
1
In MUI v4, it's very easy to inspect the DOM and isolate the exact component file and style block within that file:
MUI v4 way of finding a specific element/style class
However, in MUI v5, this is ...
Unfathomable asked 17/2, 2022 at 3:11
6
Solved
I am using jquery datatables plugin which seems like a useful plugin to take a regular html table and add sorting, filtering, paging, etc
One issue i see is that when i search it doesn't seem to u...
Homograph asked 11/6, 2015 at 19:37
2
Solved
I'm trying to style the helper text that comes with the TextField Component given by Material UI ( found here). I'm using FormHelperTextProps (found here). However, it seems that, for some reason, ...
Bird asked 30/1, 2021 at 7:39
3
I need to make scrollbar that will be shorter than its parent block. It will be perfect if it will CSS-only! How can I do that?
img that shows exactly what I need
Handball asked 24/6, 2016 at 20:2
8
Solved
I'm trying to change the color of the background in my React Native app, from grey to white. I'm using react-navigation to make a TabNavigator after I render it. I tried to put this TabNavigator in...
Naumann asked 31/5, 2018 at 8:14
4
Solved
I want to achieve this
But using this css
border-left: 3px solid red;
border-radius: 3px;
It is producing this result
plz ignore spacing, i will add that
2
Solved
I am using the Material ui's tabs and was able to make changes to the Tab's indicator. However, I am trying to reduce the width of the indicator to some fix width for each tab using styles. But it ...
Trommel asked 19/8, 2020 at 10:28
3
Solved
I am creating a WPF button using Windows 8 styling (formerly metro).
I would like the focused state of the button to show with a solid background. When the mouse is over the control, I would like ...
Arch asked 31/1, 2013 at 18:38
2
Solved
currently I am using radar-charts (chart.js) in my angular project. I' m want to change the scaleLineColor of the different section and don't know how to achieve this result:
according to this ...
Fleuron asked 28/8, 2018 at 11:22
3
Solved
Im attempting to build a website using Material-UI and React. When attempting to use Material-UI's styling via the Hook API, it works online in codesandbox.io but does not work locally when I run i...
Barrier asked 8/1, 2019 at 1:44
3
Solved
For a custom framework like Bootstrap select https://silviomoreto.github.io/bootstrap-select/ how do I change the border color of a select box in Javascript?
I tried this but does not work.
doc...
Feminism asked 9/8, 2016 at 13:16
9
Solved
I was wondering if there was a way to change a button's style, in css, after it's been clicked, so not a element:active.
1
Solved
Backend dev here learning front. I am trying to hide an element on small and medium screens and visible on the rest of the screens.
But the thing is when I do sm:hidden it hides the element for sma...
Schaper asked 24/12, 2022 at 10:10
1
Solved
I'm creating a header and I have multiple items in the header like contact, products etc.
So, I'm creating Products with a dropdown, and if I hover then dropdown should appear.
But due to some issu...
40
Solved
I am using this code:
$('body').click(function() {
$('.form_wrapper').hide();
});
$('.form_wrapper').click(function(event){
event.stopPropagation();
});
And this HTML:
<div class="form_wr...
3
I have styled my dataframe using the below code:
th_props = [
('font-size', '14px'),
('text-align', 'center'),
('font-weight', 'bold'),
('color', '#6d6d6d'),
('background-color', '#f7ffff')
]...
3
I really would like to change the colours of MudBlazor UI Components. However, I cannot seem to override the default styles. Could someone please help me?
3
Solved
How do I style a <Typography /> component so that its font-color becomes a gradient?
So far what I've tried:
const CustomColor = withStyles({
root: {
fontColor: "-webkit-linear-gradien...
Pneumatology asked 26/2, 2021 at 18:31
1 Next >
© 2022 - 2024 — McMap. All rights reserved.