This repository was archived by the owner on Jul 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVersionControlForTextFields.css
More file actions
92 lines (79 loc) · 1.7 KB
/
VersionControlForTextFields.css
File metadata and controls
92 lines (79 loc) · 1.7 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
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
#text-field-history {
display: none;
}
.InputfieldColumnWidth {
position: relative;
}
.field-revisions-toggle.inactive * {
cursor: help;
opacity: 0.25;
}
.field-revisions {
padding: 36px 0 0 0 !important;
overflow: visible !important;
position: absolute;
margin-top: -28px;
display: none;
z-index: 99;
right: 10px;
}
.field-revisions ul {
margin: 0;
line-height: 1em;
overflow-y: auto;
max-height: 350px;
border-radius: 2px;
padding: 14px 8px 10px 8px;
box-shadow: 1px 2px 2px rgba(0,0,0,0.1), inset 0 0 3px rgba(255,255,255,0.5);
}
.field-revisions ul.scroll {
padding-right: 26px;
}
.field-revisions li {
margin: 0;
}
.field-revisions a {
margin: 0 5px;
padding: 5px 4px;
white-space: nowrap;
font-weight: normal;
display: inline-block;
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.field-revisions a em {
padding-left: 2em;
}
.field-revisions a:hover {
text-shadow: none;
}
.field-revisions .ui-state-active {
border: 0;
cursor: default;
padding: 5px 4px;
}
body.template-admin .field-revisions .ui-state-active {
opacity: 0.5;
}
.field-revisions-loading {
top: 0;
left: 0;
width: 100%;
z-index: 98;
display: block;
position: absolute;
background-repeat: no-repeat;
background-position: center center;
background-image: url('loading.gif');
}
.compare-revisions {
right: 96%;
padding: 2px;
background: #fff;
max-height: 350px;
border-radius: 1px;
border-radius: 2px;
position: absolute;
border: 1px solid #ccc;
overflow-y: auto !important;
box-shadow: 1px 2px 2px rgba(0,0,0,0.1), inset 0 0 3px rgba(255,255,255,0.5);
}