Note de ce sujet :
  • Moyenne : 0 (0 vote(s))
  • 1
  • 2
  • 3
  • 4
  • 5
Interface CSS
#66
(20-01-19, 19:28)techexo a écrit : Salut et merci pour ton travail !
J'ai un souci avec mon CSS, j'utilise le style Lumiroom de benoitdupont, mais je ne vois plus les icônes pipettes: dans filmique, par exemple, je ne vois les pipettes que lorsque je les sélectionne et qu'elles sont actives ; sinon elles sont de la même couleur que le fond.

J'utilise le style Lumiroom avec le @import qui va bien au début du fichier. Quelle est l'instruction à modifier pour cet élément ?

Merci Smile

Les pipettes sont gérées par cette ligne :

@define-color bauhaus_fg_insensitive alpha(@bauhaus_fg, 0.5);

Tu modifies ce qui est après "insensitive" avec les paramètres/couleurs de ton choix. Personnellement, j'ai ça (ça s'adapte du coup si je change les couleurs principales) :

@define-color bauhaus_fg_insensitive @selected_bg_color;

(17-01-19, 20:40)GM1901 a écrit : voici d'ailleurs le code complet que j’utilise, comme dit + haut il vient de nicoauffray :

Ravi que mon style te plaise. J'ai beaucoup fait évoluer mon style pour m'approcher encore plus du gris moyen. Voici ma nouvelle version si ça intéresse certains (avec de nombreux commentaires pour savoir à quoi correspond chaque ligne ; enfin presque chaque ligne...) :

Code :
@import '/usr/share/darktable/darktable.css';

/* Couleurs principales de l'interface (bg_color étant la couleur du fond) */
@define-color bg_color #777;
@define-color base_color #ffffff;
@define-color text_color @fg_color;
/* Couleur des modules */
@define-color plugin_bg_color @bg_color;
@define-color selected_bg_color #666;
@define-color selected_fg_color #f0f0f0;
/* Couleur des bulles d'aide */
@define-color tooltip_bg_color #BEBEBE;
@define-color tooltip_fg_color #454545;
/* Couleur claire principale */
@define-color fg_color #DDD;
/* Couleur du filet du cadre central */
@define-color really_dark_bg_color #595959;
/* Couleur de fond du cadre central de la chambre noire */
@define-color darkroom_bg_color #777;
@define-color darkroom_preview_bg_color shade(@darkroom_bg_color, .8);
/* Couleur de fond du cadre central de la table lumineuse */
@define-color lighttable_bg_color @darkroom_bg_color;
@define-color lighttable_preview_bg_color shade(@lighttable_bg_color, .8);
/* Couleurs de la brosse - masque */
@define-color brush_cursor alpha(white, .9);
@define-color brush_trace alpha(black, .8);
/* Couleurs des curseurs de modules de la chambre noire */
@define-color bauhaus_fg @fg_color;
@define-color bauhaus_border #696969;
@define-color bauhaus_bg @selected_bg_color;
@define-color bauhaus_fg_insensitive @selected_bg_color; /* Couleur pipettes */

/* Images dans la table lumineuse */
@define-color thumbnail_bg_color #888; /* Couleur autour de l'image */
@define-color thumbnail_selected_bg_color #BBB; /* Couleur autour de l'image sélectionnée */
@define-color thumbnail_hover_bg_color #ccc; /* Couleur autour de l'image survolée */
@define-color thumbnail_outline_color #595959; /* Bordure des "diapos" encadrant les images & métadonnées */
@define-color thumbnail_selected_outline_color #666;
@define-color thumbnail_hover_outline_color #999;
@define-color thumbnail_font_color #6c6c6c;
@define-color thumbnail_selected_font_color #7f7f7f;
@define-color thumbnail_hover_font_color #b2b2b2;
@define-color thumbnail_border_color #555; /* rectangle directly around image */
@define-color thumbnail_selected_border_color #e5e5e5;

/* Barre de progression */
progressbar *
{
background-color: @selected_bg_color;
}

