Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Commit ab91bc2

Browse files
committed
Fix some css & positioning
1 parent 0159dcf commit ab91bc2

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

core/src/plugins/gui.ajax/res/js/ui/prototype/class.LogoWidget.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,8 @@ Class.create("LogoWidget", AjxpPane, {
203203
position:'absolute',
204204
left : (imgW + 16) + 'px',
205205
top : (htHeight - (has_by?42:39)) + 'px',
206-
fontSize : '19px'
206+
fontSize : (has_by?'19px':'25px'),
207+
fontWeight: 300
207208
});
208209
}
209210

core/src/plugins/gui.ajax/res/themes/orbit/css/components/leftpanel.less

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,12 +141,15 @@
141141
font-size: 1.2em;
142142
}
143143
.material-list-text{
144-
.nav-list-entry-label();
144+
flex: 1;
145+
overflow: hidden;
146+
.material-list-line-1 > div{
147+
.nav-list-entry-label();
148+
}
145149
}
146150
.material-list-actions{
147-
position:absolute;
148-
right: 16px;
149-
opacity: 0.5;
151+
padding: 0 12px 0 6px;
152+
opacity: 0.1;
150153
&:hover{
151154
opacity: 1;
152155
}

core/src/plugins/gui.ajax/res/themes/orbit/css/pydio.css

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5801,14 +5801,19 @@ div.menu.rootDirChooser span.rootDirTitle {
58015801
font-size: 1.2em;
58025802
}
58035803
.left-panel .simple-provider .material-list-entry .material-list-text {
5804+
-webkit-flex: 1;
5805+
-ms-flex: 1;
5806+
flex: 1;
5807+
overflow: hidden;
5808+
}
5809+
.left-panel .simple-provider .material-list-entry .material-list-text .material-list-line-1 > div {
58045810
white-space: nowrap;
58055811
overflow: hidden;
58065812
text-overflow: ellipsis;
58075813
}
58085814
.left-panel .simple-provider .material-list-entry .material-list-actions {
5809-
position: absolute;
5810-
right: 16px;
5811-
opacity: 0.5;
5815+
padding: 0 12px 0 6px;
5816+
opacity: 0.1;
58125817
}
58135818
.left-panel .simple-provider .material-list-entry .material-list-actions:hover {
58145819
opacity: 1;

0 commit comments

Comments
 (0)