78 lines
1.3 KiB
CSS
78 lines
1.3 KiB
CSS
.colorOption {
|
|
width: 40px;
|
|
height: 40px;
|
|
margin: 10px;
|
|
cursor: pointer;
|
|
border-radius: 50%;
|
|
-webkit-border-radius: 50%;
|
|
}
|
|
|
|
.initial {
|
|
font-size: 20px;
|
|
line-height: 1em;
|
|
text-align: center;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
#profileList {
|
|
display: none;
|
|
position: absolute;
|
|
top: 60px;
|
|
right: 10px;
|
|
min-width: 250px;
|
|
height: 400px;
|
|
padding: 5px;
|
|
background-color: var(--card-bg-color);
|
|
box-shadow: 0 0 4px var(--scrollbar-color-hover);
|
|
}
|
|
|
|
#profileList:focus {
|
|
display: inline;
|
|
outline: none;
|
|
}
|
|
|
|
.profileWrapper {
|
|
margin-top: 60px;
|
|
height: 340px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.profile {
|
|
cursor: pointer;
|
|
height: 50px;
|
|
-webkit-transition: background 0.2s ease-out;
|
|
-moz-transition: background 0.2s ease-out;
|
|
-o-transition: background 0.2s ease-out;
|
|
transition: background 0.2s ease-out;
|
|
}
|
|
|
|
.profile:hover {
|
|
background-color: var(--side-nav-hover-color);
|
|
-moz-transition: background 0.2s ease-in;
|
|
-o-transition: background 0.2s ease-in;
|
|
transition: background 0.2s ease-in;
|
|
}
|
|
|
|
.profile .colorOption {
|
|
float: left;
|
|
position: relative;
|
|
bottom: 5px;
|
|
}
|
|
|
|
.profileName {
|
|
line-height: 50px;
|
|
}
|
|
|
|
.profileListTitle {
|
|
position: absolute;
|
|
top: -15px;
|
|
left: 10px;
|
|
}
|
|
|
|
.profileSettings {
|
|
float: right;
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 5px;
|
|
}
|