snappymail/dev/Styles/Cmd.less

83 lines
1.1 KiB
Text
Raw Normal View History

2016-07-08 07:22:58 +08:00
.rl-cmd {
position: absolute;
bottom: 0;
left: 0;
right: 0;
top: auto;
height: 0;
2016-08-31 04:24:02 +08:00
z-index: 10000;
2016-07-08 07:22:58 +08:00
2016-08-22 05:30:34 +08:00
background: rgba(0, 0, 0, .85);
2016-07-08 07:22:58 +08:00
border-top: 1px solid #000;
2016-08-22 05:30:34 +08:00
overflow: hidden;
font-family: monospace;
2016-07-08 07:22:58 +08:00
.transition(height 0.1s ease-out);
&.opened {
2016-08-31 04:24:02 +08:00
height: 250px;
2016-08-22 05:30:34 +08:00
}
.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;
2016-07-08 07:22:58 +08:00
}
}