Add secondary mail action bar
This commit is contained in:
parent
cc3f796ca3
commit
9a4aade072
3 changed files with 120 additions and 16 deletions
71
frontend-js/dist/style.css
vendored
71
frontend-js/dist/style.css
vendored
|
|
@ -167,6 +167,77 @@ body.ol2013 {
|
|||
border-left-color: var(--ol-blue);
|
||||
font-weight: 600;
|
||||
}
|
||||
.mail-actionbar {
|
||||
height: 38px;
|
||||
flex: 0 0 auto;
|
||||
background: #2f343a;
|
||||
color: #f3f5f7;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 0 10px;
|
||||
border-bottom: 1px solid #20242a;
|
||||
box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .04);
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.action-search {
|
||||
width: min(340px, 26vw);
|
||||
min-width: 210px;
|
||||
height: 30px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 0 10px;
|
||||
color: #b8c0ca;
|
||||
background: #3b4148;
|
||||
border: 1px solid #5b626b;
|
||||
}
|
||||
.action-search input {
|
||||
min-width: 0;
|
||||
width: 100%;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
color: #fff;
|
||||
background: transparent;
|
||||
font: inherit;
|
||||
}
|
||||
.action-search input::placeholder { color: #c2c8d0; }
|
||||
.action-btn {
|
||||
height: 30px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 0 10px;
|
||||
border: 1px solid transparent;
|
||||
color: #f6f8fb;
|
||||
background: transparent;
|
||||
font: inherit;
|
||||
cursor: pointer;
|
||||
}
|
||||
.action-btn:hover {
|
||||
background: #454b53;
|
||||
border-color: #5b626b;
|
||||
}
|
||||
.action-btn.primary {
|
||||
background: #f28c22;
|
||||
border-color: #f28c22;
|
||||
color: #fff;
|
||||
font-weight: 600;
|
||||
}
|
||||
.action-btn.primary:hover {
|
||||
background: #ff9d34;
|
||||
border-color: #ff9d34;
|
||||
}
|
||||
.action-btn.muted { color: #aeb6c0; }
|
||||
.action-separator {
|
||||
width: 1px;
|
||||
height: 26px;
|
||||
background: #555c65;
|
||||
margin: 0 4px;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
.mail-logo {
|
||||
position: relative;
|
||||
width: 17px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue