UNPKG

2.37 kBtext/lessView Raw
1// Copyright (c) 2012 Adobe Systems Incorporated. All rights reserved.
2//
3// Permission is hereby granted, free of charge, to any person obtaining a
4// copy of this software and associated documentation files (the "Software"),
5// to deal in the Software without restriction, including without limitation
6// the rights to use, copy, modify, merge, publish, distribute, sublicense,
7// and/or sell copies of the Software, and to permit persons to whom the
8// Software is furnished to do so, subject to the following conditions:
9//
10// The above copyright notice and this permission notice shall be included in
11// all copies or substantial portions of the Software.
12//
13// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19// DEALINGS IN THE SOFTWARE.
20
21
22/* Brackets Variables */
23
24/* All paddings, gutters, etc. should be multiples of this */
25@base-padding: 10px;
26
27/* Common font sizes */
28@title-font-size: 18px; // headings such as the editor titlebar
29@label-font-size: 14px; // labels on buttons, menubar, etc.
30@menu-item-font-size: 13px; // individual menu items
31
32/* CSS triangle */
33@triangle-size: 9px;
34
35/* sidebar */
36@sidebar-width: 200px;
37
38/* z-index */
39@z-index-cm-dialog-override: 11;
40@z-index-cm-dialog: 15;
41@z-index-cm-max: @z-index-cm-dialog;
42
43@z-index-brackets-ui: @z-index-cm-max + 1;
44@z-index-brackets-selection-triangle: @z-index-brackets-ui;
45@z-index-brackets-results-panel: @z-index-brackets-ui;
46@z-index-brackets-scroller-shadow: @z-index-brackets-selection-triangle + 1;
47@z-index-brackets-inline-editor-shadow: @z-index-brackets-ui;
48@z-index-brackets-toolbar: @z-index-brackets-scroller-shadow + 1;
49@z-index-brackets-max: @z-index-brackets-toolbar;
50
51@z-index-brackets-sidebar-resizer: @z-index-brackets-ui + 2;
52@z-index-brackets-resizer-div: @z-index-brackets-sidebar-resizer + 1;
53@z-index-brackets-panel-resizer: @z-index-brackets-ui + 2;
54
55@z-index-brackets-context-menu-base: 1000;