mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 21:49:21 +03:00
Add cmd interface
This commit is contained in:
parent
17669b7be0
commit
e6e1a19477
22 changed files with 540 additions and 111 deletions
|
|
@ -7,12 +7,75 @@
|
|||
top: auto;
|
||||
height: 0;
|
||||
|
||||
background: rgba(0, 0, 0, .8);
|
||||
background: rgba(0, 0, 0, .85);
|
||||
border-top: 1px solid #000;
|
||||
|
||||
overflow: hidden;
|
||||
font-family: monospace;
|
||||
|
||||
.transition(height 0.1s ease-out);
|
||||
|
||||
&.opened {
|
||||
height: 200px;
|
||||
height: 300px;
|
||||
}
|
||||
|
||||
.rl-cmd-clr-error {
|
||||
color: #CD3131;
|
||||
}
|
||||
|
||||
.rl-cmd-clr-info {
|
||||
color: #BFBF00;
|
||||
}
|
||||
|
||||
.rl-cmd-clr-success {
|
||||
color: #31FF40;
|
||||
}
|
||||
|
||||
.rl-cmd-wrp {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.rl-cmd-input-helper {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.rl-cmd-input-prefix {
|
||||
color: #31FF40;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.rl-cmd-input-wrp {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 10px;
|
||||
right: 10px;
|
||||
}
|
||||
|
||||
.rl-cmd-input {
|
||||
background: none;
|
||||
border: none;
|
||||
color: white;
|
||||
display: inline-block;
|
||||
width: calc(~'100% - 30px');
|
||||
font-family: monospace;
|
||||
|
||||
&:focus{
|
||||
background: none;
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
|
||||
.rl-cmd-history {
|
||||
color: white;
|
||||
font-family: monospace;
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
bottom: 60px;
|
||||
left: 10px;
|
||||
right: -30px;
|
||||
overflow: hidden;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue