blob: 10953645156579c993a4da39eb1888e4095c608f (
plain)
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
|
#flex-container {
display: flex;
display: -webkit-flex;
flex-direction: row;
position: absolute;
bottom: 0;
width: 100%;
top: 0px !important;
left: 0px;
/* these 3 lines are to prevents an unsightly scrolling bounce affect on Safari */
height: 100%;
width: 100%;
overflow: auto;
}
#flex-container>div {
flex-grow: 1;
-webkit-flex-grow: 1;
position: relative;
}
#flex-container>div#gutter {
flex: 0 0 60px;
-webkit-flex: 0 0 60px;
border-left: 1px solid #999999;
border-right: 1px solid #999999;
background-color: #efefef;
overflow: hidden;
}
#gutter svg {
background-color: #efefef;
}
#editor1 {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
}
#editor2 {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
}
.acediff-diff {
background-color: #d8f2ff;
border-top: 1px solid #a2d7f2;
border-bottom: 1px solid #a2d7f2;
position: absolute;
z-index: 4;
}
.acediff-diff.targetOnly {
height: 0px !important;
border-top: 1px solid #a2d7f2;
border-bottom: 0px;
position: absolute;
}
.acediff-connector {
fill: #d8f2ff;
stroke: #a2d7f2;
}
.acediff-copy-left {
float: right;
}
.acediff-copy-right,
.acediff-copy-left {
position: relative;
}
.acediff-copy-right div {
color: #000000;
text-shadow: 1px 1px #ffffff;
position: absolute;
margin: -3px 2px;
cursor: pointer;
}
.acediff-copy-right div:hover {
color: #004ea0;
}
.acediff-copy-left div {
color: #000000;
text-shadow: 1px 1px #ffffff;
position: absolute;
right: 0px;
margin: -3px 2px;
cursor: pointer;
}
.acediff-copy-left div:hover {
color: #c98100;
}
|