Misc new tree cleanup
This commit is contained in:
parent
d26eba2d2c
commit
47094fc4c3
21 changed files with 403 additions and 411 deletions
|
@ -1,8 +1,8 @@
|
|||
/*
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
|
||||
Copyright © 2019 Center for History and New Media
|
||||
George Mason University, Fairfax, Virginia, USA
|
||||
Copyright © 2019 Corporation for Digital Scholarship
|
||||
Vienna, Virginia, USA
|
||||
http://zotero.org
|
||||
|
||||
This file is part of Zotero.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/*
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
|
||||
Copyright © 2019 Center for History and New Media
|
||||
George Mason University, Fairfax, Virginia, USA
|
||||
Copyright © 2019 Corporation for Digital Scholarship
|
||||
Vienna, Virginia, USA
|
||||
http://zotero.org
|
||||
|
||||
This file is part of Zotero.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/*
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
|
||||
Copyright © 2019 Center for History and New Media
|
||||
George Mason University, Fairfax, Virginia, USA
|
||||
Copyright © 2019 Corporation for Digital Scholarship
|
||||
Vienna, Virginia, USA
|
||||
http://zotero.org
|
||||
|
||||
This file is part of Zotero.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/*
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
|
||||
Copyright © 2019 Center for History and New Media
|
||||
George Mason University, Fairfax, Virginia, USA
|
||||
Copyright © 2019 Corporation for Digital Scholarship
|
||||
Vienna, Virginia, USA
|
||||
http://zotero.org
|
||||
|
||||
This file is part of Zotero.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/*
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
|
||||
Copyright © 2019 Center for History and New Media
|
||||
George Mason University, Fairfax, Virginia, USA
|
||||
Copyright © 2019 Corporation for Digital Scholarship
|
||||
Vienna, Virginia, USA
|
||||
http://zotero.org
|
||||
|
||||
This file is part of Zotero.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/*
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
|
||||
Copyright © 2020 Center for History and New Media
|
||||
George Mason University, Fairfax, Virginia, USA
|
||||
Copyright © 2020 Corporation for Digital Scholarship
|
||||
Vienna, Virginia, USA
|
||||
http://zotero.org
|
||||
|
||||
This file is part of Zotero.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/*
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
|
||||
Copyright © 2020 Center for History and New Media
|
||||
George Mason University, Fairfax, Virginia, USA
|
||||
Copyright © 2020 Corporation for Digital Scholarship
|
||||
Vienna, Virginia, USA
|
||||
http://zotero.org
|
||||
|
||||
This file is part of Zotero.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/*
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
|
||||
Copyright © 2020 Center for History and New Media
|
||||
George Mason University, Fairfax, Virginia, USA
|
||||
Copyright © 2020 Corporation for Digital Scholarship
|
||||
Vienna, Virginia, USA
|
||||
http://zotero.org
|
||||
|
||||
This file is part of Zotero.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/*
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
|
||||
Copyright © 2020 Center for History and New Media
|
||||
George Mason University, Fairfax, Virginia, USA
|
||||
Copyright © 2020 Corporation for Digital Scholarship
|
||||
Vienna, Virginia, USA
|
||||
http://zotero.org
|
||||
|
||||
This file is part of Zotero.
|
||||
|
|
|
@ -706,7 +706,7 @@ var ZoteroPane = new function()
|
|||
}
|
||||
}
|
||||
else if ((event.keyCode == event.DOM_VK_BACK_SPACE && Zotero.isMac) ||
|
||||
event.keyCode == event.DOM_VK_DELETE) {
|
||||
event.keyCode == event.DOM_VK_DELETE) {
|
||||
// If Cmd/Shift delete, use forced mode, which does different
|
||||
// things depending on the context
|
||||
var force = event.metaKey || (!Zotero.isMac && event.shiftKey);
|
||||
|
@ -1292,14 +1292,6 @@ var ZoteroPane = new function()
|
|||
*/
|
||||
this.itemSelected = function () {
|
||||
return Zotero.Promise.coroutine(function* () {
|
||||
// Don't select item until items list has loaded
|
||||
//
|
||||
// This avoids an error if New Item is used while the pane is first loading.
|
||||
// var promise = this.itemsView.waitForLoad();
|
||||
// if (promise.isPending()) {
|
||||
// yield promise;
|
||||
// }
|
||||
|
||||
if (!this.itemsView || !this.itemsView.selection) {
|
||||
Zotero.debug("Items view not available in itemSelected", 2);
|
||||
return false;
|
||||
|
|
|
@ -1,45 +1,45 @@
|
|||
#zotero-collections-tree-container {
|
||||
height: 5.2em;
|
||||
height: 5.2em;
|
||||
}
|
||||
|
||||
#zotero-collections-tree {
|
||||
width: 100%;
|
||||
|
||||
.virtualized-table {
|
||||
overflow-y: auto;
|
||||
flex: 1 0;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
width: 100%;
|
||||
|
||||
.cell.primary {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.virtualized-table {
|
||||
overflow-y: auto;
|
||||
flex: 1 0;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
:not(.cell-text) {
|
||||
flex-shrink: 0
|
||||
}
|
||||
|
||||
.cell-text {
|
||||
flex-shrink: 1;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
input.cell-text {
|
||||
border: 1px highlight solid;
|
||||
padding: 1px 2px;
|
||||
margin-right: 5px;
|
||||
width: 100%;
|
||||
font-size: inherit;
|
||||
}
|
||||
.cell.primary {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.cell-icon {
|
||||
min-width: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.row.editing .cell {
|
||||
pointer-events: auto;
|
||||
}
|
||||
:not(.cell-text) {
|
||||
flex-shrink: 0
|
||||
}
|
||||
|
||||
.cell-text {
|
||||
flex-shrink: 1;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
input.cell-text {
|
||||
border: 1px highlight solid;
|
||||
padding: 1px 2px;
|
||||
margin-right: 5px;
|
||||
width: 100%;
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
.cell-icon {
|
||||
min-width: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.row.editing .cell {
|
||||
pointer-events: auto;
|
||||
}
|
||||
}
|
|
@ -3,45 +3,45 @@
|
|||
min-height: 150px;
|
||||
height: 150px;
|
||||
width: 290px;
|
||||
|
||||
|
||||
.items-tree-message {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
#zotero-items-tree {
|
||||
.virtualized-table-header .icon {
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
}
|
||||
|
||||
|
||||
.cell.primary {
|
||||
.retracted {
|
||||
width: 12px;
|
||||
margin-inline-start: 3px;
|
||||
}
|
||||
|
||||
.tag-swatch {
|
||||
display: inline-block;
|
||||
min-width: 8px;
|
||||
min-height: 8px;
|
||||
margin-inline-start: 3px;
|
||||
border-radius: 1px;
|
||||
}
|
||||
.retracted {
|
||||
width: 12px;
|
||||
margin-inline-start: 3px;
|
||||
}
|
||||
|
||||
.tag-swatch {
|
||||
display: inline-block;
|
||||
min-width: 8px;
|
||||
min-height: 8px;
|
||||
margin-inline-start: 3px;
|
||||
border-radius: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.cell.hasAttachment {
|
||||
box-sizing: content-box;
|
||||
padding: 0 4px;
|
||||
box-sizing: content-box;
|
||||
padding: 0 4px;
|
||||
}
|
||||
|
||||
|
||||
.cell.numNotes {
|
||||
text-align: center;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,11 +12,11 @@
|
|||
height: 0;
|
||||
flex-direction: column;
|
||||
> div {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
background-color: -moz-field;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1;
|
||||
background-color: -moz-field;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -27,103 +27,103 @@
|
|||
position: relative;
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
|
||||
&.resizing {
|
||||
cursor: col-resize;
|
||||
.cell {
|
||||
cursor: col-resize;
|
||||
}
|
||||
cursor: col-resize;
|
||||
.cell {
|
||||
cursor: col-resize;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.cell {
|
||||
min-width: 30px;
|
||||
cursor: default;
|
||||
white-space: nowrap;
|
||||
flex-grow: 1;
|
||||
flex-shrink: 1;
|
||||
box-sizing: border-box;
|
||||
|
||||
&.primary {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
min-width: 30px;
|
||||
cursor: default;
|
||||
white-space: nowrap;
|
||||
flex-grow: 1;
|
||||
flex-shrink: 1;
|
||||
box-sizing: border-box;
|
||||
|
||||
:not(.cell-text) {
|
||||
flex-shrink: 0
|
||||
}
|
||||
&.primary {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.cell-text {
|
||||
flex-shrink: 1;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
margin-inline-start: 6px;
|
||||
}
|
||||
|
||||
.twisty + .cell-text, .spacer-twisty + .cell-text {
|
||||
margin-inline-start: 0;
|
||||
}
|
||||
}
|
||||
:not(.cell-text) {
|
||||
flex-shrink: 0
|
||||
}
|
||||
|
||||
.cell-icon {
|
||||
min-width: 16px;
|
||||
}
|
||||
.cell-text {
|
||||
flex-shrink: 1;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
margin-inline-start: 6px;
|
||||
}
|
||||
|
||||
.twisty + .cell-text, .spacer-twisty + .cell-text {
|
||||
margin-inline-start: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.cell-icon {
|
||||
min-width: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
|
||||
&.drop {
|
||||
color: $shade-0 !important;
|
||||
background: $shade-5 !important;
|
||||
* {
|
||||
pointer-events: none !important;
|
||||
}
|
||||
}
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
|
||||
span.drop-before, span.drop-after {
|
||||
position: absolute;
|
||||
width: 20%;
|
||||
height: 1px;
|
||||
background-color: $shade-5;
|
||||
pointer-events: none;
|
||||
}
|
||||
span.drop-before {
|
||||
top: 0;
|
||||
}
|
||||
span.drop-after {
|
||||
bottom: -1px;
|
||||
}
|
||||
|
||||
&.selected:not(.highlighted) {
|
||||
background-color: highlight;
|
||||
color: highlighttext;
|
||||
}
|
||||
&.drop {
|
||||
color: $shade-0 !important;
|
||||
background: $shade-5 !important;
|
||||
* {
|
||||
pointer-events: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
&.highlighted {
|
||||
background: #FFFF99;
|
||||
}
|
||||
span.drop-before, span.drop-after {
|
||||
position: absolute;
|
||||
width: 20%;
|
||||
height: 1px;
|
||||
background-color: $shade-5;
|
||||
pointer-events: none;
|
||||
}
|
||||
span.drop-before {
|
||||
top: 0;
|
||||
}
|
||||
span.drop-after {
|
||||
bottom: -1px;
|
||||
}
|
||||
|
||||
&.unread {
|
||||
font-weight: bold;
|
||||
}
|
||||
&.selected:not(.highlighted) {
|
||||
background-color: highlight;
|
||||
color: highlighttext;
|
||||
}
|
||||
|
||||
&.context-row {
|
||||
color: gray;
|
||||
}
|
||||
&.highlighted {
|
||||
background: #FFFF99;
|
||||
}
|
||||
|
||||
&.unread {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
&.context-row {
|
||||
color: gray;
|
||||
}
|
||||
}
|
||||
|
||||
.column-drag-marker {
|
||||
z-index: 99999;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
width: 2px;
|
||||
background-color: #ccc;
|
||||
z-index: 99999;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
width: 2px;
|
||||
background-color: #ccc;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -137,62 +137,62 @@
|
|||
height: 14px;
|
||||
overflow: hidden;
|
||||
border-inline-end: 1px solid #ddd;
|
||||
|
||||
&.static-columns {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.column-picker {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cell {
|
||||
display: flex;
|
||||
position: relative;
|
||||
height: 100%;
|
||||
align-items: center;
|
||||
|
||||
&:hover {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
&.dragging {
|
||||
background: #e9e9e9;
|
||||
}
|
||||
|
||||
.resizer {
|
||||
background: linear-gradient(#ddd, #ddd) no-repeat center/1px 80%;
|
||||
cursor: col-resize;
|
||||
height: 100%;
|
||||
content: "\00a0";
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: -5px;
|
||||
min-width: 10px;
|
||||
}
|
||||
|
||||
.label {
|
||||
margin-inline-start: 10px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
&.cell-icon {
|
||||
> .label {
|
||||
margin-inline-start: 0;
|
||||
}
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.sort-indicator {
|
||||
-moz-appearance: toolbarbutton-dropdown;
|
||||
display: block;
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
|
||||
&.ascending {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
}
|
||||
&.static-columns {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.column-picker {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cell {
|
||||
display: flex;
|
||||
position: relative;
|
||||
height: 100%;
|
||||
align-items: center;
|
||||
|
||||
&:hover {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
&.dragging {
|
||||
background: #e9e9e9;
|
||||
}
|
||||
|
||||
.resizer {
|
||||
background: linear-gradient(#ddd, #ddd) no-repeat center/1px 80%;
|
||||
cursor: col-resize;
|
||||
height: 100%;
|
||||
content: "\00a0";
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: -5px;
|
||||
min-width: 10px;
|
||||
}
|
||||
|
||||
.label {
|
||||
margin-inline-start: 10px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
&.cell-icon {
|
||||
> .label {
|
||||
margin-inline-start: 0;
|
||||
}
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.sort-indicator {
|
||||
-moz-appearance: toolbarbutton-dropdown;
|
||||
display: block;
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
|
||||
&.ascending {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -200,17 +200,17 @@
|
|||
flex: 1 0;
|
||||
max-width: 100%;
|
||||
overflow: auto;
|
||||
|
||||
|
||||
.row {
|
||||
padding-inline-start: 6px;
|
||||
padding-inline-start: 6px;
|
||||
}
|
||||
|
||||
|
||||
.cell {
|
||||
padding: 2px 5px;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
pointer-events: none;
|
||||
min-height: 90%;
|
||||
padding: 2px 5px;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
pointer-events: none;
|
||||
min-height: 90%;
|
||||
}
|
||||
}
|
||||
.spacer-twisty {
|
||||
|
@ -224,28 +224,28 @@
|
|||
align-items: center;
|
||||
|
||||
svg {
|
||||
fill: #444;
|
||||
transition: transform 0.125s ease;
|
||||
transform: rotate(-90deg);
|
||||
fill: #444;
|
||||
transition: transform 0.125s ease;
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
|
||||
&.open svg {
|
||||
transform: rotate(0deg) !important;
|
||||
transform: rotate(0deg) !important;
|
||||
}
|
||||
}
|
||||
|
||||
*[dir=rtl] {
|
||||
.virtualized-table-header {
|
||||
.cell .sort-indicator {
|
||||
left: 10px;
|
||||
right: initial;
|
||||
}
|
||||
.resizer {
|
||||
right: -5px;
|
||||
left: initial;
|
||||
}
|
||||
.cell .sort-indicator {
|
||||
left: 10px;
|
||||
right: initial;
|
||||
}
|
||||
.resizer {
|
||||
right: -5px;
|
||||
left: initial;
|
||||
}
|
||||
}
|
||||
.twisty svg {
|
||||
transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#zotero-collections-tree-container {
|
||||
margin-bottom: -1px;
|
||||
margin-bottom: -1px;
|
||||
}
|
||||
|
||||
#zotero-collections-tree .virtualized-table .row {
|
||||
height: 1.333em;
|
||||
height: 1.333em;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#zotero-items-tree {
|
||||
.cell.hasAttachment, .cell.numNotes {
|
||||
padding: 0 8px;
|
||||
}
|
||||
.cell.hasAttachment, .cell.numNotes {
|
||||
padding: 0 8px;
|
||||
}
|
||||
}
|
|
@ -1,28 +1,28 @@
|
|||
.virtualized-table {
|
||||
border: 1px solid #ccc;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
.virtualized-table, .drag-image-container {
|
||||
.twisty {
|
||||
padding-inline-end: 3px;
|
||||
svg {
|
||||
width: 5px;
|
||||
}
|
||||
}
|
||||
.twisty {
|
||||
padding-inline-end: 3px;
|
||||
svg {
|
||||
width: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.virtualized-table-header {
|
||||
height: 28px;
|
||||
background-image: linear-gradient(#fff, #fafafa);
|
||||
|
||||
&.dragging {
|
||||
color: #666;
|
||||
background: #f8f8f8;
|
||||
}
|
||||
|
||||
.cell .sort-indicator {
|
||||
transform: scale(1.25);
|
||||
|
||||
&.ascending {
|
||||
transform: scale(1.25) rotate(180deg);
|
||||
}
|
||||
}
|
||||
height: 28px;
|
||||
background-image: linear-gradient(#fff, #fafafa);
|
||||
|
||||
&.dragging {
|
||||
color: #666;
|
||||
background: #f8f8f8;
|
||||
}
|
||||
|
||||
.cell .sort-indicator {
|
||||
transform: scale(1.25);
|
||||
|
||||
&.ascending {
|
||||
transform: scale(1.25) rotate(180deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,54 +1,54 @@
|
|||
#zotero-collections-tree {
|
||||
.virtualized-table {
|
||||
background-color: #d2d8e2;
|
||||
|
||||
.row {
|
||||
height: 1.818em;
|
||||
|
||||
&.selected:not(.highlighted) {
|
||||
background: -moz-linear-gradient(top, #6494D4, #2559AC) repeat-x;
|
||||
border-top: 1px solid #5382C5;
|
||||
font-weight: bold !important;
|
||||
color: #ffffff !important;
|
||||
height: calc(1.818em - 1px);
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
&:not(:focus) .row.selected:not(.highlighted) {
|
||||
background: -moz-linear-gradient(top, #A0B0CF, #7386AB) repeat-x;
|
||||
border-top: 1px solid #94A1C0;
|
||||
}
|
||||
|
||||
&:-moz-window-inactive {
|
||||
background-color: rgb(232, 232, 232);
|
||||
.virtualized-table {
|
||||
background-color: #d2d8e2;
|
||||
|
||||
.row.selected:not(.highlighted) {
|
||||
background: -moz-linear-gradient(top, #B4B4B4, #8A8A8A) repeat-x;
|
||||
border-top: 1px solid #979797;
|
||||
}
|
||||
}
|
||||
}
|
||||
.row {
|
||||
height: 1.818em;
|
||||
|
||||
&.selected:not(.highlighted) {
|
||||
background: -moz-linear-gradient(top, #6494D4, #2559AC) repeat-x;
|
||||
border-top: 1px solid #5382C5;
|
||||
font-weight: bold !important;
|
||||
color: #ffffff !important;
|
||||
height: calc(1.818em - 1px);
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
&:not(:focus) .row.selected:not(.highlighted) {
|
||||
background: -moz-linear-gradient(top, #A0B0CF, #7386AB) repeat-x;
|
||||
border-top: 1px solid #94A1C0;
|
||||
}
|
||||
|
||||
&:-moz-window-inactive {
|
||||
background-color: rgb(232, 232, 232);
|
||||
|
||||
.row.selected:not(.highlighted) {
|
||||
background: -moz-linear-gradient(top, #B4B4B4, #8A8A8A) repeat-x;
|
||||
border-top: 1px solid #979797;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// IDK why, but these heights are all over the place on macOS (not a f(x)=x)
|
||||
*[zoteroFontSize=medium] #zotero-collections-tree .virtualized-table .row {
|
||||
height: 1.739em;
|
||||
&.focused:not(.highlighted) {
|
||||
height: calc(1.738em - 1px);
|
||||
}
|
||||
height: 1.739em;
|
||||
&.focused:not(.highlighted) {
|
||||
height: calc(1.738em - 1px);
|
||||
}
|
||||
}
|
||||
|
||||
*[zoteroFontSize=large] #zotero-collections-tree .virtualized-table .row {
|
||||
height: 1.68em;
|
||||
&.focused:not(.highlighted) {
|
||||
height: calc(1.68em - 1px);
|
||||
}
|
||||
height: 1.68em;
|
||||
&.focused:not(.highlighted) {
|
||||
height: calc(1.68em - 1px);
|
||||
}
|
||||
}
|
||||
|
||||
*[zoteroFontSize=x-large] #zotero-collections-tree .virtualized-table .row {
|
||||
height: 1.697em;
|
||||
&.focused:not(.highlighted) {
|
||||
height: calc(1.697em - 1px);
|
||||
}
|
||||
height: 1.697em;
|
||||
&.focused:not(.highlighted) {
|
||||
height: calc(1.697em - 1px);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#zotero-items-tree {
|
||||
// Selected rows when the tree is not the focused element
|
||||
.virtualized-table:not(:focus) {
|
||||
.row.selected {
|
||||
background: #dcdcdc;
|
||||
color: initial;
|
||||
}
|
||||
}
|
||||
// Selected rows when the tree is not the focused element
|
||||
.virtualized-table:not(:focus) {
|
||||
.row.selected {
|
||||
background: #dcdcdc;
|
||||
color: initial;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,24 +1,24 @@
|
|||
.virtualized-table, .drag-image-container {
|
||||
.twisty {
|
||||
width: 19px;
|
||||
|
||||
svg {
|
||||
fill: #888;
|
||||
width: 16px;
|
||||
}
|
||||
}
|
||||
.twisty {
|
||||
width: 19px;
|
||||
|
||||
.focused:not(.highlighted) .twisty svg {
|
||||
fill: #fff;
|
||||
}
|
||||
svg {
|
||||
fill: #888;
|
||||
width: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.spacer-twisty {
|
||||
min-width: 19px;
|
||||
}
|
||||
.focused:not(.highlighted) .twisty svg {
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
.spacer-twisty {
|
||||
min-width: 19px;
|
||||
}
|
||||
}
|
||||
|
||||
.virtualized-table-body, .drag-image-container{
|
||||
.cell:not(:first-child) {
|
||||
border-inline-start: 1px solid #ddd;
|
||||
}
|
||||
.cell:not(:first-child) {
|
||||
border-inline-start: 1px solid #ddd;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,33 +1,33 @@
|
|||
#zotero-items-tree .virtualized-table {
|
||||
.row {
|
||||
padding-inline-end: 1px;
|
||||
&.selected {
|
||||
background-color: #e5f3ff;
|
||||
border: 1px solid #7bc3ff;
|
||||
color: inherit;
|
||||
padding-inline-start: 1px;
|
||||
padding-inline-end: 0;
|
||||
}
|
||||
&:hover {
|
||||
background-color: #e5f3ff;
|
||||
}
|
||||
}
|
||||
.row {
|
||||
padding-inline-end: 1px;
|
||||
&.selected {
|
||||
background-color: #e5f3ff;
|
||||
border: 1px solid #7bc3ff;
|
||||
color: inherit;
|
||||
padding-inline-start: 1px;
|
||||
padding-inline-end: 0;
|
||||
}
|
||||
&:hover {
|
||||
background-color: #e5f3ff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#zotero-items-tree .virtualized-table:not(:focus) {
|
||||
.row {
|
||||
&.selected {
|
||||
color: inherit;
|
||||
background: #f0f0f0;
|
||||
border: none;
|
||||
padding-inline-start: 2px;
|
||||
padding-inline-end: 1px;
|
||||
}
|
||||
&.selected:hover {
|
||||
background-color: #e5f3ff;
|
||||
border: 1px solid #7bc3ff;
|
||||
padding-inline-start: 1px;
|
||||
padding-inline-end: 0;
|
||||
}
|
||||
}
|
||||
.row {
|
||||
&.selected {
|
||||
color: inherit;
|
||||
background: #f0f0f0;
|
||||
border: none;
|
||||
padding-inline-start: 2px;
|
||||
padding-inline-end: 1px;
|
||||
}
|
||||
&.selected:hover {
|
||||
background-color: #e5f3ff;
|
||||
border: 1px solid #7bc3ff;
|
||||
padding-inline-start: 1px;
|
||||
padding-inline-end: 0;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,50 +1,50 @@
|
|||
.spacer-twisty {
|
||||
min-width: 16px;
|
||||
min-width: 16px;
|
||||
}
|
||||
|
||||
.virtualized-table {
|
||||
&:not(:focus) .row.selected:not(.highlighted) {
|
||||
color: inherit;
|
||||
background: #f0f0f0;
|
||||
}
|
||||
&:not(:focus) .row.selected:not(.highlighted) {
|
||||
color: inherit;
|
||||
background: #f0f0f0;
|
||||
}
|
||||
|
||||
.row {
|
||||
padding-inline-start: 2px;
|
||||
|
||||
.twisty svg {
|
||||
fill: #b6b6b6;
|
||||
width: 16px;
|
||||
}
|
||||
.row {
|
||||
padding-inline-start: 2px;
|
||||
|
||||
.twisty.open svg {
|
||||
fill: #636363;
|
||||
}
|
||||
.twisty svg {
|
||||
fill: #b6b6b6;
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
&:hover .twisty svg {
|
||||
fill: #4ed0f9;
|
||||
}
|
||||
.twisty.open svg {
|
||||
fill: #636363;
|
||||
}
|
||||
|
||||
&.drop {
|
||||
background-color: highlight;
|
||||
color: highlighttext;
|
||||
}
|
||||
}
|
||||
&:hover .twisty svg {
|
||||
fill: #4ed0f9;
|
||||
}
|
||||
|
||||
&.drop {
|
||||
background-color: highlight;
|
||||
color: highlighttext;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.virtualized-table-header {
|
||||
height: 24px;
|
||||
background: #fff;
|
||||
height: 24px;
|
||||
background: #fff;
|
||||
|
||||
.cell {
|
||||
&:hover {
|
||||
background: #d9ebf9;
|
||||
}
|
||||
&:active {
|
||||
background: #bcdcf4;
|
||||
}
|
||||
&.dragging {
|
||||
background: #d9ebf9 !important;
|
||||
color: #6d6d6d;
|
||||
}
|
||||
}
|
||||
.cell {
|
||||
&:hover {
|
||||
background: #d9ebf9;
|
||||
}
|
||||
&:active {
|
||||
background: #bcdcf4;
|
||||
}
|
||||
&.dragging {
|
||||
background: #d9ebf9 !important;
|
||||
color: #6d6d6d;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue