2016-03-01 20:39:13 +02:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
//
|
2023-03-01 16:00:34 +01:00
|
|
|
// Copyright (c) KALEIDOS INC
|
2016-03-01 20:39:13 +02:00
|
|
|
|
2015-06-18 19:35:50 +02:00
|
|
|
.tool-bar {
|
2020-04-14 10:15:39 +02:00
|
|
|
background-color: $color-gray-40;
|
2015-06-18 19:35:50 +02:00
|
|
|
bottom: 0;
|
|
|
|
height: 100%;
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
width: 50px;
|
|
|
|
z-index: 10;
|
|
|
|
|
|
|
|
.tool-bar-inside {
|
|
|
|
padding-top: 70px;
|
|
|
|
|
|
|
|
.main-tools {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
li {
|
|
|
|
cursor: pointer;
|
2021-10-05 10:16:44 +02:00
|
|
|
margin-bottom: $size-5;
|
2015-06-18 19:35:50 +02:00
|
|
|
|
|
|
|
svg {
|
2020-04-14 10:15:39 +02:00
|
|
|
fill: $color-gray-20;
|
2015-06-18 19:35:50 +02:00
|
|
|
height: 25px;
|
|
|
|
width: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
svg {
|
|
|
|
fill: $color-white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.current {
|
|
|
|
svg {
|
|
|
|
fill: $color-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|