@@ -872,8 +872,8 @@ export default defineComponent({
872872.files-list--grid  tbody .files-list__tbody  {
873873	--item-padding : 16px  ; 
874874	--icon-preview-size : 166px  ; 
875- 	--name-height : 32 px  
876- 	--mtime-height : 16 px  
875+ 	--name-height : var ( --default-clickable-area ) ; 
876+ 	--mtime-height : calc ( var ( --font-size-small )  +   var ( --default-grid-baseline )) ; 
877877	--row-width : calc (var (--icon-preview-size ) +  var (--item-padding ) *  2 ); 
878878	--row-height : calc (var (--icon-preview-size ) +  var (--name-height ) +  var (--mtime-height ) +  var (--item-padding ) *  2 ); 
879879	--checkbox-padding : 0px  ; 
@@ -955,7 +955,7 @@ export default defineComponent({
955955	.files-list__row-mtime  { 
956956		width var (--icon-preview-size ); 
957957		height var (--mtime-height ); 
958- 		font-size calc ( var (--default- font-size )  -   4 px  
958+ 		font-size var (--font-size-small  ); 
959959	} 
960960
961961	.files-list__row-actions  { 
@@ -966,4 +966,21 @@ export default defineComponent({
966966		height var (--clickable-area ); 
967967	} 
968968} 
969+ 
970+ @media  screen  and  (max-width 768px  ) {
971+ 	//  there is no mtime 
972+ 	.files-list--grid  tbody .files-list__tbody  { 
973+ 		--mtime-height : 0px  ; 
974+ 
975+ 		//  so we move the action to the name 
976+ 		.files-list__row-actions  { 
977+ 			inset-block-end var (--item-padding ); 
978+ 		} 
979+ 
980+ 		//  and we need to keep space on the name for the actions 
981+ 		.files-list__row-name-text  { 
982+ 			padding-inline-end var (--clickable-area ) !important ; 
983+ 		} 
984+ 	} 
985+ } 
969986style >
0 commit comments