zotero-better-notes/addon/chrome/skin/default/Knowledge4Zotero/workspace.css

62 lines
852 B
CSS

.form {
display: flex;
}
.form > div {
display: inline-block;
vertical-align: top;
}
#treeview {
margin-top: 10px;
}
.drive-header {
min-height: auto;
padding: 0;
cursor: default;
}
.drive-panel {
padding: 20px 0px 20px 30px;
font-size: 115%;
font-weight: bold;
border-right: 1px solid rgba(165, 165, 165, 0.4);
height: 100%;
}
.drive-panel:last-of-type {
border-right: none;
}
ul,
li {
display: list-item;
}
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
bottom: 100%;
left: 50%;
margin-left: -60px;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}