Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions _build/templates/default/sass/_colors-and-vars.scss
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ $treeHeaderBorder: 1px solid #CDCDCD;
$treeHeaderBg: $lightestGray;
$treeBg: $lightestGray;
$treeBgSelected: #D6E7F8;
$treeColor: $darkGray;
$treeColor: darken($darkGray,10%);
$treeColorDesaturated: lighten(desaturate($treeColor,100%), 25%);
$treeColor_2: #728DA7;
$treePseudoRootBg: #F1F1F1;
Expand All @@ -149,15 +149,15 @@ $iconColor: $treeText;
$deactivatedTextColor: lighten($treeColor, 35%); // do not use 50% here - makes base color nearly invisible
$disabledTextColor: $deactivatedTextColor;

$unpublished: lighten($treeText, 10%) !important;
$unpublished: lighten($treeText, 1%) !important;
$hidden: $treeText;
$unpubText: normal;
$hiddenText: italic;
// locked is already signaled with lock-icon, no need to use other semantic style here
// as italic is used for "unpublished"
$lockedText: inherit; // italic;

$delTextColor: fade-out(darken(lighten(desaturate($red,50%), 33%), 25%), 0.5) !important;
$delTextColor: fade-out(darken(lighten(desaturate($red,50%), 33%), 25%), 0.25) !important;
$delTextStyle: normal;
$delTextDeco: line-through;

Expand Down
15 changes: 14 additions & 1 deletion _build/templates/default/sass/_tree.scss
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,9 @@
i.icon-large {
color: $unpublished;
font-style: normal;
&::before{
font-weight: 400;
}
}
}

Expand All @@ -229,10 +232,17 @@
color: $hidden;
font-style: $hiddenText;

&.unpublished,
&.unpublished a span {
i.icon,
i.icon-large {
color: $hidden;
}
}
i.icon,
i.icon-large {
color: $hidden;
font-style: normal;
color: $treeColor;
}
}

Expand All @@ -243,6 +253,9 @@
i.icon-large {
color: $delTextColor;
font-style: normal;
&::before{
font-weight: 400;
}
}

a span {
Expand Down