betaflight-configurator/tabs/cli.css

40 lines
611 B
CSS
Raw Normal View History

.tab-cli {
2014-05-05 10:20:39 +00:00
height: 100%;
}
2014-09-20 12:07:00 +00:00
.tab-cli p {
padding: 5px;
border: 1px dotted silver;
}
.tab-cli .window {
margin-top: 10px;
height: calc(100% - 80px); /* - (p, textarea) */
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
padding: 5px;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
overflow-y: scroll;
overflow-x: hidden;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
font-family: monospace;
color: white;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
border: 1px solid silver;
background-color: black;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
-webkit-user-select: text;
}
.tab-cli textarea {
-webkit-box-sizing: border-box;
2014-04-19 20:23:44 +00:00
2014-09-20 12:07:00 +00:00
width: 100%;
2014-04-19 20:23:44 +00:00
2014-09-20 12:07:00 +00:00
margin-top: 8px;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
height: 22px;
line-height: 20px;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
padding-left: 5px;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
border: 1px solid silver;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
resize: none;
}