2018-12-08 15:16:04 +00:00
|
|
|
%toolbar-shadow {
|
|
|
|
box-shadow: 1px 1px 3px 0px map-get($gray-shades, 200);
|
|
|
|
}
|
|
|
|
|
|
|
|
.dmz-toolbar {
|
2018-12-14 15:47:41 +00:00
|
|
|
display: inline-flex;
|
|
|
|
// flex: 0 1 auto;
|
|
|
|
flex-basis: auto;
|
2018-12-06 20:13:03 +00:00
|
|
|
text-align: center;
|
|
|
|
white-space: nowrap;
|
|
|
|
vertical-align: middle;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
height: 30px;
|
2018-12-14 15:47:41 +00:00
|
|
|
width: auto;
|
|
|
|
padding: 6px 10px;
|
2018-12-06 20:13:03 +00:00
|
|
|
line-height: 24px;
|
|
|
|
@extend .no-select;
|
|
|
|
@include border-radius(6px);
|
|
|
|
|
|
|
|
> .dicon {
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: map-get($gray-shades, 600);
|
2018-12-14 15:47:41 +00:00
|
|
|
padding: 0 0.5rem;
|
2018-12-06 20:13:03 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: map-get($gray-shades, 700);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-14 15:47:41 +00:00
|
|
|
> .label {
|
|
|
|
// display: inline-block;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: map-get($gray-shades, 600);
|
|
|
|
padding: 0 0.5rem;
|
|
|
|
align-self: center;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2018-12-06 20:13:03 +00:00
|
|
|
> .red {
|
|
|
|
color: map-get($red-shades, 500);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: map-get($red-shades, 600);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .yellow {
|
|
|
|
color: map-get($yellow-shades, 600);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: map-get($yellow-shades, 700);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .green {
|
|
|
|
color: map-get($green-shades, 500);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: map-get($green-shades, 600);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-08 15:16:04 +00:00
|
|
|
.dmz-toolbar-large {
|
|
|
|
height: 40px;
|
2018-12-14 15:47:41 +00:00
|
|
|
padding: 9px 10px;
|
2018-12-06 20:13:03 +00:00
|
|
|
line-height: 33px;
|
|
|
|
|
|
|
|
> .dicon {
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: 500;
|
2018-12-08 15:16:04 +00:00
|
|
|
padding: 0 0.5rem;
|
2018-12-06 20:13:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-08 15:16:04 +00:00
|
|
|
.dmz-toolbar-dark {
|
|
|
|
background-color: map-get($gray-shades, 200);
|
2018-12-06 20:13:03 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 15:16:04 +00:00
|
|
|
.dmz-toolbar-light {
|
|
|
|
background-color: map-get($gray-shades, 100);
|
2018-12-06 20:13:03 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 15:16:04 +00:00
|
|
|
.dmz-toolbar-raised {
|
|
|
|
@extend %toolbar-shadow;
|
2018-12-06 20:13:03 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 15:16:04 +00:00
|
|
|
.dmz-toolbar-bordered {
|
|
|
|
border: 1px solid map-get($gray-shades, 300);
|
2018-12-06 20:13:03 +00:00
|
|
|
}
|