2019-12-07 21:02:00 +02:00
|
|
|
@import '~app/components/ui/colors.scss';
|
2016-11-06 02:35:09 +03:00
|
|
|
|
2016-06-05 14:00:43 +03:00
|
|
|
.loggedInPanel {
|
2016-11-05 12:57:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.activeAccount {
|
2019-11-27 11:03:32 +02:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
2016-11-05 12:57:01 +02:00
|
|
|
|
2019-11-27 11:03:32 +02:00
|
|
|
$border: 1px solid rgba(#fff, 0.15);
|
|
|
|
border-left: $border;
|
|
|
|
border-right: $border;
|
2016-11-11 09:39:01 +02:00
|
|
|
}
|
|
|
|
|
2016-11-11 11:23:55 +03:00
|
|
|
.activeAccountButton {
|
2019-12-07 21:02:00 +02:00
|
|
|
composes: green from '~app/components/ui/buttons.scss';
|
2016-11-11 11:23:55 +03:00
|
|
|
}
|
|
|
|
|
2016-11-11 09:39:01 +02:00
|
|
|
.activeAccountExpanded {
|
2019-11-27 11:03:32 +02:00
|
|
|
.activeAccountButton {
|
|
|
|
background-color: darker($green);
|
|
|
|
}
|
2016-11-11 11:23:55 +03:00
|
|
|
|
2019-11-27 11:03:32 +02:00
|
|
|
.accountSwitcherContainer {
|
|
|
|
display: block;
|
|
|
|
}
|
2016-11-06 02:35:09 +03:00
|
|
|
|
2019-11-27 11:03:32 +02:00
|
|
|
.expandIcon {
|
|
|
|
transform: rotate(-180deg);
|
|
|
|
}
|
2016-06-05 14:00:43 +03:00
|
|
|
}
|
2016-03-02 00:01:56 +03:00
|
|
|
|
|
|
|
.userIcon {
|
2019-12-07 21:02:00 +02:00
|
|
|
composes: user from '~app/components/ui/icons.scss';
|
2016-03-02 00:01:56 +03:00
|
|
|
|
2019-11-27 11:03:32 +02:00
|
|
|
position: relative;
|
|
|
|
bottom: 2px;
|
2016-03-02 00:01:56 +03:00
|
|
|
|
2019-11-27 11:03:32 +02:00
|
|
|
padding-right: 5px;
|
2016-03-02 00:01:56 +03:00
|
|
|
}
|
|
|
|
|
2016-11-05 12:57:01 +02:00
|
|
|
.expandIcon {
|
2019-12-07 21:02:00 +02:00
|
|
|
composes: caret from '~app/components/ui/icons.scss';
|
2016-11-05 12:57:01 +02:00
|
|
|
|
2019-11-27 11:03:32 +02:00
|
|
|
margin-left: 4px;
|
|
|
|
font-size: 6px;
|
|
|
|
color: #ccc;
|
|
|
|
transition: 0.2s;
|
2016-11-05 12:57:01 +02:00
|
|
|
}
|
|
|
|
|
2016-03-02 00:01:56 +03:00
|
|
|
.userName {
|
|
|
|
}
|
|
|
|
|
2016-11-05 12:57:01 +02:00
|
|
|
.accountSwitcherContainer {
|
2019-11-27 11:03:32 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
|
|
|
right: -2px;
|
|
|
|
cursor: auto;
|
2016-03-02 00:01:56 +03:00
|
|
|
|
2019-11-27 11:03:32 +02:00
|
|
|
display: none;
|
2016-03-02 00:01:56 +03:00
|
|
|
}
|