diff options
Diffstat (limited to 'js/panels/Timeline/TimelinePanel.reel/css')
-rw-r--r-- | js/panels/Timeline/TimelinePanel.reel/css/TimelinePanel.css | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/js/panels/Timeline/TimelinePanel.reel/css/TimelinePanel.css b/js/panels/Timeline/TimelinePanel.reel/css/TimelinePanel.css index c122b18f..067285ae 100644 --- a/js/panels/Timeline/TimelinePanel.reel/css/TimelinePanel.css +++ b/js/panels/Timeline/TimelinePanel.reel/css/TimelinePanel.css | |||
@@ -10,11 +10,12 @@ | |||
10 | height: 100%; | 10 | height: 100%; |
11 | } | 11 | } |
12 | .maintimeline{ | 12 | .maintimeline{ |
13 | border-style: double; | ||
14 | -webkit-box-flex: 1; | 13 | -webkit-box-flex: 1; |
15 | display: -webkit-box; | 14 | display: -webkit-box; |
16 | -webkit-box-orient: horizontal | 15 | -webkit-box-orient: horizontal; |
17 | height : 100%; | 16 | height : 100%; |
17 | position: relative; | ||
18 | margin-top:1px; | ||
18 | } | 19 | } |
19 | .leftinside{ | 20 | .leftinside{ |
20 | height: 100%; | 21 | height: 100%; |
@@ -271,4 +272,15 @@ | |||
271 | font-size: 12px; | 272 | font-size: 12px; |
272 | text-shadow: 1px 1px 1px black; | 273 | text-shadow: 1px 1px 1px black; |
273 | color: white; | 274 | color: white; |
274 | } \ No newline at end of file | 275 | } |
276 | .timeline-disabled { | ||
277 | position: absolute; | ||
278 | top: 0px; | ||
279 | left: 0px; | ||
280 | width: 100%; | ||
281 | height: 100%; | ||
282 | background-color: rgba(30,30,30, 0.796); | ||
283 | z-index: 100; | ||
284 | display: none; | ||
285 | box-shadow: rgb(17, 17, 17) 0px 0px 14px inset; | ||
286 | } | ||