-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_modal.scss
executable file
·83 lines (80 loc) · 1.71 KB
/
_modal.scss
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
.modal-header {
background-color: $lighter-gray;
border: 0;
border-radius: 10px 10px 0 0;
padding: 20px;
text-align: center;
h4 {
margin: 0;
}
.btn-close {
padding-left: 10px;
font-size: 30px;
}
}
.modal-content {
border: 0 none;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.15), 0 0 1px 1px rgba(0, 0, 0, 0.1);
}
.modal-dialog {
padding-top: 60px;
}
.modal-body{
padding: 20px 50px;
min-height: 240px;
max-height: calc(100vh - 150px);
pre {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
font-size: 16px;
overflow-x: auto;
overflow-y: auto;
background-color: $white-color;
border: 0;
}
#citation-text {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
font-size: 16px;
overflow-x: auto;
overflow-y: auto;
}
#spinner {
position: relative;
top: 20px;
}
}
.modal-footer {
border-top: 1px solid $medium-gray;
padding: 0px;
.left-side, .modal-footer .right-side {
display: inline-block;
text-align: center;
width: 49%;
}
.btn-simple {
padding: 20px;
width: 100%
}
.dropdown-divider {
background-color: $medium-gray;
display: inline-block;
float: inherit;
height: 63px;
margin: 0px -3px;
position: absolute;
width: 1px;
}
}
.modal.fade .modal-dialog {
transform: none;
-webkit-transform: none;
-moz-transform: none;
}
.modal.in .modal-dialog {
transform: none;
-webkit-transform: none;
-moz-transform: none;
}
.modal-backdrop.in {
opacity: 0.25;
}