| author | ymh <ymh.work@gmail.com> |
| Wed, 04 Sep 2024 17:32:50 +0200 | |
| changeset 1072 | ac1eacb3aa33 |
| parent 1069 | src/widgets/CreateAnnotation.css@2409cb4cebaf |
| permissions | -rw-r--r-- |
| 880 | 1 |
/* |
| 904 | 2 |
* |
| 880 | 3 |
*/ |
4 |
||
| 904 | 5 |
.Ldt-CreateAnnotation { |
6 |
border-style: none solid solid; |
|
7 |
border-width: 1px; |
|
8 |
border-color: #b7b7b7; |
|
9 |
padding: 0 1px 1px; |
|
10 |
margin: 0; |
|
11 |
} |
|
12 |
||
13 |
.Ldt-CreateAnnotation-Inner { |
|
| 965 | 14 |
background: url(img/pinstripe.png); padding: 5px; margin: 0; position: relative; |
| 904 | 15 |
} |
16 |
||
17 |
.Ldt-CreateAnnotation-Inner h3 { |
|
| 982 | 18 |
margin: 5px 0; font-size: 14px; font-weight: bold; text-align: right; clear:both; color: #0068c4; |
| 924 | 19 |
} |
20 |
||
21 |
.Ldt-CreateAnnotation-h3Left { |
|
22 |
float: left; |
|
| 904 | 23 |
} |
24 |
||
|
908
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
25 |
.Ldt-CreateAnnotation-Main { |
|
1068
7623f9af9272
merge pull request #3 from O. Auber
ymh <ymh.work@gmail.com>
parents:
1066
diff
changeset
|
26 |
min-height: 50px; |
|
908
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
27 |
} |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
28 |
|
| 923 | 29 |
.Ldt-CreateAnnotation-Title, .Ldt-CreateAnnotation-Creator { |
| 904 | 30 |
font-size: 14px; |
31 |
font-weight: bold; |
|
32 |
color: #0068c4; |
|
33 |
border: 1px solid #666666; |
|
34 |
border-radius: 2px; |
|
35 |
} |
|
36 |
||
| 975 | 37 |
.Ldt-CreateAnnotation-Title.empty, .Ldt-CreateAnnotation-Creator.empty { |
38 |
font-style: italic; |
|
39 |
color: #90b0d0; |
|
40 |
} |
|
41 |
||
| 904 | 42 |
.Ldt-CreateAnnotation-Times { |
43 |
color: #ff3b77 |
|
44 |
} |
|
45 |
||
|
1047
c3bf174e0ef8
Added a button to cancel Annotation creation and hide the widget on CreateAnnotation
durandn
parents:
1038
diff
changeset
|
46 |
.Ldt-CreateAnnotation-Submit, |
|
1066
5ef7182907c5
added a "preview" mode for CreateAnnotation and Markers that blocks inputs so sending annotations is impossible
durandn
parents:
1047
diff
changeset
|
47 |
.Ldt-CreateAnnotation-Cancel, |
|
5ef7182907c5
added a "preview" mode for CreateAnnotation and Markers that blocks inputs so sending annotations is impossible
durandn
parents:
1047
diff
changeset
|
48 |
.Ldt-CreateAnnotation-PreviewSubmit{ |
| 904 | 49 |
position: absolute; |
50 |
bottom: 7px; |
|
51 |
color: #ffffff; |
|
52 |
cursor: pointer; |
|
53 |
height: 50px; |
|
54 |
width: 50px; |
|
55 |
padding: 28px 0 0; |
|
56 |
font-size: 12px; |
|
57 |
border: none; |
|
58 |
text-align: center; |
|
59 |
cursor: pointer; |
|
60 |
} |
|
61 |
||
|
1069
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
62 |
|
|
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
63 |
.Ldt-CreateAnnotation-Cancel{ |
|
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
64 |
right: 7px; |
|
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
65 |
background: url('img/cancel_annotation.png'); |
|
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
66 |
} |
|
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
67 |
|
|
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
68 |
.Ldt-CreateAnnotation-Submit{ |
|
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
69 |
right: 67px; |
|
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
70 |
background: url('img/submit_annotation.png'); |
|
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
71 |
} |
|
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
72 |
|
|
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
73 |
.Ldt-CreateAnnotation-Submit:hover, |
|
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
74 |
.Ldt-CreateAnnotation-Cancel:hover{ |
| 904 | 75 |
background-position: -50px 0; |
76 |
} |
|
77 |
||
78 |
.Ldt-CreateAnnotation-Description { |
|
|
1068
7623f9af9272
merge pull request #3 from O. Auber
ymh <ymh.work@gmail.com>
parents:
1066
diff
changeset
|
79 |
height: 3em; |
| 904 | 80 |
padding: 2px; |
81 |
resize: none; |
|
|
1069
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
82 |
width: calc(100% - 122px); |
| 904 | 83 |
border: 1px solid #666666; |
84 |
border-radius: 2px; |
|
85 |
} |
|
86 |
||
| 975 | 87 |
.Ldt-CreateAnnotation-Description.empty { |
88 |
font-style: italic; color: #999999; |
|
89 |
} |
|
90 |
||
| 904 | 91 |
.Ldt-CreateAnnotation-Avatar { |
92 |
float: right; |
|
93 |
width: 48px; |
|
94 |
height: 48px; |
|
95 |
margin: 5px 0; |
|
96 |
padding: 0 0 0 15px; |
|
97 |
background: url('img/profile_arrow.png') left no-repeat; |
|
98 |
} |
|
99 |
||
100 |
.Ldt-CreateAnnotation-Avatar img { |
|
101 |
float: right; |
|
102 |
display: block; |
|
103 |
max-width: 100%; |
|
104 |
max-height: 100%; |
|
105 |
border: 1px solid #bbbbbb; |
|
106 |
} |
|
107 |
||
| 966 | 108 |
.Ldt-CreateAnnotation-RecBlock { |
109 |
width: 220px; float: left; |
|
| 904 | 110 |
} |
111 |
||
| 966 | 112 |
.Ldt-CreateAnnotation-TagTitle, .Ldt-CreateAnnotation-PolemicTitle, .Ldt-CreateAnnotation-RecLabel { |
| 904 | 113 |
display: block; margin: 5px 0 2px; font-size: 12px; |
114 |
} |
|
115 |
||
116 |
.Ldt-CreateAnnotation-TagList, .Ldt-CreateAnnotation-PolemicList { |
|
117 |
list-style: none; |
|
|
1069
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
118 |
width: calc(100% - 122px); |
|
2409cb4cebaf
getting various changes from github
ymh <ymh.work@gmail.com>
parents:
1068
diff
changeset
|
119 |
padding-left: 0px; |
| 904 | 120 |
} |
121 |
||
122 |
li.Ldt-CreateAnnotation-TagLi { |
|
123 |
display: inline-block; border: none; margin: 0 10px 5px 0; height: 23px; padding: 0 0 0 20px; |
|
124 |
background: url(img/tag.png) left top no-repeat; |
|
125 |
cursor: pointer; |
|
126 |
} |
|
127 |
||
128 |
.Ldt-CreateAnnotation-TagButton { |
|
129 |
display: inline-block; font-size: 12px; height: 19px; padding: 4px 5px 0 0; border: none; margin: 0; |
|
130 |
background: url(img/tag.png) right top no-repeat; |
|
131 |
} |
|
132 |
||
133 |
li.Ldt-CreateAnnotation-TagLi:hover { |
|
134 |
background-position: left -23px; |
|
135 |
} |
|
136 |
||
137 |
.Ldt-CreateAnnotation-TagLi:hover .Ldt-CreateAnnotation-TagButton { |
|
138 |
background-position: right -23px; |
|
139 |
} |
|
140 |
||
141 |
li.Ldt-CreateAnnotation-TagLi.selected { |
|
142 |
background-position: left -46px; |
|
143 |
} |
|
144 |
||
145 |
.Ldt-CreateAnnotation-TagLi.selected .Ldt-CreateAnnotation-TagButton { |
|
146 |
background-position: right -46px; |
|
147 |
} |
|
148 |
||
149 |
li.Ldt-CreateAnnotation-PolemicLi { |
|
150 |
display: inline-block; border: none; margin: 0 5px 0; height: 21px; width: 26px; padding: 2px 0 0; |
|
151 |
background: url(img/polemic.png) left top no-repeat; font-size: 14px; font-weight: bold; text-align: center; |
|
152 |
cursor: pointer; |
|
153 |
} |
|
154 |
||
155 |
li.Ldt-CreateAnnotation-PolemicLi:hover { |
|
156 |
background-position: 0 -23px; |
|
157 |
} |
|
158 |
||
159 |
li.Ldt-CreateAnnotation-PolemicLi.selected { |
|
160 |
background-position: 0 -46px; |
|
|
908
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
161 |
} |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
162 |
|
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
163 |
.Ldt-CreateAnnotation-InnerBox { |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
164 |
margin: 20px 50px; |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
165 |
border: 1px solid #CCCCCC; |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
166 |
padding: 20px; |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
167 |
background: #FFFFFF; |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
168 |
color: #FF3B77; text-align: center; |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
169 |
font-size: 13px; font-weight: bold; |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
170 |
} |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
171 |
|
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
172 |
a.Ldt-CreateAnnotation-Close { |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
173 |
position: absolute; top: 2px; right: 2px; |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
174 |
display: inline-block; width: 17px; height: 17px; margin: 2px; |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
175 |
background: url(img/widget-control.png); |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
176 |
} |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
177 |
|
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
178 |
a.Ldt-CreateAnnotation-Close:hover { |
|
f56199193fad
CreateAnnotation widget now posts annotations, Tagcloud can be made segment-dependent
veltr
parents:
904
diff
changeset
|
179 |
background-position: -17px 0; |
|
1038
e78b889a75e1
CreateAnnotations new feature: hide/show functionality on signal trigger (tweaks), added config options to customize what is displayed more accurately
durandn
parents:
1033
diff
changeset
|
180 |
} |