nextcloud/apps/bookmarks/css/bookmarks.css

74 lines
1.3 KiB
CSS
Raw Normal View History

2011-08-16 00:05:07 +04:00
#content { overflow: auto; }
.bookmarks_headline {
font-size: large;
font-weight: bold;
margin-left: 2em;
padding: 2.5ex 0.5ex;
}
.bookmarks_menu {
margin-left: 1.5em;
padding: 0.5ex;
}
.bookmarks_add {
display: none;
margin-top: 45px;
}
.bookmarks_list {
2012-02-02 00:19:31 +04:00
margin-top: 2.8em;
2011-08-16 00:05:07 +04:00
}
.bookmarks_addBml {
text-decoration: underline;
}
2011-08-16 00:05:07 +04:00
.bookmarks_label {
width: 7em;
display: inline-block;
text-align: right;
}
.bookmarks_input {
width: 20em;
}
.bookmark_actions {
2012-02-02 00:19:31 +04:00
position: absolute;
right: 1em;
top: 0.7em;
display: none;
}
2012-02-02 00:19:31 +04:00
.bookmark_actions span { margin: 0 0.4em; }
.bookmark_actions img { opacity: 0.3; }
.bookmark_actions img:hover { opacity: 1; cursor: pointer; }
2011-08-16 00:05:07 +04:00
.bookmark_single {
2012-02-02 00:19:31 +04:00
position: relative;
padding: 0.5em 1em;
2012-02-02 00:19:31 +04:00
border-bottom: 1px solid #DDD;
-webkit-transition:background-color 500ms; -moz-transition:background-color 500ms; -o-transition:background-color 500ms; transition:background-color 500ms;
2011-08-16 00:05:07 +04:00
}
.bookmark_single:hover {
2012-02-02 00:19:31 +04:00
background-color:#f8f8f8
}
.bookmark_single:hover .bookmark_actions {
display: block;
2011-08-16 00:05:07 +04:00
}
2012-02-02 00:19:31 +04:00
.bookmark_title { font-weight: bold; display: inline-block; margin-right: 0.8em; }
.bookmark_url { display: none; color: #999; }
.bookmark_single:hover .bookmark_url { display: inline; }
2011-08-16 00:05:07 +04:00
.bookmark_tag {
2011-08-16 00:05:07 +04:00
color: #ff3333;
2011-08-25 14:55:13 +04:00
}
.loading_meta {
display: none;
margin-left: 5px;
}