Files
mahjong-ui/пуск|run.js

50 lines
930 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// // // //
СоздатьОкнаМаджонга = мир =>
{
мир.уведомить("надо создать окно управления");
мир.уведомить("надо создать окно раскладок");
мир.уведомить("надо создать окно тем");
мир.уведомить("надо создать окно окончания");
};
// // // //
ЗадатьОбщиеСтили = мир =>
{
var вид = document.createElement("style");
document.head.appendChild(вид);
вид.innerHTML = `
.окно-с-отступами
{
position: fixed;
left: 1em;
top: 1em;
bottom: 1em;
right: 1em;
}
.прокрутка
{
overflow: auto;
height: 100%;
}
.ширина-по-содержимому
{
display: inline-block;
}
.выбранный-элемент-таблицы
{
background: #eeeeee;
}
`;
};