2018-02-24 09:06:27 +00:00
|
|
|
#clipboard_tray
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
position: fixed;
|
|
|
|
right: 8px;
|
|
|
|
bottom: 8px;
|
|
|
|
z-index: 10;
|
|
|
|
|
2018-07-14 09:49:45 +00:00
|
|
|
max-height: 50%;
|
2018-02-24 09:06:27 +00:00
|
|
|
min-width: 150px;
|
|
|
|
padding: 2px;
|
|
|
|
|
2020-06-25 17:03:50 +00:00
|
|
|
background-color: var(--color_secondary);
|
2018-02-24 09:06:27 +00:00
|
|
|
}
|
|
|
|
#clipboard_tray_expandbutton
|
|
|
|
{
|
|
|
|
flex: 1 0 auto;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
#clipboard_tray_body
|
|
|
|
{
|
|
|
|
width: 300px;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
#clipboard_tray_toolbox
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2018-07-14 09:49:45 +00:00
|
|
|
#clipboard_tray_toolbox_firstline
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2018-09-23 21:29:05 +00:00
|
|
|
.my_clipboard_tray_toolbox
|
|
|
|
{
|
|
|
|
display: none;
|
|
|
|
}
|