betaflight-configurator/tabs/cli.css

62 lines
1.2 KiB
CSS
Raw Normal View History

.tab-cli {
2014-05-05 10:20:39 +00:00
height: 100%;
}
.tab-cli .content_wrapper {
height: calc(100% - 50px);
}
2014-09-20 12:07:00 +00:00
.tab-cli p {
2015-10-30 00:03:39 +00:00
padding: 0px;
border: 0px dotted silver;
2014-09-20 12:07:00 +00:00
}
.tab-cli .note {
margin-bottom: 20px;
}
2015-02-27 01:11:53 +00:00
.tab-cli .backdrop {
border: 1px solid silver;
background-color: rgba(0, 0, 0, 0.75);
2015-10-30 00:03:39 +00:00
margin-top: 0px;
height: calc(100% - 90px); /* - (p, textarea) */
background-image: url("../images/light-wide-1.svg");
background-repeat: no-repeat;
background-position: 50% 80%;
background-size: 600px;
border-radius: 5px;
box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.80);
width: 100%;
2015-02-27 01:11:53 +00:00
}
2015-02-27 01:11:53 +00:00
.tab-cli .window {
height: 100%;
width: 100%;
2014-09-20 12:07:00 +00:00
padding: 5px;
overflow-y: scroll;
overflow-x: hidden;
font-family: monospace;
color: white;
2015-02-27 01:11:53 +00:00
box-sizing: border-box;
2014-09-20 12:07:00 +00:00
-webkit-user-select: text;
float: left;
2014-09-20 12:07:00 +00:00
}
2014-09-20 12:07:00 +00:00
.tab-cli textarea {
-webkit-box-sizing: border-box;
width: 100%;
margin-top: 8px;
height: 22px;
line-height: 20px;
padding-left: 5px;
border: 1px solid silver;
resize: none;
2015-02-27 01:11:53 +00:00
}
2015-02-27 01:11:53 +00:00
.tab-cli #content-watermark {
z-index: 0;
}
.tab-cli .window .wrapper {
white-space: pre-wrap;
}