mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 23:55:04 +08:00
* Fix node reference when changing elements * Fix ScriptVariables parsing * Fix invariant text and niagara types * Niagara convert nodes * Move node tests to own files * More Niagara tests * Niagara float and smaller fixes * More Decoding * More decoding * WIP * Float is real * WIP * More types and colors * Test case and small polish * WIP * WIP * Fix niagara script variables merging * Fix Niagara variables * Fixing mirrored ExportPath * Fix Export paths name adjustments * Simplify arc calculation * Simplify a bit arc calculation * source / destionation => origin / target * Minor refactoring * Fix switched link position * Rename some properties for uniformity * Fix input escape * Simplify test * About window * Dialog backdrop style * About dialog touches * Remove dependency and minot improvement * Light mode * Fix link location and css small improvement * Link direction and minor fixes * Some minor fixes and refactoring * Refactoring WIP * Shorting repetitive bits * More tests * Simplify linking tests
168 lines
2.7 KiB
SCSS
Executable File
168 lines
2.7 KiB
SCSS
Executable File
.ueb-button {
|
|
min-width: 60px;
|
|
border: 1px solid #0f0f0f;
|
|
border-radius: 4px;
|
|
padding: 2px 10px;
|
|
background: #383838;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background: #575757;
|
|
}
|
|
}
|
|
|
|
.ueb-buttons {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.ueb-vertical-slider>ueb-ui-slider {
|
|
position: relative;
|
|
padding-bottom: 10px;
|
|
|
|
&::before,
|
|
&::after {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
border: 5px solid transparent;
|
|
}
|
|
|
|
&::before {
|
|
left: -4px;
|
|
border-left-color: #e0e0e0;
|
|
}
|
|
|
|
&::after {
|
|
right: -4px;
|
|
border-right-color: #e0e0e0;
|
|
}
|
|
}
|
|
|
|
.ueb-horizontal-slider,
|
|
.ueb-text-input {
|
|
position: relative;
|
|
border: 1px solid #383838;
|
|
border-radius: 6px;
|
|
background: #0f0f0f;
|
|
}
|
|
|
|
.ueb-horizontal-slider {
|
|
position: relative;
|
|
padding: 1px;
|
|
|
|
&:hover {
|
|
cursor: ew-resize;
|
|
}
|
|
}
|
|
|
|
ueb-window .ueb-pin-input-content {
|
|
padding: 1px 10px;
|
|
}
|
|
|
|
.ueb-horizontal-slider>ueb-ui-slider {
|
|
display: block;
|
|
position: relative;
|
|
height: 20px;
|
|
border-radius: 5px;
|
|
background: #383838;
|
|
}
|
|
|
|
.ueb-horizontal-slider-text {
|
|
position: absolute;
|
|
padding: 0 5px;
|
|
line-height: 20px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.ueb-toggle-control {
|
|
|
|
&::before {
|
|
content: "";
|
|
display: inline-block;
|
|
border-top: 5px solid #e0e0e0;
|
|
border-left: 5px solid transparent;
|
|
border-right: 5px solid transparent;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.ueb-resizeable-top,
|
|
.ueb-resizeable-top-right,
|
|
.ueb-resizeable-top-left {
|
|
position: absolute;
|
|
top: 0;
|
|
height: 10px;
|
|
}
|
|
|
|
.ueb-resizeable-top {
|
|
right: 0;
|
|
left: 0;
|
|
cursor: ns-resize;
|
|
}
|
|
|
|
.ueb-resizeable-top-right {
|
|
right: 0;
|
|
width: 10px;
|
|
cursor: nesw-resize;
|
|
}
|
|
|
|
.ueb-resizeable-top-left {
|
|
left: 0;
|
|
width: 10px;
|
|
cursor: nwse-resize;
|
|
}
|
|
|
|
.ueb-resizeable-right {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 10px;
|
|
cursor: ew-resize;
|
|
}
|
|
|
|
.ueb-resizeable-bottom,
|
|
.ueb-resizeable-bottom-right,
|
|
.ueb-resizeable-bottom-left {
|
|
position: absolute;
|
|
bottom: -3px;
|
|
height: 10px;
|
|
cursor: ns-resize;
|
|
}
|
|
|
|
.ueb-resizeable-bottom {
|
|
right: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.ueb-resizeable-bottom-right {
|
|
right: 0;
|
|
width: 10px;
|
|
cursor: nwse-resize;
|
|
}
|
|
|
|
.ueb-resizeable-bottom-left {
|
|
left: 0;
|
|
width: 10px;
|
|
cursor: nesw-resize;
|
|
}
|
|
|
|
.ueb-resizeable-left {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 10px;
|
|
cursor: ew-resize;
|
|
}
|