소스 검색

changed favorites layout: columnized with horizontal scroll

Bachir Soussi Chiadmi 4 년 전
부모
커밋
4fcddebc73
2개의 변경된 파일12개의 추가작업 그리고 7개의 파일을 삭제
  1. 0 0
      web/themes/custom/edlptheme/assets/dist/styles/app.min.css
  2. 12 7
      web/themes/custom/edlptheme/assets/styles/app.scss

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
web/themes/custom/edlptheme/assets/dist/styles/app.min.css


+ 12 - 7
web/themes/custom/edlptheme/assets/styles/app.scss

@@ -1408,22 +1408,27 @@ main[role="main"]{
     .documents{
       padding-top: 35px;
       height:calc(100% - 35px);
-      overflow-y: auto;
-      overflow-x: hidden;
+      overflow-y: hidden;
+      overflow-x: auto;
       // box-sizing: content-box;
       // outline: 1px solid green;
+      .item-list{
+        height: 100%;
+      }
       ul,li{
         margin:0; padding:0;
         line-height: 1.2;
       }
       ul{
-        display: grid;
-        grid-template-columns: repeat( auto-fit, minmax(200px, 1fr) );
+        // display: grid;
+        // grid-template-columns: repeat( auto-fit, minmax(200px, 1fr) );
+        max-height: 100%;
+        display: inline-flex;
+        flex-direction: column;
+        flex-wrap: wrap;
       }
       li{
-        // grid-auto-flow: row;
-        // display: inline-block; vertical-align: top;
-        // width:32%;
+        flex: 0 0 auto;
         margin-bottom: 0.3em;
         white-space: nowrap;
         >div{

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.