62 lines
1.3 KiB
CSS
62 lines
1.3 KiB
CSS
/*
|
|
Copyright (c) Microsoft Corporation.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.film-strip {
|
|
flex: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
}
|
|
|
|
.film-strip-lanes {
|
|
flex: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
min-height: 50px;
|
|
max-height: 200px;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.film-strip-lane {
|
|
flex: none;
|
|
display: flex;
|
|
}
|
|
|
|
.film-strip-frame {
|
|
flex: none;
|
|
pointer-events: none;
|
|
box-shadow: var(--box-shadow);
|
|
}
|
|
|
|
.film-strip-hover {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: var(--vscode-panel-background);
|
|
box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 10px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 10px 0px;
|
|
z-index: 200;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.film-strip-hover-title {
|
|
padding: 2px 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
}
|