File: index.css

package info (click to toggle)
lumino 2024.3.25-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 4,448 kB
  • sloc: javascript: 1,324; python: 129; makefile: 24; sh: 5
file content (54 lines) | stat: -rw-r--r-- 1,395 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 * Copyright (c) Jupyter Development Team.
 * Distributed under the terms of the Modified BSD License.
 */

/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/

@import '../../../packages/dragdrop/style/index.css';
@import '../../../packages/widgets/style/index.css';
@import '../../../packages/default-theme/style/commandpalette.css';
@import '../../../packages/default-theme/style/datagrid.css';
@import '../../../packages/default-theme/style/dockpanel.css';
@import '../../../packages/default-theme/style/menu.css';
@import '../../../packages/default-theme/style/menubar.css';
@import '../../../packages/default-theme/style/scrollbar.css';
@import '../../../packages/default-theme/style/tabbar.css';
@import './content.css';

body {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#menuBar {
  flex: 0 0 auto;
}

#main {
  flex: 1 1 auto;
}

#palette {
  min-width: 300px;
  border-right: 1px solid #dddddd;
}

#dock {
  padding: 4px;
}