Bug 1416104 - Part 7: Make animated property list scrollable. r=gl

MozReview-Commit-ID: Abs3XL4I6SM

--HG--
extra : rebase_source : 730e99e29842d6e4a0ec8bbbd70d07141effbc96
This commit is contained in:
Daisuke Akatsuka 2018-01-19 16:40:26 +09:00
Родитель eb760cc6e8
Коммит 48188c9ac8
1 изменённых файлов: 19 добавлений и 1 удалений

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

@ -25,6 +25,10 @@
height: 100%;
}
#animation-container .uncontrolled {
overflow: hidden;
}
/* Animation List Container */
.animation-list-container {
display: flex;
@ -224,6 +228,10 @@
/* Animation Detail */
.animation-detail-container {
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
width: 100%;
}
@ -231,6 +239,14 @@
white-space: nowrap;
}
/* Animated Property List Container */
.animated-property-list-container {
display: flex;
flex: 1;
flex-direction: column;
overflow-y: auto;
}
/* Animated Property List Header */
.animated-property-list-header {
display: flex;
@ -241,7 +257,7 @@
/* Keyframes Progress Tick List */
.keyframes-progress-tick-list {
margin-right: var(--graph-right-offset);
position: relative;
position: absolute;
width: calc(100% - var(--sidebar-width) - var(--graph-right-offset));
}
@ -260,8 +276,10 @@
/* Animated Property List */
.animated-property-list {
flex: 1;
list-style-type: none;
margin-top: 0;
overflow-y: auto;
padding: 0;
}