mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
670 B
40 lines
670 B
@import '_mixins';
|
|
@import '_vars';
|
|
|
|
$size: 2.2rem;
|
|
|
|
a {
|
|
cursor: pointer;
|
|
}
|
|
|
|
img {
|
|
@include border-radius($size * .5);
|
|
height: $size;
|
|
width: $size;
|
|
}
|
|
|
|
.navbar-nav {
|
|
.nav-link {
|
|
@include no-selection;
|
|
padding: 0;
|
|
cursor: pointer;
|
|
color: $accent-dark;
|
|
line-height: 2.2rem;
|
|
}
|
|
}
|
|
|
|
.dropdown-menu {
|
|
& {
|
|
@include absolute(44px, 0, auto, auto);
|
|
}
|
|
|
|
&::before {
|
|
@include absolute(-18px, 10px, auto, auto);
|
|
border-color: transparent transparent $accent-dark;
|
|
border-style: solid;
|
|
border-width: 10px;
|
|
content: '';
|
|
height: 0;
|
|
width: 0;
|
|
}
|
|
}
|