-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathmainFrame.css
More file actions
53 lines (51 loc) · 1.33 KB
/
mainFrame.css
File metadata and controls
53 lines (51 loc) · 1.33 KB
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
/*
* Project Name : Visual Python
* Description : GUI-based Python code generator
* File Name : mainFrame.css
* Author : Black Logic
* Note : stylesheet for visualpython.html
* License : GNU GPLv3 with Visual Python special exception
* Date : 2021. 09. 13
* Change Date :
*/
#vp_wrapper {
/* CHROME: edited to show */
display: none;
position: fixed;
/* CHROME: edited height */
height: calc(100% - 90px);
/* height: calc(100% - 110px); */
overflow: hidden;
left: unset !important;
object-fit: contain;
color: var(--font-primary);
font-family: AppleSDGothicNeo;
border: 1px solid var(--border-gray-color);
/* CHROME: edited top position */
top: 64px;
/* top: 110px; */
right: 0;
background: white;
z-index: 100;
}
/* CHROME: set default box-sizing for vp area */
div#vp_wrapper * {
box-sizing: border-box !important;
}
/* LAB: reset position and size */
#vp_wrapper.lab {
position: unset !important;
width: 100% !important;
height: 100% !important;
min-width: 273px !important;
}
/* resizing handle */
#vp_wrapper > .ui-resizable-handle {
position: absolute;
margin-right: 5px;
left: 0px;
top: 0px;
width: 10px;
height: 100%;
cursor: col-resize;
}