blob: 62693628167745441dca732555f9e7a9131d9686 [file] [log] [blame]
<!-- Common styles for Passwords and Forms -->
<dom-module id="passwords-shared">
<template>
<style>
:host {
display: flex;
flex-direction: column;
}
.list-with-header > div:first-of-type {
border-top: var(--settings-separator-line);
}
.website-column {
display: flex;
flex: 1;
}
.username-column {
flex: 1;
margin: 0 8px;
}
.password-column {
align-items: center;
display: flex;
flex: 1;
}
.password-field {
background-color: transparent;
border: none;
flex: 1;
height: 20px;
width: 0;
}
.type-column {
align-items: center;
flex: 2;
}
.ellipses {
flex: 1;
max-width: fit-content;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
</style>
</template>
</dom-module>