forked from Archives/Athou_commafeed
162 lines
2.4 KiB
SCSS
162 lines
2.4 KiB
SCSS
/* feed search dialog */
|
|
.feed-search-dialog .modal-body {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.feed-search-dialog .filter-input {
|
|
width: 90%;
|
|
}
|
|
|
|
.feed-search-dialog .feed-link {
|
|
font-size: large;
|
|
}
|
|
|
|
.feed-search-dialog a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.feed-search-dialog .focus a {
|
|
color: black;
|
|
}
|
|
|
|
/* tree*/
|
|
.sidebar-nav-fixed {
|
|
margin-top: 10px;
|
|
width: 250px;
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sidebar-nav-fixed:hover {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.sidebar-nav-fixed .ui-resizable-e {
|
|
width: 5px;
|
|
right: 0;
|
|
}
|
|
|
|
.full-screen .left-menu {
|
|
display: none;
|
|
}
|
|
|
|
.css-treeview {
|
|
margin-top: 15px;
|
|
margin-bottom: 30px;
|
|
font-family: inherit;
|
|
font-size: 13px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.css-treeview ul {
|
|
list-style: none;
|
|
margin-left: 0px;
|
|
padding: 0;
|
|
}
|
|
|
|
.css-treeview li {
|
|
line-height: 20px;
|
|
}
|
|
|
|
.css-treeview .fldr {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
width: 14px;
|
|
height: 14px;
|
|
line-height: 14px;
|
|
vertical-align: text-top;
|
|
margin-top: 1px;
|
|
}
|
|
|
|
.css-treeview .error {
|
|
color: red;
|
|
font-style: italic;
|
|
}
|
|
|
|
.css-treeview label {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: block;
|
|
margin: 3px 0px 3px;
|
|
}
|
|
|
|
.css-treeview label,
|
|
.css-treeview a,
|
|
.css-treeview label::before {
|
|
font-family: inherit;
|
|
font-size: 12px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.css-treeview .selected {
|
|
color: #d14836;
|
|
}
|
|
|
|
.css-treeview .unread {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.css-treeview .unread-counter {
|
|
color: #666;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.css-treeview .unread ~ .unread-counter::before {
|
|
content: "(";
|
|
}
|
|
|
|
.css-treeview .unread ~ .unread-counter::after {
|
|
content: ")";
|
|
}
|
|
|
|
.css-treeview a {
|
|
cursor: pointer;
|
|
color: black;
|
|
display: block;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.css-treeview a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.css-treeview li .tree-item:hover {
|
|
background-color: #ebebeb;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.css-treeview .config {
|
|
display: none;
|
|
}
|
|
|
|
.css-treeview .tree-item:hover .config {
|
|
display: block;
|
|
padding-top: 3px;
|
|
margin-right: 5px;
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
.css-treeview .indent1 {
|
|
padding-left: 16px;
|
|
}
|
|
|
|
.css-treeview .indent2 {
|
|
padding-left: 32px;
|
|
}
|
|
|
|
.css-treeview .indent3 {
|
|
padding-left: 48px;
|
|
}
|
|
|
|
.css-treeview .indent4 {
|
|
padding-left: 64px;
|
|
}
|
|
|
|
.css-treeview .indent5 {
|
|
padding-left: 80px;
|
|
}
|