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