0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 23:18:48 -05:00
penpot/frontend/resources/styles/main/partials/activity-bar.scss

78 lines
1.5 KiB
SCSS
Raw Normal View History

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/.
//
2022-09-20 23:23:22 +02:00
// Copyright (c) KALEIDOS INC
2016-03-01 20:39:13 +02:00
2015-06-18 19:35:50 +02:00
.activity-bar {
2020-03-03 13:14:37 +01:00
background-color: $color-gray-50;
2015-06-18 19:35:50 +02:00
bottom: 0;
height: 100%;
position: fixed;
right: 0;
width: 250px;
.activity-bar-inside {
align-items: center;
display: flex;
flex-direction: column;
overflow-y: auto;
padding-top: 70px;
}
h4 {
2020-04-14 10:15:39 +02:00
color: $color-gray-40;
2015-06-18 19:35:50 +02:00
font-size: $fs16;
font-weight: $fw700;
2021-10-05 10:16:44 +02:00
margin-bottom: $size-1;
2015-06-18 19:35:50 +02:00
}
.date-ribbon {
2020-04-14 10:15:39 +02:00
background-color: lighten($color-gray-20, 12%);
2015-06-18 19:35:50 +02:00
color: $color-white;
font-size: $fs12;
font-weight: $fw700;
2015-06-18 19:35:50 +02:00
padding: 2px;
text-align: center;
width: 100%;
}
.activity-input {
2020-04-14 10:15:39 +02:00
border-bottom: 1px solid $color-gray-10;
2015-06-18 19:35:50 +02:00
display: flex;
2021-10-05 12:59:00 +02:00
font-size: $fs12;
2021-10-05 10:16:44 +02:00
padding: $size-2;
2015-06-18 19:35:50 +02:00
width: 100%;
img.activity-author {
border-radius: 50%;
flex-shrink: 0;
height: 30px;
2021-10-05 10:16:44 +02:00
margin-right: $size-4;
2015-06-18 19:35:50 +02:00
width: 30px;
}
.activity-content {
display: flex;
flex-direction: column;
.activity-project {
align-items: center;
display: flex;
flex-wrap: wrap;
a {
font-weight: $fw700;
2015-06-18 19:35:50 +02:00
margin: 0 3px;
}
}
.activity-time {
2020-04-14 10:15:39 +02:00
color: $color-gray-20;
2021-10-05 12:59:00 +02:00
font-size: $fs12;
2015-06-18 19:35:50 +02:00
font-style: italic;
}
}
}
}