/* Caractéristiques du texte dans darktable */
* {
  font: 8pt Sans;
  font-family: system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: @fg_color;
  background-color: @bg_color;
  border-color: #454545; /* Couleur curseur bas table lumineuse et filets préférences */
  text-shadow:none;
/*  margin: 0; */ /* this makes scroll bars super wide. */
  padding: 0;
  background-image: none;
}

button {
   background: #6D6D6D;
   border: none;
   border-radius: 5px;
}

/* Modules */
#iop-plugin-ui,#iop-plugin-ui:selected,
#lib-plugin-ui
{
  border: 1pt solid #656565;
  box-shadow: inset 0 0 1pt #555;
  border-radius: 5px;
  margin: 0pt;
  padding: 1pt 4pt 1pt 4pt;
  color: @selected_fg_color;
  background-color: #7F7F7F;
}

#iop-plugin-ui notebook tab *:hover,
#lib-plugin-ui notebook tab *:hover
{
  background-color: shade(@selected_bg_color, 1.2);
}

#iop-plugin-ui notebook tab:checked *,
#lib-plugin-ui notebook tab:checked * {
  background-color: shade(@selected_bg_color, 1.1);
}

/* Zones de texte dans les modules */
#iop-plugin-ui entry,
#lib-plugin-ui entry,
entry {
  border-radius: 4px;
  background-color: shade(@selected_bg_color, 1.1);
}

/* buttons in plugins */
#lib-plugin-ui * button,
button
{
  background-color: shade(@selected_bg_color, 1.0);
}

/* Fond barre de défilement des modules */

#iop-plugin-ui scrollbar.horizontal,
#iop-plugin-ui scrollbar.vertical,
#lib-plugin-ui scrollbar.horizontal,
#lib-plugin-ui scrollbar.vertical {
  border-color: @selected_bg_color;
  background-color: shade(@darkroom_bg_color, .9);
}


[Image: darktable-20190120215759.png]
Répondre


