Skip to content

Commit d0affd1

Browse files
authored
Merge pull request #91 from mendix/develop
Merge develop to release
2 parents 428e26d + 9f3868d commit d0affd1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+368
-826
lines changed

index-phone-preview.html

Lines changed: 0 additions & 29 deletions
This file was deleted.

index-rtl.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
66
<title>Mendix</title>
7-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
88
<meta name="apple-mobile-web-app-capable" content="yes">
99

1010
{{themecss}}

index-tablet-preview.html

Lines changed: 0 additions & 29 deletions
This file was deleted.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
66
<title>Mendix</title>
7-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
88
<meta name="apple-mobile-web-app-capable" content="yes">
99

1010
{{themecss}}

login-with-sso.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" />
55
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
66
<title>Login</title>
7-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1" />
88
<meta name="apple-mobile-web-app-capable" content="yes" />
99

1010
{{themecss}}

login.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" />
55
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
66
<title>Login</title>
7-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1" />
88
<meta name="apple-mobile-web-app-capable" content="yes" />
99

1010
{{themecss}}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "atlas-ui-framework",
3-
"version": "2.6.1",
3+
"version": "2.6.2",
44
"description": "Mendix Atlas UI is the foundation of making beautiful apps with Mendix. For more information about the framework go to https://atlas.mendix.com.",
55
"main": "",
66
"scripts": {

resources/phone.png

-20 KB
Binary file not shown.

resources/tablet.png

-10.1 KB
Binary file not shown.

styles/native/js/app/custom-variables.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ export const font = {
7272
sizeH5: adjustFont(14),
7373
sizeH6: adjustFont(12),
7474
color: setColorBasedOnBackground(background.primary),
75+
colorDisabled: "#9DA1A8",
76+
labelColorDisabled: "#474E5C",
7577
weightLight: "100",
7678
weightNormal: "normal",
7779
weightSemiBold: "600",
@@ -111,8 +113,11 @@ export const button = {
111113
},
112114
primary: {
113115
color: "#FFF",
116+
colorDisabled: font.colorDisabled,
114117
borderColor: brand.primary,
118+
borderColorDisabled: border.color,
115119
backgroundColor: brand.primary,
120+
backgroundColorDisabled: border.color,
116121
},
117122
secondary: {
118123
color: brand.primary,
@@ -141,11 +146,13 @@ export const button = {
141146
export const input = {
142147
// Colors
143148
color: font.color,
149+
colorDisabled: font.colorDisabled,
144150
errorColor: brand.danger,
145151
labelColor: font.color,
152+
labelColorDisabled: font.labelColorDisabled,
146153
borderColor: contrast.lower,
147154
backgroundColor: background.primary,
148-
disabledBackgroundColor: contrast.lowest,
155+
backgroundColorDisabled: background.secondary,
149156
selectionColor: contrast.lower,
150157
placeholderTextColor: contrast.regular,
151158
underlineColorAndroid: "transparent",

0 commit comments

Comments
 (0)