mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
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:
@@ -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 |
@@ -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>
|
||||
|
||||
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user