2019-12-08 00:32:00 +05:30
|
|
|
|
@import '~app/components/ui/colors.scss';
|
|
|
|
|
@import '~app/components/ui/fonts.scss';
|
2016-01-09 21:17:21 +05:30
|
|
|
|
|
2016-01-10 05:34:44 +05:30
|
|
|
|
.authInfo {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
// Отступы сверху и снизу разные т.к. мы ужимаем высоту линии строки с логином на 2 пикселя и из-за этого теряем отступ снизу
|
|
|
|
|
padding: 5px 20px 7px;
|
|
|
|
|
text-align: left;
|
2016-01-10 05:34:44 +05:30
|
|
|
|
}
|
|
|
|
|
|
2016-01-09 21:17:21 +05:30
|
|
|
|
.authInfoAvatar {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
$size: 30px;
|
2016-01-10 05:34:44 +05:30
|
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
|
float: left;
|
|
|
|
|
height: $size;
|
|
|
|
|
width: $size;
|
|
|
|
|
font-size: $size;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
color: #aaa;
|
2016-01-09 21:17:21 +05:30
|
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
|
img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2016-01-09 21:17:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.authInfoTitle {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #666;
|
2016-01-09 21:17:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.authInfoEmail {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
font-family: $font-family-title;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
line-height: 16px;
|
|
|
|
|
color: #fff;
|
2016-01-09 21:17:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
2016-01-19 02:17:32 +05:30
|
|
|
|
.permissionsContainer {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
padding: 15px 12px;
|
|
|
|
|
text-align: left;
|
2016-01-19 02:17:32 +05:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.permissionsTitle {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
font-family: $font-family-title;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
color: #dd8650;
|
|
|
|
|
padding-bottom: 6px;
|
2016-01-09 21:17:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.permissionsList {
|
2019-11-27 14:33:32 +05:30
|
|
|
|
list-style: none;
|
|
|
|
|
margin-top: 10px;
|
2016-01-09 21:17:21 +05:30
|
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
|
li {
|
|
|
|
|
color: #a9a9a9;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
padding-bottom: 4px;
|
|
|
|
|
padding-left: 17px;
|
|
|
|
|
position: relative;
|
2016-01-10 05:34:44 +05:30
|
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
|
&:last-of-type {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
2016-01-09 21:17:21 +05:30
|
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
|
&:before {
|
|
|
|
|
content: '• ';
|
|
|
|
|
color: lighter($light_violet);
|
|
|
|
|
font-size: 39px; // ~ 9px
|
|
|
|
|
line-height: 9px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 6px;
|
|
|
|
|
left: -4px;
|
2016-01-09 21:17:21 +05:30
|
|
|
|
}
|
2019-11-27 14:33:32 +05:30
|
|
|
|
}
|
2016-01-09 21:17:21 +05:30
|
|
|
|
}
|