Rocket.Chat.ReactNative/app/views/RoomInfoEditView/styles.js

89 lines
1.5 KiB
JavaScript
Raw Normal View History

import { StyleSheet } from 'react-native';
2019-03-29 19:36:07 +00:00
import sharedStyles from '../Styles';
export default StyleSheet.create({
2019-12-04 16:39:53 +00:00
button: {
...sharedStyles.textBold,
...sharedStyles.textAlignCenter
2019-12-04 16:39:53 +00:00
},
buttonInverted: {
borderWidth: 2,
borderRadius: 2
},
buttonContainerDisabled: {
2019-12-04 16:39:53 +00:00
opacity: 0.7
},
buttonContainer_inverted: {
paddingVertical: 15,
marginBottom: 0
},
button_inverted: {
flexGrow: 1
},
buttonContainerLastChild: {
marginBottom: 40
},
buttonContainer: {
paddingVertical: 15,
marginBottom: 20,
borderRadius: 2
},
buttonDanger: {
borderWidth: 2,
borderRadius: 2
},
switchContainer: {
flexDirection: 'row',
alignItems: 'flex-start'
},
switchLabelContainer: {
flex: 1,
2019-12-04 16:39:53 +00:00
paddingHorizontal: 10,
alignItems: 'flex-end'
},
switchLabelPrimary: {
fontSize: 16,
2019-03-29 19:36:07 +00:00
paddingBottom: 6,
2019-12-04 16:39:53 +00:00
...sharedStyles.textRegular
},
switchLabelSecondary: {
2019-03-29 19:36:07 +00:00
fontSize: 12,
...sharedStyles.textRegular,
2019-12-04 16:39:53 +00:00
textAlign: 'right'
},
switch: {
alignSelf: 'center'
},
divider: {
height: StyleSheet.hairlineWidth,
borderBottomWidth: StyleSheet.hairlineWidth,
marginVertical: 20
},
broadcast: {
...sharedStyles.textSemibold,
...sharedStyles.textAlignCenter
},
hideSystemMessages: {
alignItems: 'flex-start'
},
systemMessagesLabel: {
textAlign: 'left'
},
switchMargin: {
marginBottom: 16
[NEW] Channel avatars (#2504) * [WIP] Avatar cache invalidation * [WIP] Avatar container * [IMPROVEMENT] Avatar container * [CHORE] Improve code * Allow static image on Avatar * Fix avatar changing while change username (#1583) Co-authored-by: Prateek93a <prateek93a@gmail.com> * Add default props to properly update on Sidebar and ProfileView * Fix subscribing on the wrong moment * Storyshots update * RoomItem using Avatar Component * use iife to unsubscribe from user * Use component on avatar container * RoomItem as a React.Component * Move servers models to servers folder * Avatar -> AvatarContainer * Users indexed fields * Initialize author and check if u is present * Not was found -> User not found (turn comments more relevant) * RoomItemInner -> Wrapper * Revert Avatar Touchable logic * Revert responsability of LeftButton on Tablet Mode * Prevent setState on constructor * Run avatarURL only when its not static * Add streams RC Version * Move entire add user logic to result.success * Reorder init on RoomItem * onPress as a class function * Fix roomItem using same username * Add avatar Stories * Fix pick an image from gallery on ProfileView * Format Avatar URL to use RoomId. Co-authored-by: Ezequiel De Oliveira <ezequiel1de1oliveira@gmail.com> * edit room avatar * invalidate cache of room images * reinit avatar if something change * read avatar cache on search * room avatar changed system message * add avatar by rid test * update snapshot * etag cache on select channel * reset room avatar * increase caching to have a better image quality * fix lgtm warn * invalidate ci cache * get avatar etag on select users of create discussion * invalidate ci cache * Fix migration * Fix sidebar avatar not updating * Remove outdated comment * Tests Co-authored-by: Prateek93a <prateek93a@gmail.com> Co-authored-by: Diego Mello <diegolmello@gmail.com> Co-authored-by: Ezequiel De Oliveira <ezequiel1de1oliveira@gmail.com>
2020-10-30 13:51:04 +00:00
},
avatarContainer: {
alignItems: 'center',
justifyContent: 'center',
marginBottom: 10
},
resetButton: {
padding: 4,
borderRadius: 4,
position: 'absolute',
bottom: -8,
right: -8
}
});