/
githubmirror
/
markdown-here
Обзор
Документация
Войти
/
githubmirror
/
markdown-here
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/common/forgot-to-render-prompt.html
139 строк
4 KB
Michael Stepner
Implement forgot-to-render check on Fastmail
02 дек 2015, 06:10
02 дек 2015, 06:10
fb46cee
Код
Авторство
О чём код?
<style> /* CSS reset. Borrowed from Vimium: https://github.com/philc/vimium/blob/5bd32a511da813d731f73c4d646c14a69c2515ff/content_scripts/vimium.css */ .markdown-here-reset, div.markdown-here-reset, span.markdown-here-reset, a.markdown-here-reset, a:visited.markdown-here-reset, a:hover.markdown-here-reset, a:link.markdown-here-reset { background: none; border: none; bottom: auto; box-shadow: none; color: black; cursor: auto; display: inline; float: none; font-family : "Helvetica Neue", "Helvetica", "Arial", sans-serif; font-size: inherit; font-style: normal; font-variant: normal; font-weight: normal; height: auto; left: auto; letter-spacing: 0; line-height: 100%; margin: 0; max-height: none; max-width: none; min-height: 0; min-width: 0; opacity: 1; padding: 0; position: static; right: auto; text-align: left; text-decoration: none; text-indent: 0; text-shadow: none; text-transform: none; top: auto; vertical-align: baseline; white-space: normal; width: auto; z-index: 99999999; } #markdown-here-forgot-to-render-background { z-index: 90000; position: fixed; left: 0px; top: 0px; height: 100%; width: 100%; display: block; background-color: silver; opacity: 0.75; } #markdown-here-forgot-to-render-prompt { display: block; z-index: 90001; background-color: #DFCCEA; box-shadow: 0 4px 16px rgba(0,0,0,.2); opacity: 1; background-clip: padding-box; position: fixed; top: 33%; left: 33%; width: 33%; padding: 1.5em; font-family: Tahoma, Helvetica, arial, freesans, clean, sans-serif; font-size: 16px; color: #3E055F; border: thin #3E055F solid; } #markdown-here-forgot-to-render-head { font-size: 1.2em; margin-bottom: 0.8em; text-shadow: 1px 1px 1px rgba(72, 33, 104, 0.25); } #markdown-here-forgot-to-render-close { position: absolute; top: 3px; right: 3px; text-decoration: none; color: inherit; font-size: 1.3em; } #markdown-here-forgot-to-render-close:hover { cursor: pointer; } #markdown-here-forgot-to-render-buttons { position: relative; left: 20%; margin: 1em; color: inherit; } #markdown-here-forgot-to-render-buttons button { font-size: 1.1em; padding-top: 0.3em; padding-bottom: 0.3em; margin-top: 1.5em; width: 5em; text-align: center; } </style> <div id="markdown-here-forgot-to-render"> <div id="markdown-here-forgot-to-render-background" class="markdown-here-reset"> </div> <div id="markdown-here-forgot-to-render-prompt"> <div id="markdown-here-forgot-to-render-head"> <span> <img id="markdown-here-forgot-to-render-logo" class="markdown-here-reset" style="width:24px" src="data:image/png;base64,{{logoBase64}}"/> {{forgot_to_render_prompt_title}} </span> <a id="markdown-here-forgot-to-render-close" class="markdown-here-reset" href="#" title="{{forgot_to_render_prompt_close_hover}}">×</a> </div> <div> {{forgot_to_render_prompt_info}} <br><br> {{forgot_to_render_prompt_question}} </div> <div id="markdown-here-forgot-to-render-buttons" class="markdown-here-reset" > <button id="markdown-here-forgot-to-render-button-back"> {{forgot_to_render_back_button}} </button> <button id="markdown-here-forgot-to-render-button-send"> {{forgot_to_render_send_button}} </button> </div> </div> </div>