Merge pull request #32 from teisena/remove_styles_from_userscript

Fix #13: remove styles from user script
This commit is contained in:
Adam Reineke 2018-10-02 17:01:42 -07:00 коммит произвёл GitHub
Родитель a840e283fc c91fd19d27
Коммит 5b8a08925c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 4 удалений

Просмотреть файл

@ -12,10 +12,6 @@
'use strict';
var initFunc = function() {
var style = document.createElement("style");
style.innerHTML = "#PTB_buttons {position:fixed;bottom: 0;left: 50px;list-style:none;padding:0;margin:0;z-index: 2147483647; /* we're on top */}#PTB_buttons li {display:inline-block;line-height:1.6em;margin-left:0.5em;padding:0.2em;cursor:pointer;border:1px solid black;border-bottom: none;}#PTB_buttons li:first-child {margin-left:0;}#PTB_frame {position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;padding:0.5em;background:rgba(255, 255, 255, 0.95);z-index:2147483646; /* we're one layer below the top */}#PTB_frame table {margin-top:0.5em;border-collapse: collapse;border-spacing: 0;border: 1px solid black;}#PTB_frame th {font-weight: bold;}#PTB_frame th,#PTB_frame td {border: 1px solid black;padding:0.2em;}#PTB_frame .numeric {text-align: right;}";
document.body.appendChild(style);
var s = document.createElement("script");
s.setAttribute("src", "http://127.0.0.1:8080/dist/bundle.js");
s.setAttribute("defer", "true");