Questions tagged [theming]

Theming is the modification of the user interface of a software application without affecting its functionality

Theming is used to match the look and feel of an application to a particular domain, motif, or user. It is also known as skinning. Many facets of the design can be controlled, such as:

  • Color schemes
  • Background images
  • Typography
  • Iconography

References

420 questions
4
votes
1 answer

Why does the Cascade for CSS Custom Properties Not Work?

I have a full working CodePen here showing the problem. I'm using CSS custom properties like so: :root { --global-primary-colour-hue: 211; --global-primary-colour-saturation: 100%; --global-primary-colour-lightness: 50%; …
Muhammad Rehan Saeed
  • 35,627
  • 39
  • 202
  • 311
4
votes
1 answer

Creating a Widget area in my Wordpress Timber Theme

I am using Timber to create a very basic Wordpress theme. I'm stuck though. I want to create Widget areas in the theme and I can't figure it out. I've tried following the instructions, for creating a Dynamic Widget, on this page -…
John Behan
  • 574
  • 5
  • 20
3
votes
1 answer

Unstyle all popup with diazo theme

I'm using diazo for theming, and I have a problem with all popups. I'm using Plone 4.1.3. I've read a lot that to prevent theming popups, you have to include this rule : That's…
Jihaisse
  • 977
  • 5
  • 24
3
votes
2 answers

Diazo: if not for if-path

I'm working on a site with multiple theme base on path:
quyetnd
  • 589
  • 3
  • 8
3
votes
2 answers

jQuery Ui theme - why should I pick it or shouldn't I?

So my goal is to theme / create a new skin for an already existing application. Basically I wanna toss away the old design and come up with a bunch of new possible designs - is jQuery a good approach for easily designing and presenting a bunch of…
Toskan
  • 13,911
  • 14
  • 95
  • 185
3
votes
1 answer

How to use ColorScheme in FLutter ThemeData?

I'm trying to create two color schemes, one for light mode and one for dark mode. So in main.dart I returned this MaterialApp with lightThemeData and darkThemeData return MaterialApp( initialRoute: '/', routes: routesHandler, theme:…
anon
3
votes
3 answers

Expose and use customizable variables in Angular library

I have made an Angular library containing one component myComponent. I can successfully build it and use it in my main application. I want to add the functionality of customizing some of the scss variables that are used in myComponent by the…
bmurauer
  • 989
  • 8
  • 24
3
votes
1 answer

How to make MUI outlined Textfield label RTL?

I use MUI v4 and I have an RTL theme (I put direction: 'rtl' inside the theme), and it works fine until I use an outlined TextField - for some reason the value itself is aligned RTL but the label is attached the top left position of the…
user2993539
  • 375
  • 1
  • 3
  • 14
3
votes
4 answers

Order totals block on Magento order email and invoice email templates

Can anyone point me to the templates/code blocks that are used for the order totals block on the Magento order mail and invoice e-mail templates? The tax issue is solved but I need to implement some logic to get rid of the shipping and the subtotal.…
Wgenie
  • 199
  • 1
  • 2
  • 11
3
votes
1 answer

Custom Teams theming with fluentui/-react-northstar

Docs for fluentui-react-northstar theming can be found here. I am struggling to understand how to make use of a custom theme. It seems I need one provider for the Teams base theme, and then a nested one for my own theme (which may well be wrong) …
jwccit
  • 31
  • 2
3
votes
2 answers

Angular - how to theme my own component using mixin?

I created a component: message.component.html
Cedric Arnould
  • 1,991
  • 4
  • 29
  • 49
3
votes
1 answer

How to cleanly present different text to users based on user properties?

I'm building an app in Rails with SSR ERB views. In the app I'm building, each user is associated with a brand (i.e., a company). Based on the brand the user is associated with, the app must present the "correct" branded experience -- including…
Daniel Thorne
  • 477
  • 1
  • 5
  • 12
3
votes
3 answers

theming in yii framework

How can I create base theme and sub theme in yii framework?
Atef Badran
  • 111
  • 1
  • 3
  • 5
3
votes
2 answers

Trying to optimize a code to output a value based on multiple/different conditions

Basically I have this if else condition that checks the entity type of a node and outputs a value based on the condition. As seen in the code below if the entity type is press_release it outputs Press Release on the markup and if the entity type is…
clestcruz
  • 1,081
  • 3
  • 31
  • 75
3
votes
1 answer

How can I fetch/print the path or url of an entity reference to my twig template (Drupal 8)?

I have been trying to figure out how I can pull the url of a node content type using an entity reference. Apparently using {{ links.entity.uri }} or {{ links.entity.url }} does not work
{% for links in node.field_related_items %}

{{…

clestcruz
  • 1,081
  • 3
  • 31
  • 75
1 2
3
27 28