Этот коммит содержится в:
Asaad Mahmood
2016-04-26 20:59:14 +05:00
коммит произвёл Corey Hulen
родитель 88aa2a10b9
Коммит c41cd44ada
6 изменённых файлов: 33 добавлений и 16 удалений

Просмотреть файл

@@ -20,7 +20,7 @@ export default class BackstageHeader extends React.Component {
key={'divider' + index} key={'divider' + index}
className='backstage-header__divider' className='backstage-header__divider'
> >
{'>'} <i className='fa fa-angle-right'></i>
</span> </span>
); );
} }

Просмотреть файл

@@ -55,13 +55,15 @@ export default class TeamMembersModal extends React.Component {
onHide={this.props.onHide} onHide={this.props.onHide}
> >
<Modal.Header closeButton={true}> <Modal.Header closeButton={true}>
<FormattedMessage <Modal.Title>
id='team_member_modal.members' <FormattedMessage
defaultMessage='{team} Members' id='team_member_modal.members'
values={{ defaultMessage='{team} Members'
team: teamDisplayName values={{
}} team: teamDisplayName
/> }}
/>
</Modal.Title>
</Modal.Header> </Modal.Header>
<Modal.Body> <Modal.Body>
<MemberListTeam style={{maxHeight}}/> <MemberListTeam style={{maxHeight}}/>

Просмотреть файл

@@ -246,6 +246,8 @@
.file-details__name { .file-details__name {
color: alpha-color($black, .9); color: alpha-color($black, .9);
font-size: 16px; font-size: 16px;
margin: 5px 0;
word-break: break-word;
} }
.file-details__info { .file-details__info {

Просмотреть файл

@@ -797,10 +797,11 @@
&.move--left-small { &.move--left-small {
@include translate3d(-290px, 0, 0); @include translate3d(-290px, 0, 0);
&:before { &:before {
z-index: 9999;
transition: background-color 0.5s ease;
background-color: rgba(0, 0, 0, 0.4); background-color: rgba(0, 0, 0, 0.4);
transition: background-color 0.5s ease;
z-index: 9999;
} }
} }
@@ -810,6 +811,12 @@
} }
} }
.integration-option {
height: auto;
margin-left: 0;
width: 100%;
}
.app__content { .app__content {
padding-top: 45px; padding-top: 45px;
margin: 0; margin: 0;
@@ -917,10 +924,6 @@
} }
} }
.add-integration {
width: 100%;
}
.backstage-list__item { .backstage-list__item {
display: block; display: block;

Просмотреть файл

@@ -181,7 +181,7 @@
background-color: #f1f1f1; background-color: #f1f1f1;
min-height: 600px; min-height: 600px;
overflow: auto; overflow: auto;
padding: 0 20px 20px; padding: 0 40px 20px;
} }
.wrapper--fixed { .wrapper--fixed {

Просмотреть файл

@@ -114,6 +114,11 @@ body {
border-top-width: 0; border-top-width: 0;
} }
.backstage-header__divider {
margin: 0 10px;
color: $gray;
}
.backstage-header { .backstage-header {
@include clearfix; @include clearfix;
margin-bottom: 20px; margin-bottom: 20px;
@@ -180,6 +185,7 @@ body {
background-color: $white; background-color: $white;
border: 1px solid $light-gray; border: 1px solid $light-gray;
padding: 5px 15px; padding: 5px 15px;
min-height: 50px;
} }
.backstage-list__item { .backstage-list__item {
@@ -296,12 +302,16 @@ body {
border: 1px solid $light-gray; border: 1px solid $light-gray;
display: inline-block; display: inline-block;
height: 210px; height: 210px;
margin: 0 30px 20px 0; margin: 0 0 20px 30px;
padding: 20px; padding: 20px;
text-align: center; text-align: center;
vertical-align: top; vertical-align: top;
width: 250px; width: 250px;
&:first-child {
margin-left: 0;
}
&:hover { &:hover {
color: default; color: default;
text-decoration: none; text-decoration: none;