~ubuntu-sdk-team/ubuntu-ui-toolkit/bottomKeyboard

« back to all changes in this revision

Viewing changes to src/Ubuntu/Components/ListItems/1.3/LabelVisual.qml

  • Committer: Tarmac
  • Author(s): Zsombor Egri
  • Date: 2016-01-27 17:49:36 UTC
  • mfrom: (1814.2.23 paleette2)
  • Revision ID: tarmac-20160127174936-3bcz1l7w5wlibq05
Palette fix. Update components to use the palette. Fixes: https://bugs.launchpad.net/bugs/1495477.

Approved by ubuntu-sdk-build-bot, Tim Peeters, Christian Dywan, Zoltan Balogh.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
    elide: Text.ElideRight
34
34
    color: selected
35
 
           ? UbuntuColors.orange
 
35
           ? theme.palette.selected.backgroundText
36
36
           : (secondary
37
37
              ? (overlay
38
 
                 ? theme.palette.normal.overlayText
39
 
                 : theme.palette.normal.backgroundText)
 
38
                 ? theme.palette.normal.overlaySecondaryText
 
39
                 : theme.palette.normal.backgroundSecondaryText)
40
40
              : (overlay
41
41
                 ? theme.palette.normal.overlayText
42
42
                 : theme.palette.normal.backgroundText))