styles Questions
3
Solved
I have styled a tooltip like
<Setter Property="ToolTip">
<Setter.Value>
<Border Background="Red" CornerRadius="5" Padding="5" Margin="0">
<TextBlock Text="Hello" Foreground...
8
Solved
Im trying to style a <select> in firefox. In chrome I made it with:
-webkit-appearance: none;
background: #eeeeee url("../img/select-arrow.jpg") no-repeat center right;
But on firefox I ca...
5
I'd like to be able to give any text view the same aspect as if it was disabled.
Currently I am using a style that inherits TextAppearance and adds a gray text color, but I'd prefer using something...
6
Solved
I'm a newbie here to React and I'm a little bit confused on how to override classes in Material UI. I took a look at the examples and tried to mimic it but it didn't seem to do what I want it to ...
2
I have my "App-component" and a "B-component" that gets rendered inside my app component. Each has its own style.
But when it gets compiled, my ComponentB.css is put before my app.css, making the...
6
I am new to android and I'm trying to set a style to all check boxes in my application. My application style is set to Theme.Holo which is dark and I would like the check boxes on my list view to b...
Adsorbate asked 13/4, 2012 at 5:4
16
Solved
What I have is an object that has an IsReadOnly property. If this property is true, I would like to set the IsEnabled property on a Button, ( for example ), to false.
I would like to believe that ...
2
Solved
I want to shape my WPF tooltip like the image below:
How do I achieve this?
5
I'm separating my styles in the following way:
styles /
|-- base.js
|-- base.ios.js
|-- base.android.js
Each of them exports a StyleSheet component created as in this example:
import { StyleShe...
Stratocracy asked 22/12, 2016 at 18:16
7
Solved
I have a ListViewItem that I am applying a Style to and I would like to put a dotted grey line as the bottom Border.
How can I do this in WPF? I can only see solid color brushes.
Joiejoin asked 1/6, 2011 at 1:42
12
Solved
In WPF, how would I apply multiple styles to a FrameworkElement? For instance, I have a control which already has a style. I also have a separate style which I would like to add to it without blowi...
5
Solved
I have this object, with the styles I want for the modal:
const customStyles = {
content: {
top: '35%',
left: '50%',
right: 'auto',
bottom: 'auto',
marginRight: '-50%',
width: '60%',
trans...
Fabricant asked 6/4, 2018 at 20:28
4
I was wondering if you could help me with a style options issue in ttk. I've managed to change most of the basic ttk widgets to the style of my preference. I'm only stuck at changing the style of a...
13
Solved
My component has styles that depend on current datetime. In my component I've got the following function.
private fontColor( dto : Dto ) : string {
// date d'exécution du dto
let dtoDate : Date...
Anachronism asked 30/9, 2016 at 8:31
4
Solved
In VC++, I use EnumWindows(...), GetWindow(...), and GetWindowLong(), to get the list of windows and check whether the window is top window (no other window as owner), and whether the window is vis...
Vivianaviviane asked 1/9, 2011 at 22:33
3
Solved
I have a ResourceDictionary that contains Style definitions for controls used within my application.
All of the styles are applied properly to the controls in the window...but the style in the Res...
6
Solved
How can I set style to var_dump() function and PHP errors style, like on the next image?
At the moment I have next view of var_dump() (with <pre>var_dump(...)</pre>, without it wil...
Litharge asked 2/8, 2015 at 12:20
4
Solved
hi i want to change my font size by using paint , canvas in android. My code is here.
how can i do this ?
public class MainActivity extends Activity
{
@Override
protected void onCreate(Bundle sa...
8
Solved
When using ordinary CSS if you want to style your place holder you use these css selectors :
::-webkit-input-placeholder {
color: red;
}
But I can't figure out how to apply these type of styles...
Syzran asked 12/8, 2016 at 16:44
4
Solved
How can you set the following in code behind?
<Style TargetType="{x:Type TextBox}" BasedOn="{StaticResource {x:Type TextBox}}">
I'm using a Theme merged in App.xaml. It works great for all...
17
Solved
I need to create a rounded corner glossy button in WPF. Can anyone please explain me what steps are needed?
Sybarite asked 19/7, 2011 at 10:22
4
Solved
Let's say I have a basic webpage:
<LABEL ID="THE_LABEL" FOR="THE_CHECKBOX"><INPUT TYPE=checkbox ID="THE_CHECKBOX"/> Blue when checked!</LABEL>
Now let's say that I want the lab...
1
Solved
On iPad with iOS 16 searchController displaying on the right side. Like this:
How can I return the searchController's "default" view? Like this:
Retake asked 19/9, 2022 at 16:42
3
Solved
Obviously it can have a style applied to it - what am trying to find out if its possible to define the Bullet element within the style, so you don't have to keep defining it over and over in the XA...
2
Solved
So i'm updating my apps to fully support Monet and Material You guidelines, and the official site mentions a new design for the switches. I used it, and that's the result:
I have a preference scre...
Siberia asked 7/9, 2022 at 16:56
© 2022 - 2025 — McMap. All rights reserved.