0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-05 13:58:58 -05:00
penpot/resources/styles/partials/dashboard-bar.scss

74 lines
1.2 KiB
SCSS
Raw Normal View History

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;
.dashboard-info {
align-items: center;
display: flex;
.dashboard-projects {
font-weight: bold;
margin-right: $medium;
}
.sort-by {
margin-left: $small;
}
.input-select {
background-color: transparent;
border-color: $color-gray;
margin-bottom: 0;
margin-left: $medium;
padding: 3px 15px 3px 3px;
}
}
.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
}
}
}
2016-02-18 16:33:54 +01: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
}