Skip to content

Commit

Permalink
- active frame
Browse files Browse the repository at this point in the history
  • Loading branch information
doctorrokter committed Jan 29, 2018
1 parent 44e00ff commit 3d20d69
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
16 changes: 12 additions & 4 deletions assets/pages/HighCover.qml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ import bb.cascades 1.4
Container {
id: root

property variant account: undefined
property variant account: {email: "[email protected]", name: {display_name: "Mikhail Chachkouski"}}
property variant spaceUsage: undefined
property int bytesInGB: 1073741824

horizontalAlignment: HorizontalAlignment.Fill
background: Color.White

Container {
horizontalAlignment: HorizontalAlignment.Fill
Expand All @@ -22,7 +23,8 @@ Container {

ImageView {
imageSource: "asset:///images/ic_contact.png"
filterColor: ui.palette.secondaryTextOnPlain
// filterColor: ui.palette.secondaryTextOnPlain
filterColor: Color.DarkGray
verticalAlignment: VerticalAlignment.Center
maxWidth: ui.du(5)
maxHeight: ui.du(5)
Expand All @@ -38,6 +40,7 @@ Container {
Label {
text: root.account === undefined ? "" : root.account.name.display_name
textStyle.base: SystemDefaults.TextStyles.SubtitleText
textStyle.color: Color.Black
multiline: true
}
}
Expand All @@ -46,7 +49,8 @@ Container {
Label {
text: root.account === undefined ? "" : root.account.email
textStyle.base: SystemDefaults.TextStyles.SmallText
textStyle.color: ui.palette.secondaryTextOnPlain
textStyle.color: Color.Black
textStyle.fontWeight: FontWeight.W300
}
}

Expand All @@ -69,7 +73,8 @@ Container {

ImageView {
imageSource: "asset:///images/ic_set_as_default.png"
filterColor: ui.palette.secondaryTextOnPlain
// filterColor: ui.palette.secondaryTextOnPlain
filterColor: Color.DarkGray
verticalAlignment: VerticalAlignment.Center
maxWidth: ui.du(5)
maxHeight: ui.du(5)
Expand All @@ -86,6 +91,9 @@ Container {
id: bytesLabel
textStyle.base: SystemDefaults.TextStyles.SubtitleText
multiline: true
textStyle.color: Color.Black
textStyle.fontWeight: FontWeight.W300
text: "2134"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion buildnum
Original file line number Diff line number Diff line change
@@ -1 +1 @@
881
884
2 changes: 1 addition & 1 deletion translations/Basket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -393,8 +393,8 @@ Copy this link and open it in any modern browser (mobile or desktop):</source>
<context>
<name>HighCover</name>
<message>
<location filename="../assets/pages/HighCover.qml" line="99"/>
<location filename="../assets/pages/HighCover.qml" line="100"/>
<location filename="../assets/pages/HighCover.qml" line="101"/>
<source>GB</source>
<translation type="unfinished"></translation>
</message>
Expand Down
2 changes: 1 addition & 1 deletion translations/Basket_ru.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,8 @@ Copy this link and open it in any modern browser (mobile or desktop):</source>
<context>
<name>HighCover</name>
<message>
<location filename="../assets/pages/HighCover.qml" line="99"/>
<location filename="../assets/pages/HighCover.qml" line="100"/>
<location filename="../assets/pages/HighCover.qml" line="101"/>
<source>GB</source>
<translation type="unfinished">ГБ</translation>
</message>
Expand Down

0 comments on commit 3d20d69

Please sign in to comment.