HTML import bug workaround, fixed icons.

There's something wrong with my custom URL handling, as starting up a
HTTP server and opening the page through that causes them to be loaded
fine. As such, I'm using a Chromium switch to disable the need for
custom handling, until I figure out what's wrong.
This commit is contained in:
Oliver Hamlet
2014-11-07 17:39:46 +00:00
parent f1e97f7112
commit 5ebf33612a
4 changed files with 23 additions and 22 deletions
+3 -5
View File
@@ -38,14 +38,12 @@ noscript {
}
#mainToolbar {
background:#e3e3e3;
position:fixed;
top:0;
left:0;
z-index:2;
width:100%;
font-size: 1em;
height: 3em;
}
#mainToolbar > * {
top: -1em;
}
header > ol {
display: inline-block;
margin:0;
Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

+17 -17
View File
@@ -4,35 +4,35 @@
<title>LOOT</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="import" href="loot://import/html/message-dialog.html">
<link rel="import" href="loot://import/html/plugin-li.html">
<link rel="import" href="loot://import/html/plugin-card.html">
<link rel="import" href="loot://import/html/editable-table.html">
<link rel="import" href="html/message-dialog.html">
<link rel="import" href="html/plugin-li.html">
<link rel="import" href="html/plugin-card.html">
<link rel="import" href="html/editable-table.html">
<script src="loot://import/bower_components/platform/platform.js"></script>
<link rel="import" href="loot://import/bower_components/polymer/polymer.html">
<script src="bower_components/platform/platform.js"></script>
<link rel="import" href="bower_components/polymer/polymer.html">
<link rel="import" href="loot://import/bower_components/core-toolbar/core-toolbar.html">
<link rel="import" href="loot://import/bower_components/core-icon/core-icon.html">
<link rel="import" href="loot://import/bower_components/core-icons/core-icons.html">
<link rel="import" href="bower_components/core-toolbar/core-toolbar.html">
<link rel="import" href="bower_components/core-icon/core-icon.html">
<link rel="import" href="bower_components/core-icons/core-icons.html">
<link rel="import" href="loot://import/bower_components/paper-menu-button/paper-menu-button.html">
<link rel="import" href="loot://import/bower_components/paper-item/paper-item.html">
<link rel="import" href="loot://import/bower_components/paper-dropdown-menu/paper-dropdown-menu.html">
<link rel="import" href="loot://import/bower_components/paper-icon-button/paper-icon-button.html">
<link rel="import" href="loot://import/bower_components/paper-button/paper-button.html">
<link rel="import" href="bower_components/paper-menu-button/paper-menu-button.html">
<link rel="import" href="bower_components/paper-item/paper-item.html">
<link rel="import" href="bower_components/paper-dropdown-menu/paper-dropdown-menu.html">
<link rel="import" href="bower_components/paper-icon-button/paper-icon-button.html">
<link rel="import" href="bower_components/paper-button/paper-button.html">
<script src="js/require.js"></script>
</head>
<!-- oncontextmenu attribute disables the right-click menu. -->
<body oncontextmenu="return false" unresolved fullbleed vertical layout >
<core-toolbar id="mainToolbar">
<paper-menu-button src="../icon.ico">
<paper-menu-button src="logo.png">
<paper-item id="redatePluginsButton" icon="today" label="Redate Plugins"></paper-item>
<paper-item id="openLogButton" icon="folder" label="Open Debug Log Location"></paper-item>
<paper-item id="wipeUserlistButton" icon="delete" label="Clear All User Metadata"></paper-item>
<paper-item id="copyContentButton" icon="copy-content" label="Copy Content As Text"></paper-item>
<paper-item id="refreshContentButton" icon="cache" label="Refresh Content"></paper-item>
<paper-item id="copyContentButton" icon="content-copy" label="Copy Content As Text"></paper-item>
<paper-item id="refreshContentButton" icon="cached" label="Refresh Content"></paper-item>
<paper-item id="settingsButton" icon="settings" label="Settings"></paper-item>
<paper-item id="helpButton" icon="book" label="View Documentation"></paper-item>
<paper-item id="aboutButton" icon="help" label="About"></paper-item>
+3
View File
@@ -64,6 +64,9 @@ namespace loot {
// Disable spell checking.
command_line->AppendSwitch("--disable-spell-checking");
// Temporary workaround until I figure out what's wrong with my custom URL handling.
command_line->AppendSwitch("--allow-file-access-from-files");
}
}