Skip to content

Commit 31b5975

Browse files
committed
bump to YAF 3.2.0
1 parent 696314f commit 31b5975

373 files changed

Lines changed: 9795 additions & 3216 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ YAF.SampleWebApplication
22
========================
33

44
This Application is a Standard Visual Studio Sample ASP.NET Application,
5-
including YAF.NET integrated as Control on a Page.
5+
including YAF.NET v3.2.0 integrated as Control on a Page.

YAF.SampleWebApplication/Content/Site.css

Lines changed: 0 additions & 298 deletions
Original file line numberDiff line numberDiff line change
@@ -24,302 +24,4 @@ html {
2424
.body-content {
2525
padding: 0;
2626
}
27-
}
28-
29-
/*
30-
* Component: Direct Chat
31-
* ----------------------
32-
*/
33-
.direct-chat .box-body {
34-
border-bottom-right-radius: 0;
35-
border-bottom-left-radius: 0;
36-
position: relative;
37-
overflow-x: hidden;
38-
padding: 0;
39-
}
40-
41-
.direct-chat.chat-pane-open .direct-chat-contacts {
42-
-webkit-transform: translate(0, 0);
43-
-ms-transform: translate(0, 0);
44-
-o-transform: translate(0, 0);
45-
transform: translate(0, 0);
46-
}
47-
48-
.direct-chat-messages {
49-
-webkit-transform: translate(0, 0);
50-
-ms-transform: translate(0, 0);
51-
-o-transform: translate(0, 0);
52-
transform: translate(0, 0);
53-
padding: 10px;
54-
height: 250px;
55-
overflow: auto;
56-
}
57-
58-
.direct-chat-msg,
59-
.direct-chat-text {
60-
display: block;
61-
}
62-
63-
.direct-chat-msg {
64-
margin-bottom: 10px;
65-
}
66-
67-
.direct-chat-msg:before,
68-
.direct-chat-msg:after {
69-
content: " ";
70-
display: table;
71-
}
72-
73-
.direct-chat-msg:after {
74-
clear: both;
75-
}
76-
77-
.direct-chat-messages,
78-
.direct-chat-contacts {
79-
-webkit-transition: -webkit-transform 0.5s ease-in-out;
80-
-moz-transition: -moz-transform 0.5s ease-in-out;
81-
-o-transition: -o-transform 0.5s ease-in-out;
82-
transition: transform 0.5s ease-in-out;
83-
}
84-
85-
.direct-chat-text {
86-
border-radius: 5px;
87-
position: relative;
88-
padding: 5px 10px;
89-
background: #d2d6de;
90-
border: 1px solid #d2d6de;
91-
margin: 5px 0 0 50px;
92-
color: #444444;
93-
font-size: 15px;
94-
font-weight: normal;
95-
}
96-
97-
.direct-chat-text:after,
98-
.direct-chat-text:before {
99-
position: absolute;
100-
right: 100%;
101-
top: 15px;
102-
border: solid transparent;
103-
border-right-color: #d2d6de;
104-
content: ' ';
105-
height: 0;
106-
width: 0;
107-
pointer-events: none;
108-
}
109-
110-
.direct-chat-text:after {
111-
border-width: 5px;
112-
margin-top: -5px;
113-
}
114-
115-
.direct-chat-text:before {
116-
border-width: 6px;
117-
margin-top: -6px;
118-
}
119-
120-
.right .direct-chat-text {
121-
margin-right: 50px;
122-
margin-left: 0;
123-
}
124-
125-
.right .direct-chat-text:after,
126-
.right .direct-chat-text:before {
127-
right: auto;
128-
left: 100%;
129-
border-right-color: transparent;
130-
border-left-color: #d2d6de;
131-
}
132-
133-
.direct-chat-img {
134-
float: left;
135-
width: 40px;
136-
height: 40px;
137-
}
138-
139-
.right .direct-chat-img {
140-
float: right;
141-
}
142-
143-
.direct-chat-info {
144-
display: block;
145-
margin-bottom: 2px;
146-
font-size: 12px;
147-
}
148-
149-
.direct-chat-name {
150-
font-weight: 600;
151-
}
152-
153-
.direct-chat-timestamp {
154-
color: #999;
155-
}
156-
157-
.direct-chat-contacts-open .direct-chat-contacts {
158-
-webkit-transform: translate(0, 0);
159-
-ms-transform: translate(0, 0);
160-
-o-transform: translate(0, 0);
161-
transform: translate(0, 0);
162-
}
163-
164-
.direct-chat-contacts {
165-
-webkit-transform: translate(101%, 0);
166-
-ms-transform: translate(101%, 0);
167-
-o-transform: translate(101%, 0);
168-
transform: translate(101%, 0);
169-
color: #fff;
170-
}
171-
172-
.contacts-list > li {
173-
border-bottom: 1px solid #000000;
174-
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
175-
padding: 10px;
176-
margin: 0;
177-
}
178-
179-
.contacts-list > li:before,
180-
.contacts-list > li:after {
181-
content: " ";
182-
display: table;
183-
}
184-
185-
.contacts-list > li:after {
186-
clear: both;
187-
}
188-
189-
.contacts-list > li:last-of-type {
190-
border-bottom: none;
191-
}
192-
193-
.contacts-list-img {
194-
width: 40px;
195-
float: left;
196-
}
197-
198-
.contacts-list-info {
199-
margin-left: 45px;
200-
color: #fff;
201-
}
202-
203-
.contacts-list-name,
204-
.contacts-list-status {
205-
display: block;
206-
}
207-
208-
.contacts-list-name {
209-
font-weight: 600;
210-
}
211-
212-
.contacts-list-status {
213-
font-size: 12px;
214-
}
215-
216-
.contacts-list-date {
217-
color: #aaa;
218-
font-weight: normal;
219-
}
220-
221-
.contacts-list-msg {
222-
color: #999;
223-
}
224-
225-
.direct-chat-danger .right > .direct-chat-text {
226-
background: #dd4b39;
227-
border-color: #dd4b39;
228-
color: #ffffff;
229-
}
230-
231-
.direct-chat-danger .right > .direct-chat-text:after,
232-
.direct-chat-danger .right > .direct-chat-text:before {
233-
border-left-color: #dd4b39;
234-
}
235-
236-
.direct-chat-primary .right > .direct-chat-text {
237-
background: #3c8dbc;
238-
border-color: #3c8dbc;
239-
color: #ffffff;
240-
}
241-
242-
.direct-chat-primary .right > .direct-chat-text:after,
243-
.direct-chat-primary .right > .direct-chat-text:before {
244-
border-left-color: #3c8dbc;
245-
}
246-
247-
.direct-chat-warning .right > .direct-chat-text {
248-
background: #f39c12;
249-
border-color: #f39c12;
250-
color: #ffffff;
251-
}
252-
253-
.direct-chat-warning .right > .direct-chat-text:after,
254-
.direct-chat-warning .right > .direct-chat-text:before {
255-
border-left-color: #f39c12;
256-
}
257-
258-
.direct-chat-info .right > .direct-chat-text {
259-
background: #00c0ef;
260-
border-color: #00c0ef;
261-
color: #ffffff;
262-
}
263-
264-
.direct-chat-info .right > .direct-chat-text:after,
265-
.direct-chat-info .right > .direct-chat-text:before {
266-
border-left-color: #00c0ef;
267-
}
268-
269-
.direct-chat-success .right > .direct-chat-text {
270-
background: #00a65a;
271-
border-color: #00a65a;
272-
color: #ffffff;
273-
}
274-
275-
.direct-chat-success .right > .direct-chat-text:after,
276-
.direct-chat-success .right > .direct-chat-text:before {
277-
border-left-color: #00a65a;
278-
}
279-
/*
280-
* Component: Users List
281-
* ---------------------
282-
*/
283-
.users-list > li {
284-
width: 25%;
285-
float: left;
286-
padding: 10px;
287-
text-align: center;
288-
}
289-
290-
.users-list > li img {
291-
border-radius: 50%;
292-
max-width: 100%;
293-
height: auto;
294-
}
295-
296-
.users-list > li > a:hover,
297-
.users-list > li > a:hover .users-list-name {
298-
color: #999;
299-
}
300-
301-
.users-list-name,
302-
.users-list-date {
303-
display: block;
304-
}
305-
306-
.users-list-name {
307-
font-weight: 600;
308-
color: #444;
309-
overflow: hidden;
310-
white-space: nowrap;
311-
text-overflow: ellipsis;
312-
}
313-
314-
.users-list-date {
315-
color: #999;
316-
font-size: 12px;
317-
}
318-
319-
.img-sm {
320-
width: 200px;
321-
}
322-
323-
.direct-chat-text img {
324-
width: 20px;
32527
}

