-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodal.css
133 lines (133 loc) · 2.51 KB
/
modal.css
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#modal{
position: fixed;
z-index: 3;
width: 100%;
height: 100%;
display: none;
}
#modal_window {
height: 80%;
width: 60%;
position: absolute;
right: 0;
left: 0;
top: 0;
bottom: 0;
margin: auto;
background-color: #ffffff;
box-shadow: 0 8px 80px -13px rgba(0, 0, 0, 1);
}
#modal_close {
position: absolute;
top:0;
right:0;
z-index: 1;
background-color: red;
margin:0;
padding: 0 1em 0 1em;
cursor: pointer;
}
#export_code_textarea{
position: absolute;
top: 0;
bottom: 0;
display: none;
border-radius: 3px;
align-items: center;
cursor: default;
width:100%;
resize: none;
padding: 0;
border: 0;
tab-size: 4;
}
#file_upload_wrapper{
display: none;
width:100%;
height: 100%;
background-color: #ffffff;
}
#edit_script_wrapper {
display: none;
width: 100%;
height: 100%;
background-color: #ffffff;
}
#edit_script_textarea{
border-radius: 3px;
width:100%;
height: calc(100% - 21px - 10px - 10px); /* 21px is 1em of a <p></p>. Textarea has a different em*/
resize: none;
padding: 0;
border: 0;
tab-size: 4;
}
.button_light {
cursor: pointer;
padding: 3px;
border-radius: 3px;
border: 2px solid #b4b4b4;
background-color: #ffffff;
color: #b4b4b4;
display: inline-block;
float: right;
margin: 5px 5px 5px 0;
}
.button_light:hover {
background-color: #b4b4b4;
color: #ffffff;
}
#save_script{
border: 2px solid #00d682;
background-color: #00d682;
color: #ffffff;
}
#save_script:hover{
border: 2px solid #00ed90;
background-color: #00ed90;
}
.modal_file_drop {
margin: 6px 6px 0 6px;
border-radius: 3px;
border: 2px solid #dddddd;
align-items: center;
cursor: default;
}
.modal_file_drop p{
color: #676767;
width: 100%;
text-align: center;
font-size: 1.7em;
}
.modal_top_half, .modal_bottom_half {
height: calc(50% - 9px - 4px);
width: calc(100% - 12px - 4px);
display: none;
position: relative;
float: left;
}
.modal_file_done{
display: none;
border: 2px solid #00d682;
background-color: #00d682;
}
.modal_file_done p{
color: #ffffff;
}
.modal_file_loading{
display: none;
}
#import_processing{
position: absolute;
top: 0;
bottom: 0;
border: 2px solid #00d682;
background-color: #00d682;
margin: 6px;
display: none;
left: 0;
right: 0;
border-radius: 3px;
align-items: center;
cursor: default;
}