Skip to content

Instantly share code, notes, and snippets.

@jessegavin
Created February 24, 2016 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jessegavin/809ca5745beda204fd7f to your computer and use it in GitHub Desktop.
Save jessegavin/809ca5745beda204fd7f to your computer and use it in GitHub Desktop.
body {
margin-bottom: 23px;
white-space: normal !important;
}
ul {
list-style-type: none;
padding: 0px;
margin: 0px 0px 0px 26px;
}
li {
position: relative;
}
.hoverable {
transition: background-color .2s ease-out 0s;
-webkit-transition: background-color .2s ease-out 0s;
display: inline-block;
}
.hovered {
transition-delay: .2s;
-webkit-transition-delay: .2s;
}
.selected {
outline-style: solid;
outline-width: 1px;
outline-style: dotted;
}
.collapsed>.collapsible {
display: none;
}
.ellipsis {
display: none;
}
.collapsed>.ellipsis {
display: inherit;
}
.collapser {
position: absolute;
top: 1px;
left: -1.5em;
cursor: default;
user-select: none;
-webkit-user-select: none;
}
.status {
position: fixed;
left: 0px;
bottom: 0px;
min-width: 628px;
border-color: #c2c2c2;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 0px;
border-left-width: 0px;
border-style: solid;
border-top-right-radius: 4px;
height: 16px;
padding-top: 2px;
padding-bottom: 2px;
padding-right: 7px;
padding-left: 4px;
font-family: sans-serif;
font-size: 12px;
opacity: 0;
background-color: #d2d2f6;
color: #696969;
transition: opacity .2s ease-out;
-webkit-transition: opacity .2s ease-out;
user-select: none;
-webkit-user-select: none;
}
.status:not(:empty ) {
opacity: 1;
}
.toolbox {
font-family: sans-serif;
font-size: 13px;
opacity: .25;
background-color: #d2d2f6;
position: fixed;
right: 0px;
top: 0px;
border-color: #c2c2c2;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-width: 0px;
border-right-width: 0px;
border-style: solid;
border-bottom-left-radius: 4px;
padding-bottom: 3px;
transition: opacity .2s ease-out;
-webkit-transition: opacity .2s ease-out;
cursor: default;
user-select: none;
-webkit-user-select: none;
padding-left: 2px;
}
.toolbox:hover {
opacity: 1;
}
.toolbox>* {
padding-left: 3px;
padding-right: 3px;
}
.toolbox>a {
padding-left: 5px;
}
.toolbox>img {
height: 14px;
vertical-align: bottom;
cursor: pointer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment