0% found this document useful (0 votes)
206 views3 pages

Code 001

This document contains the HTML and CSS code for a download manager user interface. The HTML defines the basic page layout including a header, sidebar for filtering downloads, main content area to display downloads, and an overlay dialog for adding new download tasks. It links to external JavaScript files to handle interactivity, internationalization, and other functionality. Styles are included to control layout and formatting of elements like the download info and file name text.

Uploaded by

Aulia
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
206 views3 pages

Code 001

This document contains the HTML and CSS code for a download manager user interface. The HTML defines the basic page layout including a header, sidebar for filtering downloads, main content area to display downloads, and an overlay dialog for adding new download tasks. It links to external JavaScript files to handle interactivity, internationalization, and other functionality. Styles are included to control layout and formatting of elements like the download info and file name text.

Uploaded by

Aulia
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

<!

DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title i18n-content="title"></title>
<link rel="stylesheet" href="chrome://resources/wow/css/common/wow_widgets.css"
type="text/css">
<link rel="stylesheet" type="text/css"
href="chrome://resources/wow/css/download/wow_download.css">
<style>
#type .typeItem .typeName {
min-width: 108px;
}
@media screen and (max-width: 1366px){
.downloadInfo {
max-width: 340px;
}
.fileInfo font {
max-width: 90px;
}
}
</style>
</head>
<body>
<div id="head">
<span id="title" i18n-content="title"></span>
<input type="search" id="search" i18n-values="placeholder:searchButton" autofocus
incremental/>
<span class="timeSaving fr" id="timeSaving"></span>
<span class="fileCount fr" id="fileCount"></span>
<span class="downloadFolder fr"><span i18n-content="download_folder"></span><input
id="locationInput" type="text" title="" readonly value="" />
<span id="choiceFolder"></span>
<ul id="lastLocationList" class="locationList"></ul>
</span>
</div>
<div id="container">
<div id="type"></div>
<div id="content">
<div id="offlineHead">
<button id="newOfflineTask" i18n-content="new_cloud_task"></button>
<button id="openCloudDrive" i18n-content="open_the_cloud_drive"></button>
</div>
<div id="list"></div>
</div>

<div id="overlay" class="overlay none">


<div class="offlineTaskLayer">
<div class="offlineTitleLayer">
<h3 id="offlineTitle" i18n-content="offline_download"></h3>
<span class="closeBtn" id="newOfflineCloseBtn"></span>
</div>
<div class="offlineContent">
<div>
<label i18n-content="offline_url"></label>
<input i18n-values="placeholder:new_offline_task_dialog_protocol_tips"
id="offlineTaskLink" />
</div>
<span id="offlineError" class="offlineError hidden"></span>
</div>
<div id="offlineTaskBtn">
<button id="offlineDownload" class="offlineDownload" i18ncontent="offline_download"></button>
<button id="offlineCancel" i18n-content="cancel"></button>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="chrome://resources/js/cr.js"></script>
<script type="text/javascript" src="chrome://resources/js/cr/ui.js"></script>
<script type="text/javascript" src="chrome://resources/js/cr/event_target.js"></script>
<script type="text/javascript"
src="chrome://resources/js/cr/ui/list_selection_controller.js"></script>
<script type="text/javascript"
src="chrome://resources/js/cr/ui/list_selection_model.js"></script>
<script src="chrome://resources/js/load_time_data.js"></script>
<script src="chrome://downloads/strings.js"></script>
<script src="chrome://resources/js/i18n_template.js"></script>
<script src="chrome://resources/wow/js/error/wow_record_error_stats.js"></script>
<script type="text/javascript"
src="chrome://resources/wow/js/download/wow_download_config.js" crossorigin></script>
<script type="text/javascript"
src="chrome://resources/wow/js/download/wow_download_util.js" crossorigin></script>
<script type="text/javascript"
src="chrome://resources/wow/js/download/wow_download_type.js" crossorigin></script>
<script type="text/javascript"
src="chrome://resources/wow/js/download/wow_download_item.js" crossorigin></script>
<script type="text/javascript"
src="chrome://resources/wow/js/download/wow_download_multipleChoice.js"
crossorigin></script>
<script type="text/javascript"

src="chrome://resources/wow/js/download/wow_download_main.js" crossorigin></script>
</body>
</html>

You might also like