File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22 <div id =" quota" >
33 <div >
44 <div class =" label" >
5- <span >{{ $t("sidebar.quota.space") }}</span >
6- <span v-if =" loaded" class =" metric" >{{ spaceUsageTitle }}</span >
5+ <div >{{ $t("sidebar.quota.space") }}</div >
6+ <div v-if =" loaded" class =" metric" >{{ spaceUsageTitle }}</div >
77 </div >
88 <div class =" bar" :title =" spaceProgress + '%'" >
99 <div class =" progress" :style =" { width: spaceProgress + '%' }" ></div >
1010 </div >
1111 </div >
1212 <div >
1313 <div class =" label" >
14- <span >{{ $t("sidebar.quota.inodes") }}</span >
15- <span v-if =" loaded" class =" metric" >{{ inodeUsageTitle }}</span >
14+ <div >{{ $t("sidebar.quota.inodes") }}</div >
15+ <div v-if =" loaded" class =" metric" >{{ inodeUsageTitle }}</div >
1616 </div >
1717 <div class =" bar" :title =" inodeProgress + '%'" >
1818 <div class =" progress" :style =" { width: inodeProgress + '%' }" ></div >
Original file line number Diff line number Diff line change @@ -111,7 +111,10 @@ export default {
111111 copy: this .selectedCount > 0 && this .user .perm .create ,
112112 permissions: this .selectedCount === 1 && this .user .perm .modify ,
113113 archive: this .selectedCount > 0 && this .user .perm .create ,
114- unarchive: this .selectedCount === 1 && this .onlyArchivesSelected && this .user .perm .create ,
114+ unarchive:
115+ this .selectedCount === 1 &&
116+ this .onlyArchivesSelected &&
117+ this .user .perm .create ,
115118 };
116119 },
117120 },
Original file line number Diff line number Diff line change @@ -150,15 +150,17 @@ main {
150150}
151151
152152# quota > div + div {
153- margin-top : .5 em ;
153+ margin-top : .8 em ;
154154}
155155
156156# quota .label {
157157 color : # 546E7A ;
158+ font-weight : 500 ;
158159}
159160
160161# quota .label .metric {
161- float : right;
162+ font-weight : 100 ;
163+ margin : .2em 0
162164}
163165
164166# quota .bar {
Original file line number Diff line number Diff line change @@ -395,7 +395,10 @@ export default {
395395 copy: this .selectedCount > 0 && this .user .perm .create ,
396396 permissions: this .selectedCount === 1 && this .user .perm .modify ,
397397 archive: this .selectedCount > 0 && this .user .perm .create ,
398- unarchive: this .selectedCount === 1 && this .onlyArchivesSelected && this .user .perm .create ,
398+ unarchive:
399+ this .selectedCount === 1 &&
400+ this .onlyArchivesSelected &&
401+ this .user .perm .create ,
399402 };
400403 },
401404 isMobile () {
You can’t perform that action at this time.
0 commit comments