diff --git a/docs/dist/js/input.jsx b/docs/dist/js/input.jsx
index c3696c9467f758..678ca14505e56a 100644
--- a/docs/dist/js/input.jsx
+++ b/docs/dist/js/input.jsx
@@ -53,12 +53,12 @@ var Input = React.createClass({
}),
inputElement = this.props.multiline ?
:
- ;
+ ;
return (
{inputElement}
- {this.props.placeholder}
+ {this.props.placeholder}
{this.props.description}
@@ -85,6 +85,10 @@ var Input = React.createClass({
if (this.props.onChange) this.props.onChange(e, value);
},
+ _onPlaceholderClick: function(e) {
+ this.refs.input.getDOMNode().focus();
+ },
+
_onTextAreaChange: function(e) {
this._onInputChange(e);
this._onLineBreak();
@@ -103,4 +107,4 @@ var Input = React.createClass({
});
-module.exports = Input;
+module.exports = Input;
\ No newline at end of file
diff --git a/docs/dist/less/components/drop-down-icon.less b/docs/dist/less/components/drop-down-icon.less
index dda8da0c3762fd..7175d2f7d83c17 100644
--- a/docs/dist/less/components/drop-down-icon.less
+++ b/docs/dist/less/components/drop-down-icon.less
@@ -1,4 +1,4 @@
-@icon-width: 40px;
+@icon-width: 48px;
.mui-drop-down-icon {
display: inline-block;
diff --git a/docs/dist/less/components/icon.less b/docs/dist/less/components/icon.less
index 65a901f0e230c9..b9c43cc5d1f7d3 100644
--- a/docs/dist/less/components/icon.less
+++ b/docs/dist/less/components/icon.less
@@ -12,7 +12,7 @@
height: @icon-highlight-size;
background-color: rgba(0, 0, 0, .0);
position: absolute;
- top: 10px;
+ top: 9px;
border-radius: 2px;
left: 18px;
transition: none;
diff --git a/docs/dist/less/components/input.less b/docs/dist/less/components/input.less
index bb761222b76eb5..71cc9825d3a6ea 100644
--- a/docs/dist/less/components/input.less
+++ b/docs/dist/less/components/input.less
@@ -98,7 +98,7 @@
box-sizing: border-box;
padding-bottom: 14px;
- &[type='text'] {
+ &[type='text'], &[type='password'] {
display: block;
width: @input-width;
}
@@ -156,7 +156,7 @@
color: gray;
position: absolute;
top: -4px;
- z-index: -1;
+ //z-index: -1;
.ease-out;
}
}
diff --git a/docs/dist/less/components/paper-button.less b/docs/dist/less/components/paper-button.less
index 8733572883fdf3..03fca029e604ab 100644
--- a/docs/dist/less/components/paper-button.less
+++ b/docs/dist/less/components/paper-button.less
@@ -23,6 +23,7 @@
.mui-paper-button-content {
position: relative;
+ text-align: center;
}
.mui-paper-container {
diff --git a/docs/dist/less/components/toolbar.less b/docs/dist/less/components/toolbar.less
index 5b9410812912c5..3d4d976608fe4b 100644
--- a/docs/dist/less/components/toolbar.less
+++ b/docs/dist/less/components/toolbar.less
@@ -1,7 +1,7 @@
@toolbar-background-color: darken(#eeeeee, 5%);
@toolbar-height: 56px;
@toolbar-icon-color: rgba(0, 0, 0, .40);
-@toolbar-separator-color: rgba(0, 0, 0, .11);
+@toolbar-separator-color: rgba(0, 0, 0, .175);
@toolbar-menu-hover-color: rgba(0, 0, 0, .10);
@toolbar-menu-hover-color: @white;
@@ -96,6 +96,10 @@
&:first-child {
margin-left: -24px !important;
+
+ .mui-toolbar-title {
+ margin-left: 24px !important;
+ }
}
}