Move clipboard_tray rules to own file in css folder.
This commit is contained in:
parent
aabcb61a9c
commit
e359180467
5 changed files with 34 additions and 32 deletions
|
@ -155,35 +155,3 @@ is hovered over.
|
||||||
{
|
{
|
||||||
background-color: #faa;
|
background-color: #faa;
|
||||||
}
|
}
|
||||||
|
|
||||||
#clipboard_tray
|
|
||||||
{
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
|
|
||||||
position: fixed;
|
|
||||||
right: 8px;
|
|
||||||
bottom: 8px;
|
|
||||||
z-index: 10;
|
|
||||||
|
|
||||||
max-height: 80%;
|
|
||||||
min-width: 150px;
|
|
||||||
padding: 2px;
|
|
||||||
|
|
||||||
background-color: #ffffd4;
|
|
||||||
}
|
|
||||||
#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;
|
|
||||||
}
|
|
||||||
|
|
31
frontends/etiquette_flask/static/css/clipboard_tray.css
Normal file
31
frontends/etiquette_flask/static/css/clipboard_tray.css
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
#clipboard_tray
|
||||||
|
{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
position: fixed;
|
||||||
|
right: 8px;
|
||||||
|
bottom: 8px;
|
||||||
|
z-index: 10;
|
||||||
|
|
||||||
|
max-height: 80%;
|
||||||
|
min-width: 150px;
|
||||||
|
padding: 2px;
|
||||||
|
|
||||||
|
background-color: #ffffd4;
|
||||||
|
}
|
||||||
|
#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;
|
||||||
|
}
|
|
@ -8,6 +8,7 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||||
<link rel="stylesheet" href="/static/common.css">
|
<link rel="stylesheet" href="/static/common.css">
|
||||||
|
<link rel="stylesheet" href="/static/css/clipboard_tray.css">
|
||||||
<link rel="stylesheet" href="/static/css/photo_card.css">
|
<link rel="stylesheet" href="/static/css/photo_card.css">
|
||||||
<script src="/static/common.js"></script>
|
<script src="/static/common.js"></script>
|
||||||
<script src="/static/js/editor.js"></script>
|
<script src="/static/js/editor.js"></script>
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||||
<link rel="stylesheet" href="/static/common.css">
|
<link rel="stylesheet" href="/static/common.css">
|
||||||
<link rel="stylesheet" href="/static/css/photo_card.css">
|
<link rel="stylesheet" href="/static/css/photo_card.css">
|
||||||
|
<link rel="stylesheet" href="/static/css/clipboard_tray.css">
|
||||||
<script src="/static/common.js"></script>
|
<script src="/static/common.js"></script>
|
||||||
<script src="/static/js/photoclipboard.js"></script>
|
<script src="/static/js/photoclipboard.js"></script>
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||||
<link rel="stylesheet" href="/static/common.css">
|
<link rel="stylesheet" href="/static/common.css">
|
||||||
<link rel="stylesheet" href="/static/css/photo_card.css">
|
<link rel="stylesheet" href="/static/css/photo_card.css">
|
||||||
|
<link rel="stylesheet" href="/static/css/clipboard_tray.css">
|
||||||
<script src="/static/common.js"></script>
|
<script src="/static/common.js"></script>
|
||||||
<script src="/static/js/photoclipboard.js"></script>
|
<script src="/static/js/photoclipboard.js"></script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue