2018-10-18 08:30:25 +00:00
|
|
|
import { BoxModel, ColorPalette, createStyleSheet } from '../../base/styles';
|
2017-09-18 07:09:43 +00:00
|
|
|
|
|
|
|
/**
|
2017-10-01 06:35:19 +00:00
|
|
|
* The style common to {@code LoginDialog} and {@code WaitForOwnerDialog}.
|
2017-09-18 07:09:43 +00:00
|
|
|
*/
|
|
|
|
const dialog = {
|
|
|
|
marginBottom: BoxModel.margin,
|
|
|
|
marginTop: BoxModel.margin
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2017-10-01 06:35:19 +00:00
|
|
|
* The style common to {@code Text} rendered by {@code LoginDialog} and
|
|
|
|
* {@code WaitForOwnerDialog}.
|
2017-09-18 07:09:43 +00:00
|
|
|
*/
|
|
|
|
const text = {
|
2018-10-18 08:30:25 +00:00
|
|
|
color: ColorPalette.white
|
2017-09-18 07:09:43 +00:00
|
|
|
};
|
2017-09-08 13:36:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The styles of the authentication feature.
|
|
|
|
*/
|
|
|
|
export default createStyleSheet({
|
2017-09-18 07:09:43 +00:00
|
|
|
|
|
|
|
/**
|
2017-10-01 06:35:19 +00:00
|
|
|
* The style of {@code Text} rendered by the {@code Dialog}s of the
|
2017-09-25 19:42:15 +00:00
|
|
|
* feature authentication.
|
2017-09-18 07:09:43 +00:00
|
|
|
*/
|
2017-09-25 19:42:15 +00:00
|
|
|
dialogText: {
|
2018-10-18 08:30:25 +00:00
|
|
|
...text,
|
|
|
|
margin: BoxModel.margin,
|
|
|
|
marginTop: BoxModel.margin * 2
|
2017-09-18 07:09:43 +00:00
|
|
|
},
|
|
|
|
|
2017-09-25 19:42:15 +00:00
|
|
|
/**
|
2017-10-01 06:35:19 +00:00
|
|
|
* The style of {@code LoginDialog}.
|
2017-09-25 19:42:15 +00:00
|
|
|
*/
|
|
|
|
loginDialog: {
|
|
|
|
...dialog,
|
|
|
|
flex: 0,
|
|
|
|
flexDirection: 'column'
|
|
|
|
},
|
|
|
|
|
2017-09-18 07:09:43 +00:00
|
|
|
/**
|
2017-10-01 06:35:19 +00:00
|
|
|
* The style of {@code WaitForOwnerDialog}.
|
2017-09-18 07:09:43 +00:00
|
|
|
*/
|
|
|
|
waitForOwnerDialog: {
|
|
|
|
...dialog,
|
|
|
|
...text
|
2017-09-08 13:36:42 +00:00
|
|
|
}
|
|
|
|
});
|