Skip to content

Commit 6bb3b1c

Browse files
committed
rm default
1 parent 435a331 commit 6bb3b1c

37 files changed

+51
-59
lines changed

src/app-bar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const AppBar = React.createClass({
9797
position: 'relative',
9898
//zIndex: 5,
9999
width: '100%',
100-
display: 'flex',
100+
//display: 'flex',
101101
minHeight: themeVariables.height,
102102
backgroundColor: themeVariables.color,
103103
paddingLeft: spacing.desktopGutter,

src/auto-complete.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ const AutoComplete = React.createClass({
103103

104104
let styles = StyleSheet.create({
105105
root: {
106-
display: 'inline-block',
106+
//display: 'inline-block',
107107
position: 'relative',
108108
width: this.props.fullWidth ? '100%' : 256,
109109
},
@@ -117,7 +117,7 @@ const AutoComplete = React.createClass({
117117
width: '100%',
118118
},
119119
list: {
120-
display: 'block',
120+
//display: 'block',
121121
width: this.props.fullWidth ? '100%' : 256,
122122
},
123123
});

src/avatar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const Avatar = React.createClass({
7676
width: size,
7777
userSelect: 'none',
7878
borderRadius: '50%',
79-
display: 'inline-block',
79+
//display: 'inline-block',
8080
},
8181
});
8282

src/badge.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ export default React.createClass({
7373
return {
7474
root: {
7575
position: 'relative',
76-
display: 'inline-block',
76+
//display: 'inline-block',
7777
padding: [radius2x + 'px', radius2x + 'px', radius + 'px', radius + 'px'].join(' '),
7878
},
7979
badge: {
80-
display: 'flex',
80+
//display: 'flex',
8181
flexDirection: 'row',
8282
flexWrap: 'wrap',
8383
justifyContent: 'center',

src/card/card-header.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,20 +73,20 @@ const CardHeader = React.createClass({
7373
position: 'relative',
7474
},
7575
text: {
76-
display: 'inline-block',
76+
//display: 'inline-block',
7777
verticalAlign: 'top',
7878
},
7979
avatar: {
8080
marginRight: 16,
8181
},
8282
title: {
8383
color: this.props.titleColor,
84-
display: 'block',
84+
//display: 'block',
8585
fontSize: 15,
8686
},
8787
subtitle: {
8888
color: this.props.subtitleColor,
89-
display: 'block',
89+
//display: 'block',
9090
fontSize: 14,
9191
},
9292
};

src/card/card-title.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ const CardTitle = React.createClass({
6969
title: {
7070
fontSize: 24,
7171
color: this.props.titleColor,
72-
display: 'block',
72+
//display: 'block',
7373
lineHeight: '36px',
7474
},
7575
subtitle: {
7676
fontSize: 14,
7777
color: this.props.subtitleColor,
78-
display: 'block',
78+
//display: 'block',
7979
},
8080
};
8181
},

src/clearfix.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const ClearFix = React.createClass({
4949
let before = function() {
5050
return {
5151
content: "' '",
52-
display: 'table',
52+
//display: 'table',
5353
};
5454
};
5555

src/date-picker/calendar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const Calendar = React.createClass({
113113
weekCount === 6 ? 324 : 244,
114114
float: isLandscape ? 'right' : 'none',
115115
},
116-
dateDisplay: {
116+
datedisplay: {
117117
width: isLandscape ? 120 : '',
118118
height: isLandscape ?
119119
weekCount === 5 ? 238 :

src/date-picker/date-display.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const DateDisplay = React.createClass({
9292

9393
monthDay: {
9494
root: {
95-
display: 'inline-block',
95+
//display: 'inline-block',
9696
fontSize: 36,
9797
fontWeight: '400',
9898
lineHeight: '36px',

src/date-picker/date-picker-inline.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const DatePickerInline = React.createClass({
4040
//zIndex: 3,
4141
width: '100%',
4242
position: 'relative',
43-
display: 'block',
43+
//display: 'block',
4444
},
4545
subContainer: {
4646
position: 'absolute',

0 commit comments

Comments
 (0)