Commit 45d7d345 authored by Ojan Vafai's avatar Ojan Vafai

Add a selection and outline to flights-app.

This is just to get basic paint coverage of selections
and outlines on positioned elements.

TBR=esprehn@chromium.org

Review URL: https://codereview.chromium.org/886683002
parent 931f29c8
...@@ -22,6 +22,11 @@ ...@@ -22,6 +22,11 @@
</template> </template>
<script> <script>
module.exports = class extends SkyElement { module.exports = class extends SkyElement {
attached() {
var sel = window.getSelection();
var input = this.shadowRoot.querySelector('t');
sel.selectAllChildren(input);
}
}.register(); }.register();
</script> </script>
</sky-element> </sky-element>
...@@ -23,6 +23,16 @@ ...@@ -23,6 +23,16 @@
flex-shrink: 0; flex-shrink: 0;
margin-right: 6px; margin-right: 6px;
} }
.close-box {
position: absolute;
top: 3px;
right: 3px;
width: 1em;
overflow: hidden;
text-align: center;
outline: 1px solid #AEA477;
}
</style> </style>
<div class="header"> <div class="header">
<content select=".toast-icon" /> <content select=".toast-icon" />
...@@ -30,6 +40,9 @@ ...@@ -30,6 +40,9 @@
<div class="content"> <div class="content">
<content select=".toast-content" /> <content select=".toast-content" />
</div> </div>
<div class="close-box">
X
</div>
</template> </template>
<script> <script>
module.exports = class extends SkyElement { module.exports = class extends SkyElement {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment