~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/xpfe/components/sidebar/resources/sidebarOverlay.css

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * The contents of this file are subject to the Mozilla Public
 
3
 * License Version 1.1 (the "License"); you may not use this file
 
4
 * except in compliance with the License. You may obtain a copy of
 
5
 * the License at http://www.mozilla.org/MPL/
 
6
 * 
 
7
 * Software distributed under the License is distributed on an "AS
 
8
 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
9
 * implied. See the License for the specific language governing
 
10
 * rights and limitations under the License.
 
11
 * 
 
12
 * The Original Code is Mozilla Communicator.
 
13
 * 
 
14
 * The Initial Developer of the Original Code is Netscape
 
15
 * Communications Corp. Portions created by Netscape Communications
 
16
 * Corp. are Copyright (C) 1999 Netscape Communications Corp. All
 
17
 * Rights Reserved.
 
18
 * 
 
19
 * Contributor(s): Stephen Lamm <slamm@netscape.com>
 
20
 */ 
 
21
 
 
22
/** sidebarOverlay.css [CONTENT]
 
23
 *   This file is for style rules essential for correct sidebar operation.
 
24
 *   These rules will not change on a skin-by-skin basis. 
 
25
 **/ 
 
26
 
 
27
#sidebar-box {
 
28
    width: 162px;
 
29
    min-height: 10px;
 
30
    min-width: 30px;
 
31
    max-width: 400px;
 
32
}
 
33
 
 
34
#sidebar-panels {
 
35
    min-width: 1px;
 
36
    min-height: 10px;
 
37
}
 
38
 
 
39
.iframe-panel { 
 
40
    min-width: 1px;
 
41
    min-height: 1px;
 
42
}
 
43
 
 
44
#sidebar-iframe-no-panels {
 
45
    min-width: 1px;
 
46
    min-height: 1px;
 
47
    overflow: auto;
 
48
}
 
49
 
 
50
.browser-sidebar {
 
51
    min-width: 1px;  
 
52
    min-height: 1px;
 
53
}
 
54
 
 
55
/*
 
56
 *    Sidebar and Panel title buttons
 
57
 */
 
58
sidebarheader[type="box"] {
 
59
    -moz-binding: url(chrome://communicator/content/sidebar/sidebarBindings.xml#sidebar-header-box);
 
60
}
 
61
sidebarheader[type="splitter"] {
 
62
    -moz-binding: url(chrome://communicator/content/sidebar/sidebarBindings.xml#sidebar-header-splitter);
 
63
    /* a vertical splitter */
 
64
    cursor: n-resize;
 
65
}
 
66
 
 
67
.sidebarheader-main {
 
68
    min-width: 1px;
 
69
    min-height: 1px;
 
70
}
 
71
 
 
72
/**
 
73
 * texttab folder lookalike e.g. for sidebar panel headers
 
74
 */
 
75
  .box-texttab
 
76
    {
 
77
      min-height          : 10px;
 
78
      min-width           : 10px;
 
79
    }
 
80
 
 
81
  .box-texttab-right-space 
 
82
    {
 
83
      min-width           : 1px;
 
84
    }
 
85