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/.
|
|
|
|
//
|
|
|
|
// Copyright (c) 2015-2016 Andrey Antukh <niwi@niwi.nz>
|
|
|
|
// Copyright (c) 2015-2016 Juan de la Cruz <delacruzgarciajuan@gmail.com>
|
|
|
|
|
2015-06-18 19:35:50 +02:00
|
|
|
.dashboard-bar {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
font-size: $fs14;
|
|
|
|
padding: $small $medium $small $x-big*2;
|
|
|
|
|
2016-05-24 16:49:00 +03:00
|
|
|
.dashboard-images {
|
|
|
|
flex-basis: 70px;
|
|
|
|
}
|
|
|
|
|
2015-06-18 19:35:50 +02:00
|
|
|
.dashboard-info {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2016-05-24 16:49:00 +03:00
|
|
|
width: 500px;
|
|
|
|
justify-content: space-around;
|
2015-06-18 19:35:50 +02:00
|
|
|
|
|
|
|
.dashboard-projects {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-right: $medium;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sort-by {
|
|
|
|
margin-left: $small;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-select {
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: $color-gray;
|
2016-11-15 09:26:17 +01:00
|
|
|
font-size: $fs14;
|
2015-06-18 19:35:50 +02:00
|
|
|
margin-bottom: 0;
|
|
|
|
margin-left: $medium;
|
2016-11-15 09:26:17 +01:00
|
|
|
padding: 3px 25px 3px 3px;
|
2015-06-18 19:35:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-search {
|
2016-02-18 16:33:54 +01:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
margin-left: $small;
|
|
|
|
|
|
|
|
.input-text {
|
|
|
|
background: rgba(255,255,255,.4);
|
|
|
|
border: 0;
|
2016-02-19 19:41:33 +01:00
|
|
|
color: $intense-ui-text;
|
2016-02-18 16:33:54 +01:00
|
|
|
padding: 4px 8px;
|
|
|
|
margin: 0;
|
|
|
|
max-width: 160px;
|
|
|
|
}
|
2015-06-18 19:35:50 +02:00
|
|
|
|
2016-02-18 16:33:54 +01:00
|
|
|
.clear-search {
|
|
|
|
align-items: center;
|
|
|
|
background: rgba(255,255,255,.4);
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
height: 28px;
|
|
|
|
padding: 0 5px;
|
|
|
|
|
|
|
|
svg {
|
2016-02-19 19:41:33 +01:00
|
|
|
fill: $medium-ui-icons;
|
2016-02-18 16:33:54 +01:00
|
|
|
height: 15px;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
width: 15px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
fill: $color-danger;
|
|
|
|
}
|
2015-06-18 19:35:50 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-12-15 22:56:03 +01:00
|
|
|
&.library-gap {
|
|
|
|
padding: $small $medium $small 270px;
|
2015-12-15 12:58:49 +01:00
|
|
|
}
|
|
|
|
|
2015-06-18 19:35:50 +02:00
|
|
|
}
|