Show placeholder for empty slot in breadcrumbs
This commit is contained in:
parent
ab6215f9aa
commit
df8ce7fb33
3 changed files with 17 additions and 0 deletions
|
@ -22,6 +22,19 @@ limitations under the License.
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|
||||||
|
// repeating circles as empty placeholders
|
||||||
|
background:
|
||||||
|
radial-gradient(
|
||||||
|
circle at center,
|
||||||
|
$breadcrumb-placeholder-bg-color,
|
||||||
|
$breadcrumb-placeholder-bg-color 15px,
|
||||||
|
transparent 16px
|
||||||
|
);
|
||||||
|
background-size: 36px;
|
||||||
|
background-position: 6px -1px;
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
|
||||||
|
|
||||||
// Autohide the scrollbar
|
// Autohide the scrollbar
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|
|
@ -170,6 +170,8 @@ $tooltip-timeline-fg-color: #ffffff;
|
||||||
$interactive-tooltip-bg-color: $base-color;
|
$interactive-tooltip-bg-color: $base-color;
|
||||||
$interactive-tooltip-fg-color: #ffffff;
|
$interactive-tooltip-fg-color: #ffffff;
|
||||||
|
|
||||||
|
$breadcrumb-placeholder-bg-color: #272c35;
|
||||||
|
|
||||||
// ***** Mixins! *****
|
// ***** Mixins! *****
|
||||||
|
|
||||||
@define-mixin mx_DialogButton {
|
@define-mixin mx_DialogButton {
|
||||||
|
|
|
@ -288,6 +288,8 @@ $tooltip-timeline-fg-color: #ffffff;
|
||||||
$interactive-tooltip-bg-color: #27303a;
|
$interactive-tooltip-bg-color: #27303a;
|
||||||
$interactive-tooltip-fg-color: #ffffff;
|
$interactive-tooltip-fg-color: #ffffff;
|
||||||
|
|
||||||
|
$breadcrumb-placeholder-bg-color: #e8eef5;
|
||||||
|
|
||||||
// ***** Mixins! *****
|
// ***** Mixins! *****
|
||||||
|
|
||||||
@define-mixin mx_DialogButton {
|
@define-mixin mx_DialogButton {
|
||||||
|
|
Loading…
Reference in a new issue