blob: 3eb0139603c9cc22944e6bcadf5dc984bb404f7a [file] [log] [blame]
<link rel="import" href="chrome://resources/html/polymer.html">
<link rel="import" href="chrome://resources/cr_elements/hidden_style_css.html">
<link rel="import" href="chrome://resources/cr_elements/icons.html">
<link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html">
<link rel="import" href="chrome://resources/html/cr.html">
<link rel="import" href="chrome://resources/html/cr/ui/drag_wrapper.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.html">
<link rel="import" href="drag_and_drop_handler.html">
<dom-module id="extensions-drop-overlay">
<template>
<style include="cr-hidden-style">
:host {
align-items: center;
background-color: #f1f1f1;
display: flex;
height: 100%;
justify-content: center;
opacity: 0.9;
position: absolute;
width: 100%;
z-index: 10;
}
#container {
align-items: center;
display: flex;
flex-direction: column;
}
iron-icon {
color: var(--google-grey-refresh-700);
height: 64px;
margin-bottom: 16px;
width: 64px;
}
#text {
color: #6e6e6e;
font-size: 123.1%;
font-weight: 500;
}
</style>
<div id="container">
<iron-icon icon="cr:extension"></iron-icon>
<div id="text">$i18n{dropToInstall}</div>
</div>
</template>
<script src="drop_overlay.js"></script>
</dom-module>