fix logotype icon
This commit is contained in:
parent
9873b1ed94
commit
113d4c6c20
5 changed files with 50 additions and 48 deletions
|
@ -32,7 +32,7 @@
|
||||||
.icon-lock-open { width: 16px; height: 16px; }
|
.icon-lock-open { width: 16px; height: 16px; }
|
||||||
.icon-lock { width: 16px; height: 16px; }
|
.icon-lock { width: 16px; height: 16px; }
|
||||||
.icon-logo { width: 42px; height: 36px; }
|
.icon-logo { width: 42px; height: 36px; }
|
||||||
.icon-logotype { width: 84px; height: 16px; }
|
.icon-logotype { width: 91px; height: 15px; }
|
||||||
.icon-long-arrow-right { width: 11px; height: 11px; }
|
.icon-long-arrow-right { width: 11px; height: 11px; }
|
||||||
.icon-magnifier { width: 15px; height: 15px; }
|
.icon-magnifier { width: 15px; height: 15px; }
|
||||||
.icon-marker { width: 17px; height: 19px; }
|
.icon-marker { width: 17px; height: 19px; }
|
||||||
|
|
|
@ -1833,8 +1833,8 @@ kbd {
|
||||||
}
|
}
|
||||||
|
|
||||||
.logotype {
|
.logotype {
|
||||||
margin-left: 8px;
|
margin-left: 7px;
|
||||||
margin-top: -5px;
|
margin-top: -3px;
|
||||||
fill: hsl(225,9%,27%);
|
fill: hsl(225,9%,27%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2272,79 +2272,81 @@ footer {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-navigation {
|
.menu {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-navigation .badge {
|
.menu .badge {
|
||||||
background: $ok-color;
|
background: $ok-color;
|
||||||
color: hsl(233,10%,16%);
|
color: hsl(233,10%,16%);
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-navigation .zammad-switch {
|
.menu .zammad-switch {
|
||||||
height: 22px;
|
height: 22px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-navigation > li.active .zammad-switch label:after {
|
.menu-item {
|
||||||
background: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-navigation > li > a {
|
|
||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
height: 48px;
|
height: 48px;
|
||||||
color: rgba(240, 250, 255, .25);
|
color: rgba(240, 250, 255, .25);
|
||||||
border-bottom: 1px solid rgba(240, 250, 255, .05);
|
border-bottom: 1px solid rgba(240, 250, 255, .05);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: hsl(230,10%,13%);
|
||||||
|
border-bottom-color: rgba(240, 250, 255, .08);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.is-active,
|
||||||
|
&.is-hovered {
|
||||||
|
background: none;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.is-active .menu-item-icon,
|
||||||
|
&.is-active .dropdown-icon,
|
||||||
|
&.is-hovered .menu-item-icon {
|
||||||
|
fill: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.is-active,
|
||||||
|
&.is-hovered {
|
||||||
|
background: #389ed9;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.is-active .zammad-switch label:after {
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown-icon {
|
||||||
|
fill: hsl(206,7%,37%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown-menu {
|
||||||
|
left: 10px;
|
||||||
|
right: 15px;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-navigation > li > a:hover {
|
.menu-item-icon {
|
||||||
background: hsl(230,10%,13%);
|
|
||||||
border-bottom-color: rgba(240, 250, 255, .08);
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-navigation > li.active > a,
|
|
||||||
.main-navigation > li.is-hovered > a {
|
|
||||||
background: none;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-navigation > li.active .nav-icon,
|
|
||||||
.main-navigation > li.active .dropdown-icon,
|
|
||||||
.main-navigation > li.is-hovered .nav-icon {
|
|
||||||
fill: currentColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-navigation li.active > a,
|
|
||||||
.main-navigation li.is-hovered > a {
|
|
||||||
background: #389ed9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-navigation .dropdown-menu {
|
|
||||||
left: 10px;
|
|
||||||
right: 15px;
|
|
||||||
min-width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-navigation .nav-icon {
|
|
||||||
margin-right: 15px;
|
margin-right: 15px;
|
||||||
width: 24px;
|
width: 24px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
fill: hsl(206,7%,37%);
|
fill: hsl(206,7%,37%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-navigation .nav-item-name {
|
.menu-item-name {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-navigation .dropdown-icon {
|
|
||||||
fill: hsl(206,7%,37%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tasks {
|
.tasks {
|
||||||
background: #2c2d36;
|
background: #2c2d36;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
|
Binary file not shown.
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 51 KiB |
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 7.2 KiB |
Loading…
Reference in a new issue