diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 05:50:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 05:50:19 +0000 |
commit | b6a97bcbb33b667a7ee4acb2eb8e482333e95a1b (patch) | |
tree | 89830d7d7c2cd02e552447883d02800d56cdf323 /src/dashboard.html | |
parent | Releasing progress-linux version 1.55.0+dfsg-1~progress7.99u1. (diff) | |
download | ublock-origin-b6a97bcbb33b667a7ee4acb2eb8e482333e95a1b.tar.xz ublock-origin-b6a97bcbb33b667a7ee4acb2eb8e482333e95a1b.zip |
Merging upstream version 1.57.0+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/dashboard.html')
-rw-r--r-- | src/dashboard.html | 33 |
1 files changed, 20 insertions, 13 deletions
diff --git a/src/dashboard.html b/src/dashboard.html index 859de58..b62813b 100644 --- a/src/dashboard.html +++ b/src/dashboard.html @@ -4,24 +4,28 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1"> <title data-i18n="dashboardName"></title> -<link href="css/themes/default.css" rel="stylesheet" type="text/css"> -<link href="css/common.css" rel="stylesheet" type="text/css"> -<link href="css/dashboard.css" rel="stylesheet" type="text/css"> +<link rel="stylesheet" href="css/themes/default.css"> +<link rel="stylesheet" href="css/fa-icons.css"> +<link rel="stylesheet" href="css/common.css"> +<link rel="stylesheet" href="css/dashboard.css"> <link rel="shortcut icon" type="image/png" href="img/icon_64.png"> </head> <body class="notReady"> <div id="dashboard-nav"> - <span class="logo"><img data-i18n-title="extName" src="img/ublock.svg"></span><!-- - --><button class="tabButton" type="button" data-pane="settings.html" data-i18n="settingsPageName" tabindex="0"></button><!-- - --><button class="tabButton" type="button" data-pane="3p-filters.html" data-i18n="3pPageName" tabindex="0"></button><!-- - --><button class="tabButton" type="button" data-pane="1p-filters.html" data-i18n="1pPageName" tabindex="0"></button><!-- - --><button class="tabButton" type="button" data-pane="dyna-rules.html" data-i18n="rulesPageName" tabindex="0"></button><!-- - --><button class="tabButton" type="button" data-pane="whitelist.html" data-i18n="whitelistPageName" tabindex="0"></button><!-- - --><button class="tabButton" type="button" data-pane="support.html" data-i18n="supportPageName" tabindex="0"></button><!-- - --><button class="tabButton" type="button" data-pane="about.html" data-i18n="aboutPageName" tabindex="0"></button><!-- - --><button class="tabButton" type="button" data-pane="no-dashboard.html"></button> + <span> + <span class="logo"><img data-i18n-title="extName" src="img/ublock.svg" alt="uBlock Origin"></span><!-- + --><button class="tabButton" type="button" data-pane="settings.html" data-i18n="settingsPageName" tabindex="0"></button><!-- + --><button class="tabButton" type="button" data-pane="3p-filters.html" data-i18n="3pPageName" tabindex="0"></button><!-- + --><button class="tabButton" type="button" data-pane="1p-filters.html" data-i18n="1pPageName" tabindex="0"></button><!-- + --><button class="tabButton" type="button" data-pane="dyna-rules.html" data-i18n="rulesPageName" tabindex="0"></button><!-- + --><button class="tabButton" type="button" data-pane="whitelist.html" data-i18n="whitelistPageName" tabindex="0"></button><!-- + --><button class="tabButton" type="button" data-pane="support.html" data-i18n="supportPageName" tabindex="0"></button><!-- + --><button class="tabButton" type="button" data-pane="about.html" data-i18n="aboutPageName" tabindex="0"></button><!-- + --><button class="tabButton" type="button" data-pane="no-dashboard.html"></button> + </span> + <a class="wikilink fa-icon" href="https://github.com/gorhill/uBlock/wiki/Dashboard:-My-filters">book</a> </div> <section id="unsavedWarning" class="notice"> <div> @@ -32,16 +36,19 @@ <div></div> </section> -<iframe id="iframe" src=""></iframe> +<iframe id="iframe" src="about:blank"></iframe> <script src="lib/hsluv/hsluv-0.1.0.min.js"></script> <script src="js/vapi.js"></script> <script src="js/vapi-common.js"></script> <script src="js/vapi-client.js"></script> + +<script src="js/fa-icons.js" type="module"></script> <script src="js/theme.js" type="module"></script> <script src="js/i18n.js" type="module"></script> <script src="js/dashboard.js" type="module"></script> +<script src="js/dashboard-common.js" type="module"></script> </body> </html> |