OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. | |
3 * | |
4 * Redistribution and use in source and binary forms, with or without | |
5 * modification, are permitted provided that the following conditions | |
6 * are met: | |
7 * | |
8 * 1. Redistributions of source code must retain the above | |
9 * copyright notice, this list of conditions and the following | |
10 * disclaimer. | |
11 * 2. Redistributions in binary form must reproduce the above | |
12 * copyright notice, this list of conditions and the following | |
13 * disclaimer in the documentation and/or other materials | |
14 * provided with the distribution. | |
15 * | |
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | |
19 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | |
20 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, | |
21 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | |
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
23 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | |
25 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | |
27 * OF THE POSSIBILITY OF SUCH DAMAGE. | |
28 */ | |
29 | |
30 .css-named-flow-collections-view .split-view-sidebar { | |
31 overflow-x: hidden; | |
32 } | |
33 | |
34 .css-named-flow-collections-view .tabbed-pane-header { | |
35 background: linear-gradient(to bottom, rgb(236, 236, 236), rgb(217, 217, 217
)); | |
36 } | |
37 | |
38 .css-named-flow-collections-view .info { | |
39 font-style: italic; | |
40 font-size: 10px; | |
41 margin-top: -5px; | |
42 position: absolute; | |
43 top: 50%; | |
44 text-align: center; | |
45 width: 100%; | |
46 } | |
47 | |
48 .css-named-flow-collections-view .split-view-sidebar .sidebar-content { | |
49 bottom: 0; | |
50 left: 0; | |
51 padding: 0; | |
52 position: absolute; | |
53 right: 0; | |
54 top: 23px; | |
55 } | |
56 | |
57 .css-named-flow-collections-view .split-view-sidebar .selection { | |
58 margin-left: -12px; | |
59 z-index: 0; | |
60 } | |
61 | |
62 .css-named-flow-collections-view .split-view-contents .title { | |
63 position: relative; | |
64 } | |
65 | |
66 .css-named-flow-collections-view .split-view-sidebar .named-flow-overflow::befor
e, | |
67 .css-named-flow-collections-view .region-empty:before, | |
68 .css-named-flow-collections-view .region-fit::before, | |
69 .css-named-flow-collections-view .region-overset::before { | |
70 cursor: default; | |
71 float: left; | |
72 height: 10px; | |
73 margin-top: 1px; | |
74 opacity: 0.75; | |
75 position: relative; | |
76 vertical-align: middle; | |
77 z-index: 1; | |
78 } | |
79 | |
80 .css-named-flow-collections-view .split-view-sidebar .named-flow-overflow::befor
e { | |
81 content: url(Images/namedFlowOverflow.png); | |
82 margin: 2px 3px 0 -13px; | |
83 } | |
84 | |
85 .css-named-flow-collections-view .region-empty::before { | |
86 content: url(Images/regionEmpty.png); | |
87 } | |
88 | |
89 .css-named-flow-collections-view .region-fit::before { | |
90 content: url(Images/regionFit.png); | |
91 } | |
92 | |
93 .css-named-flow-collections-view .region-overset::before { | |
94 content: url(Images/regionOverset.png); | |
95 } | |
96 | |
97 .css-named-flow-collections-view .split-view-contents .named-flow-element { | |
98 margin: 0 0 0 -24px; | |
99 } | |
OLD | NEW |