1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub-skin.git synced 2024-04-26 14:19:29 +03:00

Динамический размер шрифта, убрал боковую панель

- На странице редактирования постов убрал боковую панель.
- Поставил динамический размер шрифта редактора постов через vmin
This commit is contained in:
Alexander Yakovlev 2019-04-08 17:10:01 +07:00
parent 06d7494c28
commit c5b672bff0
Signed by: oreolek
GPG key ID: 1CDC4B7820C93BD3
3 changed files with 26 additions and 2 deletions

View file

@ -9,6 +9,10 @@
{extends 'layouts/layout.content.form.tpl'}
{block 'layout_options' append}
{$layoutShowSidebar = false}
{/block}
{block 'layout_content'}
{component 'topic.add-type' topic=$topicEdit type=$topicType blogs=$blogsAllow blogId=$blogId skipBlogs=$skipBlogs}
{/block}
{/block}

View file

@ -0,0 +1,18 @@
{**
* Создание/редактирование топика
*
* @parama object $topicEdit
* @parama string $topicType
* @parama array $blogsAllow
* @parama integer $blogId
*}
{extends 'layouts/layout.content.form.tpl'}
{block 'layout_options' append}
{$layoutShowSidebar = false}
{/block}
{block 'layout_content'}
{component 'topic.add-type' topic=$topicEdit type=$topicType blogs=$blogsAllow blogId=$blogId skipBlogs=$skipBlogs}
{/block}

View file

@ -112,5 +112,7 @@
.markItUp .markItUpContainer .markItUpEditor {
font-size: 12pt;
font-family: "Fira Code", "Anonymous Pro", "PT Mono", "Courier New",Courier,"Lucida Sans Typewriter","Lucida Typewriter",monospace;
font-size: 1.6vmin;
line-height: 1.6;
font-family: "Fira Code","Anonymous Pro","PT Mono","IBM Plex Mono", "Noto Mono","Courier New",Courier,"Lucida Sans Typewriter","Lucida Typewriter",monospace;
}