OpenBuilds-CONTROL/app/css/buttons.css

162 wiersze
2.8 KiB
CSS
Czysty Zwykły widok Historia

2018-06-29 13:01:16 +00:00
.drotable td, .jogtable td {
2018-06-27 19:23:34 +00:00
padding: 2px;
2018-06-29 13:01:16 +00:00
vertical-align: bottom;
}
.drotable button, .dro {
border: 1px solid lightgray;
}
.jogtable button {
border: 1px solid lightgray;
2018-06-27 19:23:34 +00:00
}
2019-04-24 17:47:21 +00:00
#frocell button {
border: 1px solid lightgray;
}
#trocell button {
border: 1px solid lightgray;
}
2018-06-27 19:23:34 +00:00
.jogbtn:disabled {
pointer-events:none;
}
2018-06-29 13:01:16 +00:00
.dro {
2018-06-21 20:02:40 +00:00
display: block;
text-decoration: none;
2018-06-27 19:23:34 +00:00
background-color: #f8f8f8;
2018-06-21 20:02:40 +00:00
color: #a7a7a7;
2018-08-06 16:56:45 +00:00
width: 161px;
2018-06-29 13:01:16 +00:00
height: 36px;
2018-06-21 20:02:40 +00:00
position: relative;
text-align: right;
padding-right: 6px;
padding-left: 6px;
2018-06-29 13:01:16 +00:00
line-height: 32px;
2018-06-21 20:02:40 +00:00
font-weight:900;
font-size: 18px;
2018-06-29 13:01:16 +00:00
cursor: pointer;
2018-06-21 20:02:40 +00:00
}
2018-06-29 13:01:16 +00:00
.droInput {
display: block;
text-decoration: none;
background-color: #f5f6f7;
color: #a7a7a7;
margin: 2px;
width: 100px;
2018-06-29 13:01:16 +00:00
height: 34px;
position: relative;
text-align: right;
padding-right: 6px;
padding-left: 6px;
2018-06-29 13:01:16 +00:00
line-height: 34px;
border-radius: 2px;
border: 1px solid #ddd;
font-weight:700;
font-size: 18px;
cursor: default;
text-align: right;
border: none;
outline: none;
display:none;
}
2018-06-21 20:02:40 +00:00
.glossybtn:link, .glossybtn:visited {
display: block;
text-decoration: none;
background-color: #f5f6f7;
2018-06-21 20:02:40 +00:00
color: #a7a7a7;
margin: 2px;
width: 53px;
height: 53.5px;
2018-06-21 20:02:40 +00:00
position: relative;
text-align: center;
line-height: 50px;
border-radius: 2px;
border: 1px solid #ddd;
2018-06-21 20:02:40 +00:00
}
.glossybtn:active {
background: #d5d6d7;
2018-06-21 20:02:40 +00:00
}
.glossybtn:hover {
text-decoration: none;
background: rgba(164,206,249, 0.2);
border: 1px solid rgb(164,206,249);
2018-06-21 20:02:40 +00:00
}
2019-05-01 18:44:44 +00:00
/* CSS Mini SwitchCheckbox */
/* <label class="toggle">
<input type="checkbox"/>
<div>app-notifition</div>
</label> */
.disappear-from-screen, .toggle input {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.toggle-component {
margin-bottom: 3rem;
}
.toggle-component p {
margin: 0.7rem 0;
}
.toggle {
display: table;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
margin-bottom: 0px;
}
.toggle input:focus + div {
text-decoration: underline;
}
.toggle > div {
cursor: pointer;
border-radius: 14px;
width: 36px;
height: 17px;
background: white;
border: 1px solid lightgray;
user-select: none;
position: relative;
transition: 150ms ease-out;
font-size: 0;
}
.toggle > div:hover {
box-shadow: 0 0 4px #4a4e51;
}
.toggle > div:before {
will-change: translate;
display: block;
position: absolute;
top: 2px;
left: 2px;
content: '';
width: 0.7rem;
height: 0.7rem;
background: #4a4e51;
border-radius: 50%;
transition: 150ms;
}
.toggle input:checked + div {
background: #fff;
border-color: #lightgray;
}
.toggle input:checked + div:before {
color: #4a4e51;
transform: translateX(19px);
background: #4a4e51;
}
/* End CSS mini Switch */