rework right hand settings menu
This commit is contained in:
parent
d3680873fe
commit
757457fed2
5 changed files with 88 additions and 23 deletions
|
|
@ -1,4 +1,4 @@
|
|||
a, a:hover, a:visited {
|
||||
setpopsetpopa, a:hover, a:visited {
|
||||
border: none;
|
||||
outline: none;
|
||||
color: inherit;
|
||||
|
|
@ -172,6 +172,20 @@ th, tr, td, span, div, label, button {
|
|||
background-image: linear-gradient(to right, #ddd, #666, #ddd);
|
||||
}
|
||||
|
||||
#lt-top {
|
||||
height: 10px;
|
||||
border-top-right-radius: 10px;
|
||||
background-color: #abc;
|
||||
left: -5px;
|
||||
}
|
||||
|
||||
#lt-end {
|
||||
height: 10px;
|
||||
border-bottom-right-radius: 10px;
|
||||
background-color: #abc;
|
||||
left: -5px;
|
||||
}
|
||||
|
||||
.pop-lcol {
|
||||
position: absolute;
|
||||
display: none;
|
||||
|
|
@ -349,3 +363,55 @@ th, tr, td, span, div, label, button {
|
|||
margin: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#settings {
|
||||
align-items: stretch;
|
||||
}
|
||||
#set-top {
|
||||
color: black;
|
||||
padding: 1px 10px 2px 2px;
|
||||
border-top-left-radius: 10px;
|
||||
border-bottom-left-radius: 0;
|
||||
background-color: #abc;
|
||||
}
|
||||
#set-end {
|
||||
color: black;
|
||||
padding: 1px 10px 2px 2px;
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 10px;
|
||||
background-color: #abc;
|
||||
height: 10px;
|
||||
}
|
||||
.setgroup {
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
background-color: rgba(255,255,255,0.75);
|
||||
border: 1px solid rgba(0,0,0,0);
|
||||
border-radius: 3px;
|
||||
margin: 2px 0 2px 4px;
|
||||
padding: 8px 10px 8px 5px;
|
||||
color: #89a;
|
||||
right: -5px;
|
||||
}
|
||||
.setgroup:hover {
|
||||
background-color: #eee;
|
||||
border: 1px solid #aaa;
|
||||
color: #000;
|
||||
}
|
||||
.setpop {
|
||||
top: 50%;
|
||||
right: 100%;
|
||||
position: absolute;
|
||||
white-space: nowrap;
|
||||
flex-direction: column;
|
||||
transform: translateY(-50%);
|
||||
background-color: rgba(255,255,255,0.5);
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 3px;
|
||||
padding: 5px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.setpop label {
|
||||
padding: 2px 4px 2px 0;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -32,6 +32,7 @@
|
|||
<div id="mid-sep"></div>
|
||||
<div id="mid" class="grow row">
|
||||
<div id="mid-lcol" class="col j-center">
|
||||
<div id="lt-top"></div>
|
||||
<div id="lt-setup" class="lt-menu">
|
||||
<i class="fas fa-cogs"></i>
|
||||
<label>setup</label>
|
||||
|
|
@ -86,6 +87,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="lt-end"></div>
|
||||
</div>
|
||||
<div id="mid-mcol" class="grow">
|
||||
<div id="modal">
|
||||
|
|
@ -109,7 +111,9 @@
|
|||
</div>
|
||||
</div>
|
||||
<div id="mid-rcol" class="col j-center">
|
||||
<div id="set-top" class="setgroup"><a>settings</a></div>
|
||||
<div id="settings" class="col"></div>
|
||||
<div id="set-end" class="setgroup"></div>
|
||||
<div id="slider" class="col">
|
||||
<div id="slider-begin">0</div>
|
||||
<div id="slider-center" class="grow">
|
||||
|
|
|
|||
|
|
@ -150,7 +150,7 @@ kiri.lang['en-us'] = {
|
|||
la_move: "moves",
|
||||
|
||||
// SETTINGS
|
||||
se_menu: "settings",
|
||||
se_menu: "library",
|
||||
se_load: "load",
|
||||
se_save: "save",
|
||||
|
||||
|
|
@ -275,7 +275,7 @@ kiri.lang['en-us'] = {
|
|||
cd_lift_l: "lift between plunges\nafter dwell period\nin workspace units\n0 to disable",
|
||||
|
||||
// CNC CUTOUT TABS
|
||||
ct_menu: "cutout tabs",
|
||||
ct_menu: "tabs",
|
||||
ct_angl_s: "angle",
|
||||
ct_angl_l: "starting angle for tab spacing\nin degrees (0-360)",
|
||||
ct_numb_s: "count",
|
||||
|
|
|
|||
Loading…
Reference in a new issue