Merge branch 'staging' into pad2
commit
a612f02be2
@ -1,39 +1,101 @@
|
|||||||
|
@import (once) '../customize/src/less2/include/colortheme.less';
|
||||||
|
|
||||||
#fileDialog {
|
#fileDialog {
|
||||||
position: absolute;
|
|
||||||
background-color: rgba(200, 200, 200, 0.8);
|
|
||||||
top: 15vh; bottom: 15vh;
|
|
||||||
left: 10vw; right: 10vw;
|
|
||||||
border: 1px solid black;
|
|
||||||
z-index: 100000;
|
|
||||||
overflow: auto;
|
|
||||||
display: none;
|
display: none;
|
||||||
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
|
|
||||||
font-size: 16px;
|
z-index: 100000;
|
||||||
text-align: center;
|
position: absolute;
|
||||||
.close {
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
background-color: @colortheme_modal-dim;
|
||||||
|
|
||||||
|
.cp-modal {
|
||||||
|
background-color: @colortheme_modal-bg;
|
||||||
|
color: @colortheme_modal-fg;
|
||||||
|
box-shadow: @colortheme_modal-shadow;
|
||||||
|
|
||||||
|
padding: @colortheme_modal-padding;
|
||||||
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 15vh; bottom: 15vh;
|
||||||
right: 0;
|
left: 10vw; right: 10vw;
|
||||||
padding: 5px;
|
|
||||||
cursor: pointer;
|
overflow: auto;
|
||||||
}
|
|
||||||
.element {
|
font-family: @colortheme_font;
|
||||||
cursor: pointer;
|
text-align: center;
|
||||||
display: inline-flex;
|
|
||||||
width: 100px;
|
& > p {
|
||||||
height: 100px;
|
margin-bottom: 1em;
|
||||||
border: 1px solid #ccc;
|
}
|
||||||
margin: 5px;
|
|
||||||
overflow: hidden;
|
.cp-form {
|
||||||
word-wrap: break-word;
|
display: flex;
|
||||||
background-color: white;
|
flex-wrap: wrap;
|
||||||
padding: 5px;
|
align-items: center;
|
||||||
align-items: center;
|
justify-content: center;
|
||||||
span {
|
|
||||||
width: 100px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
input {
|
||||||
|
background-color: @colortheme_modal-input;
|
||||||
|
color: @colortheme_modal-fg;
|
||||||
|
border: 0;
|
||||||
|
padding: 8px 12px;
|
||||||
|
margin: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.close {
|
||||||
|
text-shadow: none;
|
||||||
|
color: inherit;
|
||||||
|
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
margin: @colortheme_modal-padding;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fileContainer {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.element {
|
||||||
|
@darker: darken(@colortheme_modal-fg, 30%);
|
||||||
|
|
||||||
|
width: 200px;
|
||||||
|
min-width: 200px;
|
||||||
|
height: 1em;
|
||||||
|
padding: 0.5em;
|
||||||
|
margin: 5px;
|
||||||
|
box-sizing: content-box;
|
||||||
|
|
||||||
|
text-align: left;
|
||||||
|
line-height: 1em;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
background-color: #111;
|
||||||
|
color: @darker;
|
||||||
|
|
||||||
|
transition: all 0.1s;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: @colortheme_modal-fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.fa {
|
||||||
|
cursor: pointer;
|
||||||
|
margin-right: 0.5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue