OpenBuilds-CONTROL/app/css/main.css

281 wiersze
6.1 KiB
CSS
Czysty Zwykły widok Historia

2018-06-20 13:00:05 +00:00
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2020-01-14 13:41:35 +00:00
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Safari */
-khtml-user-select: none;
/* Konqueror HTML */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently
2018-06-20 13:00:05 +00:00
supported by Chrome and Opera */
2020-08-10 16:54:32 +00:00
overflow-y: hidden;
2018-06-20 13:00:05 +00:00
}
2022-11-01 20:21:24 +00:00
/* Implemented as default https://thayneco.com/expand-usb-port-selector-in-openbuilds-control/ */
2022-12-20 18:50:36 +00:00
#section-jog div:nth-child(2) label {
2022-11-01 20:21:24 +00:00
width: 350px;
}
2022-04-21 12:26:03 +00:00
/* Fix dialog-actions alignment */
.dialog-actions {
display: flex;
justify-content: flex-end
}
2019-04-24 17:47:21 +00:00
#jogcontrols {
2020-01-14 13:41:35 +00:00
/* Note only uses height attribs from here, before we connect to websocket. After that, it gets set by websocket.js */
2022-11-01 20:21:24 +00:00
height: 240px;
2019-04-24 17:47:21 +00:00
}
2018-11-26 19:22:53 +00:00
#macros {
2020-01-14 13:41:35 +00:00
/* Note only uses height attribs from here, before we connect to websocket. After that, it gets set by websocket.js */
2022-11-01 20:21:24 +00:00
height: calc(100vh - 495px);
2020-01-14 13:41:35 +00:00
width: 100%;
border-top: 1px solid #ccc;
/* margin-top: 5px; */
box-shadow: 0 0 2px 2px #ddd;
2022-07-06 20:08:38 +00:00
/* background-color: #fff; */
2018-11-26 19:22:53 +00:00
}
2018-08-28 15:09:20 +00:00
#renderArea {
2020-01-14 13:41:35 +00:00
/* Note only uses height attribs from here, before we connect to websocket. After that, it gets set by websocket.js */
2022-11-01 20:21:24 +00:00
height: calc(100vh - 495px);
2020-01-14 13:41:35 +00:00
width: 100%;
border-top: 1px solid #ccc;
/* margin-top: 5px; */
box-shadow: 0 0 2px 2px #ddd;
2022-07-06 20:08:38 +00:00
/* background-color: #fff; */
2018-08-28 15:09:20 +00:00
}
2018-06-22 19:49:51 +00:00
#editor {
2020-01-14 13:41:35 +00:00
/* Note only uses height attribs from here, before we connect to websocket. After that, it gets set by websocket.js */
2022-11-01 20:21:24 +00:00
height: calc(100vh - 535px);
2020-01-14 13:41:35 +00:00
width: 100%;
border-top: 1px solid #ccc;
/* margin-top: 5px; */
box-shadow: 0 0 2px 2px #ddd;
2018-06-22 19:49:51 +00:00
}
2022-12-20 18:50:36 +00:00
#fluidnceditor {
/* Note only uses height attribs from here, before we connect to websocket. After that, it gets set by websocket.js */
height: calc(100vh - 235px);
width: 100%;
border-top: 1px solid #ccc;
/* margin-top: 5px; */
box-shadow: 0 0 2px 2px #ddd;
}
2020-01-14 13:41:35 +00:00
#console>p {
2019-05-08 19:06:34 +00:00
margin-top: 5px;
}
2020-01-14 13:41:35 +00:00
#console>p:hover {
2019-05-08 20:26:04 +00:00
background-color: #eee;
}
2018-08-01 19:04:27 +00:00
#console {
2020-01-14 13:41:35 +00:00
/*font-family: "Courier New", Courier, monospace;*/
font-family: "Lucida Console", Monaco, monospace;
2022-11-10 21:06:34 +00:00
height: calc(100vh - 535px);
2020-01-14 13:41:35 +00:00
width: 100%;
overflow-y: auto;
overflow-x: none;
text-align: left;
2022-07-06 20:08:38 +00:00
/* background-color: #fff; */
2020-01-14 13:41:35 +00:00
box-shadow: 0 0 2px 2px #ddd;
padding: 0px;
font-size: 12px;
padding-left: 20px;
white-space: normal;
margin-bottom: 0px;
-webkit-touch-callout: text;
/* iOS Safari */
-webkit-user-select: text;
/* Safari */
-khtml-user-select: text;
/* Konqueror HTML */
-moz-user-select: text;
/* Firefox */
-ms-user-select: text;
/* Internet Explorer/Edge */
user-select: text;
/* Non-prefixed version, currently
2018-06-25 20:13:58 +00:00
supported by Chrome and Opera */
}
2018-08-01 19:04:27 +00:00
#grblPanel {
2020-01-14 13:41:35 +00:00
max-height: calc(100vh - 215px);
height: calc(100vh - 215px);
width: 100%;
2022-04-21 12:26:03 +00:00
overflow-y: none;
2020-01-14 13:41:35 +00:00
overflow-x: none;
padding: 8px;
-webkit-touch-callout: text;
/* iOS Safari */
-webkit-user-select: text;
/* Safari */
-khtml-user-select: text;
/* Konqueror HTML */
-moz-user-select: text;
/* Firefox */
-ms-user-select: text;
/* Internet Explorer/Edge */
user-select: text;
/* Non-prefixed version, currently
2018-07-12 13:06:53 +00:00
supported by Chrome and Opera */
}
2018-06-19 20:25:40 +00:00
.pf {
2020-01-14 13:41:35 +00:00
margin-top: 0px;
margin-bottom: -4px;
2018-06-19 20:25:40 +00:00
}
2020-01-14 13:41:35 +00:00
select {
2018-06-27 19:23:34 +00:00
font-family: 'FontAwesome', sans-serif;
2018-06-19 20:25:40 +00:00
}
2018-06-21 21:04:41 +00:00
.btn-file {
2020-01-14 13:41:35 +00:00
position: relative;
overflow: hidden;
margin-top: 0px !important;
margin-bottom: 0px !important;
margin-left: 0px !important;
margin-right: 0px !important;
2018-06-21 21:04:41 +00:00
}
2020-01-14 13:41:35 +00:00
2018-06-21 21:04:41 +00:00
.btn-file input[type=file] {
2020-01-14 13:41:35 +00:00
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
2018-06-21 21:04:41 +00:00
}
2018-08-01 19:04:27 +00:00
/* OpenBuilds Navbar for MetroWindows */
.fg-openbuilds {
2022-07-06 20:08:38 +00:00
color: rgb(64, 68, 71) !important;
2018-08-01 19:04:27 +00:00
}
2020-01-14 13:41:35 +00:00
2018-08-01 19:04:27 +00:00
.bg-openbuilds {
2022-07-06 20:08:38 +00:00
background-color: rgb(64, 68, 71) !important;
2018-08-01 19:04:27 +00:00
}
2020-01-14 13:41:35 +00:00
2018-09-18 19:26:29 +00:00
.bd-openbuilds {
2022-07-06 20:08:38 +00:00
border-color: rgb(64, 68, 71) !important;
2018-09-18 19:26:29 +00:00
}
.openbuilds-switch .check::after {
2022-07-06 20:08:38 +00:00
background: rgb(64, 68, 71) !important;
border-color: rgb(64, 68, 71) !important;
2018-09-18 19:26:29 +00:00
}
2020-01-14 13:41:35 +00:00
.openbuilds-switch input[type="checkbox"]:checked~.check {
2022-07-06 20:08:38 +00:00
background: rgb(64, 68, 71) !important;
2018-09-18 19:26:29 +00:00
}
2020-01-14 13:41:35 +00:00
.openbuilds-switch input[type="checkbox"]:checked~.check::after {
border-color: #ffffff !important;
background: #ffffff !important;
2018-09-18 19:26:29 +00:00
}
2018-08-23 20:41:36 +00:00
2020-01-14 13:41:35 +00:00
.keyboardpanel td:nth-child(1) {
2018-08-23 20:41:36 +00:00
width: 60px;
height: 60px;
}
2020-01-14 13:41:35 +00:00
.keyboardpanel td:nth-child(2) {
2018-08-23 20:41:36 +00:00
width: 60px;
height: 60px;
}
2020-01-14 13:41:35 +00:00
2018-09-18 14:34:11 +00:00
#splash {
z-index: 2000;
padding: 1000px;
2022-07-06 20:08:38 +00:00
/* background-color: #fff */
2018-09-18 14:34:11 +00:00
}
2019-04-12 15:12:28 +00:00
2020-04-14 17:57:56 +00:00
.macroedit {
position: absolute !important;
top: 5px !important;
right: 5px !important;
font-size: 11px !important;
}
2019-04-12 15:12:28 +00:00
.macroedit:hover {
2020-04-14 17:57:56 +00:00
color: #ff1e11 !important;
2019-04-12 15:12:28 +00:00
}
2019-04-15 17:31:30 +00:00
2020-04-17 21:07:39 +00:00
.macrotype {
position: absolute !important;
top: 2px !important;
right: 22px !important;
font-size: 10px !important;
}
#macrogcode {
/*font-family: "Courier New", Courier, monospace;*/
font-family: "Lucida Console", Monaco, monospace;
font-size: 12px;
padding: 5px;
-webkit-touch-callout: text;
/* iOS Safari */
-webkit-user-select: text;
/* Safari */
-khtml-user-select: text;
/* Konqueror HTML */
-moz-user-select: text;
/* Firefox */
-ms-user-select: text;
/* Internet Explorer/Edge */
user-select: text;
}
#macrojs {
/*font-family: "Courier New", Courier, monospace;*/
font-family: "Lucida Console", Monaco, monospace;
font-size: 12px;
padding: 5px;
-webkit-touch-callout: text;
/* iOS Safari */
-webkit-user-select: text;
/* Safari */
-khtml-user-select: text;
/* Konqueror HTML */
-moz-user-select: text;
/* Firefox */
-ms-user-select: text;
/* Internet Explorer/Edge */
user-select: text;
}
2019-04-15 17:31:30 +00:00
.machineicon:hover {
2020-01-14 13:41:35 +00:00
color: #CE352C !important;
2022-07-06 20:08:38 +00:00
}
#splash {
background-image: linear-gradient(to top, #888888, #ffffff, #888888);
2022-11-01 20:21:24 +00:00
}
/* html {
background: black;
background-color: black;
filter: invert(1) hue-rotate(180deg);
}
img {
filter: invert(1) hue-rotate(180deg);
} */