1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #contacts_container {
- cursor: default;
-
- > ul#contacts {
- position: absolute;
- top: 31px;
- bottom: 0px;
- width: 100%;
- margin: 0px;
- padding: 0px;
- overflow-y: scroll;
- overflow-x: hidden;
- }
-
- .clickable {
- cursor: pointer;
- }
- }
-
- #contacts {
-
- >li {
- list-style-type: none;
- text-align: left;
- white-space: nowrap;
- color: #FFF;
- font-size: 10pt;
- padding: 7px 10px;
- margin: 2px;
-
- &:hover,
- &:active {
- background: $toolbarSelectBackground;
- }
-
- > p {
- display: inline-block;
- vertical-align: middle;
- margin: 0px;
- }
- }
- }
-
-
- .avatar {
- padding: 0px;
- margin-right: 10px;
- vertical-align: middle;
- font-size: 22pt;
- border-radius: 20px;
- max-height: 30px;
- max-width: 30px;
- }
|