1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2025-03-21 12:29:14 +01:00

add legacy leftcontent/rightcontent to bookmarks CSS - remove on switch to app-navigation/app-content

This commit is contained in:
Jan-Christoph Borchardt 2014-04-29 16:52:23 +02:00
parent 33fe4161e3
commit c028004766

View File

@ -1,3 +1,24 @@
/* LEGACY STUFF - remove on switch to app-navigation and app-content */
#leftcontent, .leftcontent {
position:relative; overflow:auto; width:256px; height:100%;
background:#f8f8f8; border-right:1px solid #ddd;
-moz-box-sizing:border-box; box-sizing:border-box;
}
#leftcontent li, .leftcontent li { background:#f8f8f8; padding:.5em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 200ms; -moz-transition:background-color 200ms; -o-transition:background-color 200ms; transition:background-color 200ms; }
#leftcontent li:hover, #leftcontent li:active, #leftcontent li.active, .leftcontent li:hover, .leftcontent li:active, .leftcontent li.active { background:#eee; }
#leftcontent li.active, .leftcontent li.active { font-weight:bold; }
#leftcontent li:hover, .leftcontent li:hover { color:#333; background:#ddd; }
#leftcontent a { height:100%; display:block; margin:0; padding:0 1em 0 0; float:left; }
#rightcontent, .rightcontent { position:fixed; top:89px; left: 336px; overflow:auto }
#controls + .leftcontent{
top: 44px;
}
#content { overflow: auto; height: 100%; }
#firstrun .bkm_hint { display: block; font-weight: normal; /*font-size: 0.5em; */ }