icingaweb2/public/css/icinga/menu.less

270 lines
4.3 KiB
Plaintext
Raw Normal View History

/*! Icinga Web 2 | (c) 2014 Icinga Development Team | GPLv2+ */
2014-02-03 17:03:05 +01:00
#menu [class^="icon-"],
#menu [class*=" icon-"] {
&:before {
width: 1.5em;
}
}
@icon-width: 1.7em; // 1.5em width + 0.2em right margin
#menu {
height: 100%;
overflow: auto;
}
2014-02-03 17:03:05 +01:00
#menu a {
&:focus {
color: @icinga-blue;
outline-offset: -3px;
}
&:hover {
color: @icinga-blue;
text-decoration: none;
}
}
#menu .active > a {
2015-09-27 17:41:57 +02:00
color: @icinga-blue;
2014-02-03 17:03:05 +01:00
}
#menu .nav-level-1 > .nav-item {
border-left: 5px solid transparent;
line-height: 2.167em; // 26 px
2014-02-03 17:03:05 +01:00
&.active {
> a > .badge {
display: none;
}
.nav-level-2 > li {
// Expand menu if active
display: block;
}
2015-09-27 16:34:33 +02:00
background-color: @body-bg-color;
border-color: @icinga-blue;
}
2015-09-27 16:34:33 +02:00
&.no-icon > a {
margin-left: @icon-width;
}
> a {
padding: 0.5em 0.5em; // 6px 6px
}
> a:active ~ .nav-level-2 > li {
display: block;
}
2015-09-27 16:34:33 +02:00
}
#menu .nav-level-2 > .nav-item {
// Collapse menu by default
2015-09-27 16:34:33 +02:00
display: none;
line-height: 1.833em; // 22px
margin-left: @icon-width;
2015-09-27 16:34:33 +02:00
> a {
font-size: @font-size-small;
padding: 0.364em 0.545em; // 4px 6px
}
2014-02-03 17:03:05 +01:00
}
.no-js #menu .nav-level-2 > .nav-item {
// Expand menu if JavaScript is disabled
2014-02-03 17:03:05 +01:00
display: block;
}
#menu img.icon {
line-height: 1;
margin: 0 0.2em;
2014-02-03 17:03:05 +01:00
width: 1em;
2015-09-27 16:34:33 +02:00
}
#menu .user-nav-item {
background-color: @gray-light;
}
#menu input.search {
background: transparent url('../img/icons/search.png') no-repeat 0.7em center;
background-size: 1em auto;
border: none;
border-left: 5px solid transparent;
line-height: 2.167em;
padding-left: @icon-width + 0.5em;
width: 100%;
2014-02-18 19:39:54 +01:00
&.active {
background-color: @body-bg-color;
border-color: @icinga-blue;
}
2014-02-18 19:39:54 +01:00
}
// Badge offset correction
#menu > nav > .nav-level-1 > .badge-nav-item > a > .badge {
margin-top: 0.2em;
2014-03-27 20:39:04 +01:00
}
#menu .nav-level-2 > .badge-nav-item > a > .badge {
margin-top: 0.2em;
2014-03-27 20:39:04 +01:00
}
// Hovered menu
2014-03-27 20:39:04 +01:00
#menu .nav-level-1 > .nav-item.hover {
position: relative;
2014-03-27 20:39:04 +01:00
&:before {
border: 0.5em solid rgba(0, 0, 0, 0);
border-right-color: @text-color;
content: "";
position: absolute;
right: 0;
top: 30%;
}
2014-03-27 20:39:04 +01:00
> .nav-level-2 {
background-color: @text-color;
color: @text-color-inverted;
left: 100%;
padding: @vertical-padding 0;
position: absolute;
top: 0;
width: 14em;
> .nav-item {
display: block;
margin-left: 0.5em;
2014-03-27 20:39:04 +01:00
> a:hover {
color: @text-color-inverted;
text-decoration: underline;
}
}
}
2014-03-27 20:39:04 +01:00
> a > .badge {
display: none;
}
2014-03-27 20:39:04 +01:00
}
#layout.hoveredmenu {
#main {
z-index: 2;
2014-03-27 20:39:04 +01:00
}
2014-03-27 20:39:04 +01:00
#sidebar {
z-index: 3;
2014-03-27 20:39:04 +01:00
}
#menu {
overflow: visible;
}
}
// Accessibility skip links
.skip-links {
2015-03-13 04:18:31 +01:00
position: relative;
ul {
list-style-type: none;
margin: 0;
padding: 0;
li {
2015-03-13 04:18:31 +01:00
display: block;
a, button[type="submit"] {
background-color: @body-bg-color;
2016-11-16 12:54:38 +01:00
border: none;
left: -999px;
padding: @vertical-padding @horizontal-padding;
2015-03-13 04:18:31 +01:00
position: absolute;
width: 100%;
2016-11-16 12:54:38 +01:00
z-index: 1;
&:focus {
left: 0;
2016-11-16 12:54:38 +01:00
outline-offset: -3px;
}
}
2015-03-13 04:18:31 +01:00
button[type="submit"] {
text-align: left;
}
}
}
}
2015-11-16 14:21:08 +01:00
#sidebar.expanded {
bottom: 0 !important;
height: auto !important;
}
.search-control {
position: relative;
}
.search-reset {
background: none;
border: 0;
cursor: pointer;
display: none;
height: 100%;
padding: 0;
position: absolute;
right: 0;
top: 0;
user-select: none;
}
.search-reset:focus {
outline: 0;
}
// Override forms.less
input[type=text].search-input {
padding-right: 1.4em;
text-overflow: ellipsis;
transition: none;
}
.search-input:-moz-placeholder { // FF 18-
color: @gray-light;
}
.search-input::-moz-placeholder { // FF 19+
color: @gray-light;
}
.search-input:-ms-input-placeholder {
color: @gray-light;
}
.search-input::-webkit-input-placeholder {
color: @gray-light;
}
.search-input:valid ~ .search-reset {
animation-duration: .4s;
animation-name: search-reset-in;
display: block;
}
.search-input:invalid,
.search-input:-moz-submit-invalid,
.search-input:-moz-ui-invalid {
// Disable glow
box-shadow: none;
}
@keyframes search-reset-in {
0% {
opacity: 0;
transform: translate3d(-20%, 0, 0);
}
100% {
opacity: 1;
transform: none;
}
}