1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2024-08-13 17:03:51 -04:00
This commit is contained in:
Lance Stout 2013-12-20 10:09:19 -08:00
parent dc607f886f
commit 87da4b4d85
4 changed files with 21 additions and 2 deletions

View File

@ -558,6 +558,7 @@ button.secondary:hover:not(:disabled) {
left: 0px; left: 0px;
width: 200px; width: 200px;
background-color: #0b1316; background-color: #0b1316;
border-right: 1px solid #eee;
z-index: 300; z-index: 300;
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; overflow-x: hidden;
@ -1052,7 +1053,8 @@ button.secondary:hover:not(:disabled) {
padding: 0px; padding: 0px;
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; overflow-x: hidden;
position: fixed; position: absolute;
width: 100%;
top: 0px; top: 0px;
bottom: 55px; bottom: 55px;
padding-top: 75px; padding-top: 75px;
@ -1507,12 +1509,19 @@ rgba(0,0,0,0.7)
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
transition: all 0.25s;
} }
#me .status:before { #me .status:before {
content: '-'; content: '-';
padding-left: 5px; padding-left: 5px;
padding-right: 5px; padding-right: 5px;
} }
#me .status:empty {
font-style: italic;
}
#me .status:empty:before {
content: '- Update your status';
}
#me .name:focus, #me .name:focus,
#me .status:focus { #me .status:focus {
background-color: #fffcea; background-color: #fffcea;

View File

@ -173,7 +173,8 @@
padding: 0px padding: 0px
overflow-y: auto overflow-y: auto
overflow-x: hidden overflow-x: hidden
position: fixed position: absolute
width: 100%
top: 0px top: 0px
bottom: 55px bottom: 55px
padding-top: 75px padding-top: 75px

View File

@ -43,11 +43,19 @@
overflow: hidden overflow: hidden
text-overflow: ellipsis text-overflow: ellipsis
transition: all .25s
&:before &:before
content: '-' content: '-'
padding-left: 5px padding-left: 5px
padding-right: 5px padding-right: 5px
&:empty
font-style: italic
&:before
content: '- Update your status'
.name, .name,
.status .status
&:focus &:focus

View File

@ -8,6 +8,7 @@
left: 0px left: 0px
width: 200px width: 200px
background-color: $blue-saturated-darker background-color: $blue-saturated-darker
border-right: 1px solid $gray-lighter
z-index: 300 z-index: 300
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; overflow-x: hidden;