Messages dans ce sujet
Interface CSS - par benoitdupont - 23-12-18, 15:06
RE: Interface CSS - par pascal - 23-12-18, 15:39
RE: Interface CSS - par benoitdupont - 23-12-18, 16:54
RE: Interface CSS - par benoitdupont - 23-12-18, 22:55
RE: Interface CSS - par nicoauffray - 24-12-18, 10:33
RE: Interface CSS - par benoitdupont - 24-12-18, 14:50
RE: Interface CSS - par aurelienpierre - 24-12-18, 19:16
RE: Interface CSS - par nicoauffray - 25-12-18, 12:00
RE: Interface CSS - par pascal - 24-12-18, 15:04
RE: Interface CSS - par jpg54 - 25-12-18, 09:06
RE: Interface CSS - par benoitdupont - 26-12-18, 09:37
RE: Interface CSS - par senpai - 26-12-18, 09:51
RE: Interface CSS - par benoitdupont - 26-12-18, 10:53
RE: Interface CSS - par nicoauffray - 26-12-18, 11:07
RE: Interface CSS - par GM1901 - 17-01-19, 13:27
RE: Interface CSS - par dlink - 26-12-18, 10:58
RE: Interface CSS - par benoitdupont - 26-12-18, 11:21
RE: Interface CSS - par senpai - 26-12-18, 11:54
RE: Interface CSS - par benoitdupont - 26-12-18, 13:23
RE: Interface CSS - par senpai - 26-12-18, 15:48
RE: Interface CSS - par jpg54 - 26-12-18, 16:00
RE: Interface CSS - par aurelienpierre - 26-12-18, 21:07
RE: Interface CSS - par benoitdupont - 26-12-18, 21:14
RE: Interface CSS - par aurelienpierre - 26-12-18, 21:36
RE: Interface CSS - par benoitdupont - 27-12-18, 08:23
RE: Interface CSS - par jpg54 - 03-01-19, 09:35
RE: Interface CSS - par jpg54 - 06-01-19, 09:29
RE: Interface CSS - par jpg54 - 06-01-19, 11:27
RE: Interface CSS - par benoitdupont - 06-01-19, 12:05
RE: Interface CSS - par jpg54 - 06-01-19, 12:11
RE: Interface CSS - par DKT - 06-01-19, 18:59
RE: Interface CSS - par nicoauffray - 06-01-19, 19:05
RE: Interface CSS - par DKT - 06-01-19, 20:18
RE: Interface CSS - par nicoauffray - 06-01-19, 20:48
RE: Interface CSS - par mimi85 - 07-01-19, 09:41
RE: Interface CSS - par senpai - 07-01-19, 19:32
RE: Interface CSS - par Roger - 08-01-19, 21:43
RE: Interface CSS - par DKT - 07-01-19, 10:00
RE: Interface CSS - par DKT - 07-01-19, 13:53
RE: Interface CSS - par nicoauffray - 07-01-19, 17:44
RE: Interface CSS - par DKT - 07-01-19, 18:47
RE: Interface CSS - par mimi85 - 07-01-19, 21:46
RE: Interface CSS - par senpai - 07-01-19, 22:23
RE: Interface CSS - par DKT - 08-01-19, 13:50
RE: Interface CSS - par nicoauffray - 08-01-19, 20:21
RE: Interface CSS - par DKT - 10-01-19, 13:55
RE: Interface CSS - par jpverrue - 10-01-19, 23:12
RE: Interface CSS - par jpg54 - 11-01-19, 08:42
RE: Interface CSS - par rawfiner - 11-01-19, 08:49
RE: Interface CSS - par mimi85 - 11-01-19, 15:21
RE: Interface CSS - par nicoauffray - 11-01-19, 18:29
RE: Interface CSS - par jpg54 - 14-01-19, 09:21
RE: Interface CSS - par jpg54 - 17-01-19, 14:09
RE: Interface CSS - par GM1901 - 17-01-19, 14:29
RE: Interface CSS - par jpg54 - 17-01-19, 14:36
RE: Interface CSS - par pascal - 17-01-19, 15:00
RE: Interface CSS - par GM1901 - 17-01-19, 16:06
RE: Interface CSS - par pascal - 17-01-19, 17:24
RE: Interface CSS - par GM1901 - 17-01-19, 17:44
RE: Interface CSS - par pascal - 17-01-19, 18:17
RE: Interface CSS - par jpg54 - 17-01-19, 19:14
RE: Interface CSS - par nicoauffray - 17-01-19, 20:03
RE: Interface CSS - par GM1901 - 17-01-19, 20:40
RE: Interface CSS - par jpg54 - 17-01-19, 20:53
RE: Interface CSS - par techexo - 20-01-19, 19:28
RE: Interface CSS - par nicoauffray - 20-01-19, 21:39
RE: Interface CSS - par jpverrue - 23-01-19, 12:30
RE: Interface CSS - par pascal - 23-01-19, 17:09
RE: Interface CSS - par jpverrue - 23-01-19, 17:32
RE: Interface CSS - par Thib22 - 27-01-19, 22:58
RE: Interface CSS - par jpg54 - 28-01-19, 09:47
RE: Interface CSS - par mimi85 - 28-01-19, 10:08
RE: Interface CSS - par Thib22 - 28-01-19, 19:28
RE: Interface CSS - par Thib22 - 28-01-19, 22:42
RE: Interface CSS - par aurelienpierre - 28-01-19, 22:46
RE: Interface CSS - par Roger - 29-01-19, 19:21
RE: Interface CSS - par jpverrue - 30-01-19, 09:50
RE: Interface CSS - par pascal - 30-01-19, 17:03
RE: Interface CSS - par DKT - 30-01-19, 17:39
RE: Interface CSS - par Applestore - 27-04-19, 16:19
RE: Interface CSS - par nicoauffray - 27-04-19, 16:38
RE: Interface CSS - par pascal - 27-04-19, 17:09
RE: Interface CSS - par nicoauffray - 27-04-19, 17:32
RE: Interface CSS - par Applestore - 28-04-19, 08:22

Atteindre :


Utilisateur(s) parcourant ce sujet : 3 visiteur(s)