YAF.SampleWebApplication/Default.aspx.designer.cs

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

YAF.SampleWebApplication/Forum/Content/InstallWizard.min.css

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
2+
<table class="body" valign="top" role="presentation" bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" style="margin: 0;padding: 0;border: 0;outline: 0;width: 100%;min-width: 100%;height: 100%;-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;font-family: Helvetica, Arial, sans-serif;line-height: 24px;font-weight: normal;font-size: 16px;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;background-color: #ffffff;color: #4a5568">
3+
<tbody>
4+
<tr>
5+
<td valign="top" style="line-height: 24px;font-size: 16px;margin: 0" align="left">
6+
<table class="card text-center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="background-color: #ffffff;border-radius: 6px;border: 1px solid #e2e8f0;border-collapse: separate;width: 100%;overflow: hidden;text-align: center">
7+
<tbody>
8+
<tr>
9+
<td style="line-height: 24px;font-size: 16px;margin: 0;width: 100%;text-align: center" bgcolor="#ffffff">
10+
<table class="card-body" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
11+
<tbody>
12+
<tr>
13+
<td style="line-height: 24px;font-size: 16px;margin: 0;padding: 20px;width: 100%" align="left">
14+
<h5 class="card-title" style="margin: 0;padding-top: 0;padding-bottom: 0;font-weight: 500;color: #0dcaf0;text-align: left;vertical-align: baseline;font-size: 20px;line-height: 24px"> <a href="%%topicLink%%" target="_blank" style="color: #0d6efd"> <i class="fas fa-comment"></i> {topicName} </a> ({forumName}) <table class="badge text-bg-light" align="left" role="presentation" border="0" cellpadding="0" cellspacing="0">
15+
<tbody>
16+
<tr>
17+
<td style="margin: 0;display: inline-block;padding: 4px 6.4px;font-weight: 700;line-height: 1;white-space: nowrap;vertical-align: baseline;border-radius: 4px;font-size: 15px" align="center">
18+
<span> {replies} </span>
19+
</td>
20+
</tr>
21+
</tbody>
22+
</table> </h5> <h6 class="card-subtitle" style="margin: 0;padding-top: 0;padding-bottom: 0;font-weight: 500;color: #0dcaf0;text-align: left;vertical-align: baseline;font-size: 16px;line-height: 19.2px"> </h6> <p class="text-body-secondary small" style="text-align: left;line-height: 24px;font-size: 16px;width: 100%;margin: 0"> {starter} </p> <p class="card-text" style="text-align: left;line-height: 24px;font-size: 16px;width: 100%;margin: 0"> {message} </p> <table class="s-2 w-full" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="100%">
23+
<tbody>
24+
<tr>
25+
<td style="margin: 0;width: 100%;font-size: 8px;line-height: 8px;height: 8px" width="100%" height="8" align="left">
26+
&nbsp;
27+
</td>
28+
</tr>
29+
</tbody>
30+
</table><table class="btn btn-primary btn-sm mx-auto" role="presentation" border="0" cellpadding="0" cellspacing="0" style="border-radius: 6px;border-collapse: separate">
31+
<tbody>
32+
<tr>
33+
<td style="line-height: 24px;font-size: 16px;margin: 0;border-radius: 6px;" align="center" bgcolor="#0d6efd">
34+
<a href="%%topicLink%%" target="_blank" style="font-family: Helvetica, Arial, sans-serif;text-decoration: none;border: 1px solid transparent;display: block;font-weight: normal;white-space: nowrap;background-color: #0d6efd;color: #ffffff;border-color: #0d6efd;font-size: 14px;padding: 4px 8px;line-height: 17.5px;border-radius: 3px">{link}</a>
35+
</td>
36+
</tr>
37+
</tbody>
38+
</table>
39+
</td>
40+
</tr>
41+
</tbody>
42+
</table>
43+
</td>
44+
</tr>
45+
</tbody>
46+
</table><table class="s-3 w-full" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="100%">
47+
<tbody>
48+
<tr>
49+
<td style="margin: 0;width: 100%;font-size: 12px;line-height: 12px;height: 12px" width="100%" height="12" align="left">
50+
&nbsp;
51+
</td>
52+
</tr>
53+
</tbody>
54+
</table> </td>
55+
</tr>
56+
</tbody>
57+
</table>

0 commit comments

Comments
 (0)