mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-24 03:57:22 +08:00
support more bbcode tags
audio/video/hide/hr/strikethrough
This commit is contained in:
Vendored
+8
@@ -96,3 +96,11 @@ img.hitandrun {
|
||||
.form-control-row input[type=checkbox] {
|
||||
vertical-align: sub;
|
||||
}
|
||||
|
||||
.hidden-text {
|
||||
filter: blur(.5em);
|
||||
transition: filter .15s ease-in-out;
|
||||
}
|
||||
.hidden-text:hover {
|
||||
filter: blur(0);
|
||||
}
|
||||
|
||||
@@ -59,6 +59,22 @@ insert_tag(
|
||||
""
|
||||
);
|
||||
|
||||
insert_tag(
|
||||
$lang_tags['text_strikethrough'],
|
||||
$lang_tags['text_strikethrough_description'],
|
||||
$lang_tags['text_strikethrough_syntax'],
|
||||
$lang_tags['text_strikethrough_example'],
|
||||
""
|
||||
);
|
||||
|
||||
insert_tag(
|
||||
$lang_tags['text_hide'],
|
||||
$lang_tags['text_hide_description'],
|
||||
$lang_tags['text_hide_syntax'],
|
||||
$lang_tags['text_hide_example'],
|
||||
""
|
||||
);
|
||||
|
||||
insert_tag(
|
||||
$lang_tags['text_color_one'],
|
||||
$lang_tags['text_color_one_description'],
|
||||
@@ -252,6 +268,24 @@ insert_tag(
|
||||
$lang_tags['text_youtube_example'],
|
||||
""
|
||||
);
|
||||
|
||||
|
||||
insert_tag(
|
||||
$lang_tags['text_video'],
|
||||
$lang_tags['text_video_description'],
|
||||
$lang_tags['text_video_syntax'],
|
||||
$lang_tags['text_video_example'],
|
||||
""
|
||||
);
|
||||
|
||||
|
||||
insert_tag(
|
||||
$lang_tags['text_audio'],
|
||||
$lang_tags['text_audio_description'],
|
||||
$lang_tags['text_audio_syntax'],
|
||||
$lang_tags['text_audio_example'],
|
||||
""
|
||||
);
|
||||
/*
|
||||
insert_tag(
|
||||
$lang_tags['text_youku'],
|
||||
@@ -286,6 +320,15 @@ insert_tag(
|
||||
""
|
||||
);
|
||||
|
||||
|
||||
insert_tag(
|
||||
$lang_tags['text_hr'],
|
||||
$lang_tags['text_hr_description'],
|
||||
$lang_tags['text_hr_syntax'],
|
||||
$lang_tags['text_hr_example'],
|
||||
""
|
||||
);
|
||||
|
||||
end_frame();
|
||||
end_main_frame();
|
||||
stdfoot();
|
||||
|
||||
Reference in New Issue
Block a user