summaryrefslogtreecommitdiff
path: root/data/elementary/themes/edc/label.edc
blob: 95b18f9c654be9100a706c0151c995119c27934b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
group { name: "e/widgets/label";
   parts {
      part { name: "e.text.label"; type: TEXT;
         scale: 1;
         description { state: "default" 0.0;
            rel1.offset: 2 2;
            rel2.offset: -3 -3;
            color: 160 160 160 255;
            text { font: FN; size: 10;
               min: 1 1;
               ellipsis: -1;
               align: 0.0 0.5;
               text_class: "label";
            }
         }
         description { state: "disabled" 0.0;
            inherit: "default" 0.0;
            color: 0 0 0 16;
         }
      }
   }
   programs {
      program { signal: "e,state,disabled"; source: "e";
         action: STATE_SET "disabled" 0.0;
         target: "e.text.label";
      }
      program { signal: "e,state,enabled"; source: "e";
         action: STATE_SET "default" 0.0;
         target: "e.text.label";
      }
   }
}