Development Only stripe

This commit is contained in:
barsdeveloper
2022-04-26 22:42:06 +02:00
parent fff0af6f7b
commit df518ccd3c
5 changed files with 43 additions and 8 deletions

View File

@@ -42,8 +42,8 @@ ueb-blueprint[data-drag-scrolling="false"][data-selecting="false"] ueb-node {
.ueb-node-header {
padding: 0.3em 0.7em;
box-shadow: inset 5px 1px 5px -3px #83b37b,
inset 0 1px 0 0 #111311,
inset 0 2px 0 0 #83b37b;
inset 0 1px 0 0 #111311,
inset 0 2px 0 0 #83b37b;
border-radius: var(--ueb-node-radius) var(--ueb-node-radius) 0 0;
background: linear-gradient(170deg, #5f815a 0%, #5f815a 50%, transparent 100%);
color: #c0c0c0;
@@ -74,6 +74,30 @@ ueb-blueprint[data-drag-scrolling="false"][data-selecting="false"] ueb-node {
padding-right: 8px;
}
.ueb-node-developmentonly {
display: none;
background: repeating-linear-gradient(-45deg,
transparent 0,
#57590a 1px,
#57590a 11px,
transparent 12px,
transparent 24px);
background: repeating-linear-gradient(-45deg,
transparent 0,
#57590a 1px,
#57590a 11px,
transparent 12px,
transparent 24px);
text-align: center;
padding: 2px;
letter-spacing: 0.06em;
text-shadow: 1px 1px 1px black;
}
ueb-node[data-enabled-state="DevelopmentOnly"] .ueb-node-developmentonly {
display: block;
}
.ueb-node-expansion {
display: none;
text-align: center;
@@ -91,6 +115,7 @@ ueb-blueprint[data-drag-scrolling="false"][data-selecting="false"] .ueb-node-exp
ueb-node[data-advanced-display] .ueb-node-expansion {
display: block;
}
ueb-node[data-advanced-display="Shown"] .ueb-node-expansion-icon {
transform: scaleY(-1)
}