Fixed debugging code and decreased channel tree font size
This commit is contained in:
parent
360b02a0c7
commit
039c87454b
4 changed files with 6 additions and 1 deletions
|
@ -60,6 +60,8 @@ html:root {
|
||||||
|
|
||||||
.channelName {
|
.channelName {
|
||||||
line-height: 1.2em;
|
line-height: 1.2em;
|
||||||
|
font-size: .9em;
|
||||||
|
|
||||||
align-self: center;
|
align-self: center;
|
||||||
color: var(--channel-tree-entry-color);
|
color: var(--channel-tree-entry-color);
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,8 @@ html:root {
|
||||||
|
|
||||||
.clientName {
|
.clientName {
|
||||||
line-height: 1.2em;
|
line-height: 1.2em;
|
||||||
|
font-size: .9em;
|
||||||
|
|
||||||
min-width: 2em;
|
min-width: 2em;
|
||||||
|
|
||||||
flex-grow: 0;
|
flex-grow: 0;
|
||||||
|
|
|
@ -329,7 +329,6 @@ export class RDPChannelTree {
|
||||||
this.selection = new RDPTreeSelection(this);
|
this.selection = new RDPTreeSelection(this);
|
||||||
|
|
||||||
this.documentDragStopListener = () => {
|
this.documentDragStopListener = () => {
|
||||||
return; /* FIXME: Remove! */
|
|
||||||
if(this.dragOverChannelEntry) {
|
if(this.dragOverChannelEntry) {
|
||||||
this.dragOverChannelEntry.setDragHint("none");
|
this.dragOverChannelEntry.setDragHint("none");
|
||||||
this.dragOverChannelEntry = undefined;
|
this.dragOverChannelEntry = undefined;
|
||||||
|
|
|
@ -26,6 +26,8 @@
|
||||||
color: var(--channel-tree-entry-color);
|
color: var(--channel-tree-entry-color);
|
||||||
|
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
|
font-size: .9em;
|
||||||
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
|
Loading…
Add table
Reference in a new issue