Skip to content
Snippets Groups Projects
Unverified Commit e9ffe6df authored by Linda's avatar Linda Committed by GitHub
Browse files

Merge pull request #3106 from LiFaytheGoblin/2641/make-title-field-width-dynamic

Make title field shrink for smaller screens
parents 890aa5ea d1ce27c0
No related branches found
No related tags found
No related merge requests found
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
justify-content: flex-start; justify-content: flex-start;
flex-wrap: nowrap; flex-wrap: nowrap;
align-items: center; align-items: center;
flex-grow: 1;
} }
.scratch-logo { .scratch-logo {
...@@ -84,6 +85,16 @@ ...@@ -84,6 +85,16 @@
background-color: $ui-black-transparent; background-color: $ui-black-transparent;
} }
.menu-bar-item.growable {
max-width: 12rem;
flex: 1;
}
.title-field-growable {
flex-grow: 1;
width: 2rem;
}
.file-group { .file-group {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
......
...@@ -393,12 +393,13 @@ class MenuBar extends React.Component { ...@@ -393,12 +393,13 @@ class MenuBar extends React.Component {
<FormattedMessage {...ariaMessages.tutorials} /> <FormattedMessage {...ariaMessages.tutorials} />
</div> </div>
<Divider className={classNames(styles.divider)} /> <Divider className={classNames(styles.divider)} />
<div className={classNames(styles.menuBarItem)}> <div className={classNames(styles.menuBarItem, styles.growable)}>
<MenuBarItemTooltip <MenuBarItemTooltip
enable enable
id="title-field" id="title-field"
> >
<ProjectTitleInput <ProjectTitleInput
className={classNames(styles.titleFieldGrowable)}
onUpdateProjectTitle={this.props.onUpdateProjectTitle} onUpdateProjectTitle={this.props.onUpdateProjectTitle}
/> />
</MenuBarItemTooltip> </MenuBarItemTooltip>
......
...@@ -2,7 +2,10 @@ ...@@ -2,7 +2,10 @@
@import "../../css/units.css"; @import "../../css/units.css";
@import "../../css/z-index.css"; @import "../../css/z-index.css";
$title-width: 12rem; /*
If project-title-input.jsx is part of a menu bar say menu-bar.jsx, it can have additional css classes that
can set a width for example or what it should do in a flex box (eg. grow).
*/
.title-field { .title-field {
border: 1px dashed $ui-black-transparent; border: 1px dashed $ui-black-transparent;
...@@ -12,7 +15,6 @@ $title-width: 12rem; ...@@ -12,7 +15,6 @@ $title-width: 12rem;
background-color: $ui-white-transparent; background-color: $ui-white-transparent;
background-clip: padding-box; background-clip: padding-box;
-webkit-background-clip: padding-box; -webkit-background-clip: padding-box;
width: $title-width;
height: auto; height: auto;
padding: .5rem; padding: .5rem;
} }
......
...@@ -36,7 +36,7 @@ class ProjectTitleInput extends React.Component { ...@@ -36,7 +36,7 @@ class ProjectTitleInput extends React.Component {
render () { render () {
return ( return (
<BufferedInput <BufferedInput
className={classNames(styles.titleField)} className={classNames(styles.titleField, this.props.className)}
maxLength="100" maxLength="100"
placeholder={this.props.intl.formatMessage(messages.projectTitlePlaceholder)} placeholder={this.props.intl.formatMessage(messages.projectTitlePlaceholder)}
tabIndex="0" tabIndex="0"
...@@ -49,6 +49,7 @@ class ProjectTitleInput extends React.Component { ...@@ -49,6 +49,7 @@ class ProjectTitleInput extends React.Component {
} }
ProjectTitleInput.propTypes = { ProjectTitleInput.propTypes = {
className: PropTypes.string,
intl: intlShape.isRequired, intl: intlShape.isRequired,
onUpdateProjectTitle: PropTypes.func, onUpdateProjectTitle: PropTypes.func,
projectTitle: PropTypes.string projectTitle: PropTypes.string
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment