* Adding the sidebar fix

* Fixing inner-wrap before outside the app

* PLT-2560 - Fixing userlist in system console

* Removing sidebar stuff
Этот коммит содержится в:
Asaad Mahmood
2016-04-13 20:11:50 +05:00
коммит произвёл Christopher Speller
родитель 51549cc0b2
Коммит eff252062a
2 изменённых файлов: 84 добавлений и 82 удалений

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

@@ -441,87 +441,87 @@
}
}
.more-modal__list {
display: flex;
flex-direction: column;
overflow: auto;
}
.popover & {
font-size: .95em;
.more-modal__list {
display: flex;
flex-direction: column;
overflow: auto;
.more-modal__row {
padding: 5px 10px;
}
.popover & {
font-size: .95em;
.more-modal__name {
font-weight: normal;
}
}
.more-modal__image {
@include border-radius(60px);
flex-grow: 0;
flex-shrink: 0;
margin-right: 8px;
}
.more-modal__details {
flex-grow: 1;
flex-shrink: 1;
overflow: hidden;
text-overflow: ellipsis;
}
.more-modal__actions {
flex-grow: 0;
flex-shrink: 0;
padding-left: 20px;
.more-modal__row {
padding: 5px 10px;
}
.more-modal__name {
font-size: .95em;
font-weight: 600;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.more-modal__description {
@include opacity(.7);
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.more-modal__row {
border-bottom: 1px solid $light-gray;
display: flex;
padding: 8px 15px;
}
p {
@include opacity(.8);
font-size: .9em;
margin: 5px 0;
overflow: hidden;
text-overflow: ellipsis;
font-weight: normal;
}
}
.filtered-user-list {
.more-modal__image {
@include border-radius(60px);
flex-grow: 0;
flex-shrink: 0;
margin-right: 8px;
}
.more-modal__details {
flex-grow: 1;
flex-shrink: 1;
overflow: hidden;
text-overflow: ellipsis;
}
.more-modal__actions {
flex-grow: 0;
flex-shrink: 0;
padding-left: 20px;
}
.more-modal__name {
font-size: .95em;
font-weight: 600;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.more-modal__description {
@include opacity(.7);
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.more-modal__row {
border-bottom: 1px solid $light-gray;
display: flex;
flex-direction: column;
.filter-row {
flex-grow: 0;
flex-shrink: 0;
}
.user-list {
flex-grow: 1;
flex-shrink: 1;
}
padding: 8px 15px;
}
p {
@include opacity(.8);
font-size: .9em;
margin: 5px 0;
overflow: hidden;
text-overflow: ellipsis;
}
}
.filtered-user-list {
display: flex;
flex-direction: column;
.filter-row {
flex-grow: 0;
flex-shrink: 0;
}
.user-list {
flex-grow: 1;
flex-shrink: 1;
}
}

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

@@ -739,17 +739,19 @@
.inner-wrap {
@include single-transition(all, .5s, ease);
&:before {
//Some trickery in order for the z-index transition to happen immediately on move-in and delayed on move-out.
background-color: transparent;
content: '';
height: 100%;
left: -15px;
position: absolute;
top: 0;
transition: background-color 0.5s ease, z-index 0s ease 0.5s;
width: calc(100% + 30px);
z-index: 0;
.app__body & {
&:before {
//Some trickery in order for the z-index transition to happen immediately on move-in and delayed on move-out.
background-color: transparent;
content: '';
height: 100%;
left: -15px;
position: absolute;
top: 0;
transition: background-color 0.5s ease, z-index 0s ease 0.5s;
width: calc(100% + 30px);
z-index: 0;
}
}
&.move--right {