Last active
August 29, 2015 14:21
-
-
Save mkotb/e40045d8656da063053f to your computer and use it in GitHub Desktop.
CSS to make Microsoft's Skype Client less of a sidebar and more of an actual client
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("mail.live.com") { | |
.sidebar { | |
border-left-color: #CCC; | |
background-color: #F3F3F3; | |
width: 1720px; | |
position: fixed; | |
right: -300px; | |
bottom: 0px; | |
top: 40px; | |
z-index: 100; | |
display: none; | |
cursor: default; | |
} | |
.RecentConversationsControl_ContactDisplayName, .RecentConversationsControl_MessageText, .RecentConversationsControl_Time, .RecentConversationsControl_ConnectedToText, .RecentConversationsControl_ConnectedToAddLink { | |
overflow: hidden; | |
} | |
.RecentConversationsControl_ContactDisplayName { | |
line-height: 20px; | |
width: 1600px; | |
margin-top: -1px; | |
} | |
.RecentConversationsControl_Time { | |
width: 1220px; | |
text-align: right; | |
padding-top: 3px; | |
} | |
.RecentConversationsControl_MessageText { | |
float: left; | |
min-height: 20px; | |
line-height: 20px; | |
margin-right: 10px; | |
width: 400px; | |
} | |
.ModernConversationControlBottom { | |
position: absolute; | |
bottom: -4px; | |
width: 1600px; | |
margin-bottom: 20px; | |
} | |
textarea.ModernConversationInputControl_TextBox { | |
height: 39px; | |
width: 1600px !important; | |
color: #000; | |
padding-left: 10px; | |
padding-right: 10px; | |
padding-top: 5px; | |
margin-left: 10px; | |
margin-right: 10px; | |
margin-bottom: 10px; | |
border-color: #BABABA; | |
border-width: 1px; | |
border-style: solid; | |
overflow: auto; | |
font-size: 100%; | |
line-height: 20px; | |
resize: none; | |
} | |
.EmoticonLaunchImage { | |
margin-top: 10px; | |
margin-bottom: 10px; | |
height: 16px; | |
width: 16px; | |
vertical-align: middle; | |
cursor: pointer; | |
margin-left: 10px; | |
float: right; | |
} | |
.ModernConversationControlBottom { | |
position: absolute; | |
bottom: -4px; | |
margin-bottom: 20px; | |
width: 1630px; | |
} | |
.ModernConversationHistoryControl { | |
position: absolute; | |
top: 130px; | |
bottom: 125px !important; | |
width: 1630px; | |
margin-bottom: 5px; | |
overflow-y: auto; | |
word-wrap: break-word; | |
outline: medium none; | |
} | |
.ModernConversationHistoryItem { | |
display: block; | |
position: relative; | |
cursor: default; | |
margin-bottom: 10px; | |
margin-left: 10px; | |
padding-top: 4px; | |
padding-left: 10px; | |
padding-right: 10px; | |
width: 1600px; | |
} | |
.ModernConversationHistoryItemNode_Sender { | |
text-align: left; | |
opacity: 0.7; | |
} | |
.ModernConversationHistoryItemNode_Sender { | |
padding-bottom: 3px; | |
margin-left: 0px; | |
white-space: nowrap; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
} | |
.ModernConversationControl_Header .ModernConversationControl_ContactDetails .TitleAndNetwork { | |
float: left; | |
max-width: 1500px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment