mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2024-11-16 11:07:57 +01:00
181 lines
2.6 KiB
CSS
Executable File
181 lines
2.6 KiB
CSS
Executable File
.Outliner {
|
|
color: #444;
|
|
background: #fff;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 140px;
|
|
font-size: 12px;
|
|
cursor: default;
|
|
overflow: auto;
|
|
outline: none;
|
|
}
|
|
|
|
.Outliner .option {
|
|
padding: 4px;
|
|
color: #666;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.Outliner .option.active {
|
|
background-color: #f8f8f8;
|
|
}
|
|
|
|
input.Number {
|
|
color: #0080f0!important;
|
|
font-size: 12px; /** TODO: Use of !imporant is not ideal **/
|
|
background-color: transparent!important; /* For now this is a quick fix a rendering issue due to inherited background */
|
|
border: 1px solid transparent;
|
|
padding: 2px;
|
|
cursor: col-resize;
|
|
}
|
|
|
|
#viewport {
|
|
position: absolute;
|
|
top: 32px;
|
|
left: 0px;
|
|
right: 300px;
|
|
bottom: 32px;
|
|
}
|
|
|
|
#viewport #info {
|
|
text-shadow: 1px 1px 0px rgba(0,0,0,0.25);
|
|
}
|
|
|
|
#script {
|
|
position: absolute;
|
|
top: 32px;
|
|
left: 0px;
|
|
right: 300px;
|
|
bottom: 32px;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
#player {
|
|
position: absolute;
|
|
top: 32px;
|
|
left: 0px;
|
|
right: 300px;
|
|
bottom: 32px;
|
|
}
|
|
|
|
#menubar {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 32px;
|
|
background: #eee;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
right: 0px;
|
|
top: 0px;
|
|
}
|
|
|
|
#menubar .menu {
|
|
float: left;
|
|
cursor: pointer;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
#menubar .menu.right {
|
|
float: right;
|
|
cursor: auto;
|
|
text-align: right;
|
|
}
|
|
|
|
#menubar .menu .title {
|
|
display: inline-block;
|
|
color: #888;
|
|
margin: 0px;
|
|
padding: 8px;
|
|
}
|
|
|
|
#menubar .menu .options {
|
|
position: absolute;
|
|
display: none;
|
|
padding: 5px 0px;
|
|
background: #eee;
|
|
width: 150px;
|
|
}
|
|
|
|
#menubar .menu:hover .options {
|
|
display: block;
|
|
}
|
|
|
|
#menubar .menu .options hr {
|
|
border-color: #ddd;
|
|
}
|
|
|
|
#menubar .menu .options .option {
|
|
color: #666;
|
|
background-color: transparent;
|
|
padding: 5px 10px;
|
|
margin: 0px !important;
|
|
}
|
|
|
|
#menubar .menu .options .option:hover {
|
|
color: #fff;
|
|
background-color: #08f;
|
|
}
|
|
|
|
#menubar .menu .options .option:active {
|
|
color: #666;
|
|
background: transparent;
|
|
}
|
|
|
|
#sidebar {
|
|
position: absolute;
|
|
right: 0px;
|
|
top: 32px;
|
|
bottom: 0px;
|
|
width: 300px;
|
|
background: #eee;
|
|
overflow: auto;
|
|
}
|
|
|
|
#sidebar * {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
#sidebar input,
|
|
#sidebar textarea,
|
|
#sidebar select {
|
|
border: 1px solid transparent;
|
|
color: #444;
|
|
}
|
|
|
|
#sidebar .Panel {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#sidebar .Panel.collapsed {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
#sidebar > .Panel {
|
|
color: #888;
|
|
padding: 10px;
|
|
border-top: 1px solid #ccc;
|
|
}
|
|
|
|
#toolbar {
|
|
position: absolute;
|
|
left: 0px;
|
|
right: 300px;
|
|
bottom: 0px;
|
|
height: 32px;
|
|
background: #eee;
|
|
color: #333;
|
|
}
|
|
|
|
#toolbar * {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
#toolbar .Panel {
|
|
padding: 4px;
|
|
color: #888;
|
|
}
|
|
|
|
#toolbar button {
|
|
margin-right: 6px;
|
|
}
|