3ce952fd by Jeremy Groot

download file fix

1 parent d227f7fc
...@@ -8638,7 +8638,7 @@ a.extern:hover:before, .item a.extern:hover:before { ...@@ -8638,7 +8638,7 @@ a.extern:hover:before, .item a.extern:hover:before {
8638 a.pdf, .item a.pdf { 8638 a.pdf, .item a.pdf {
8639 border-top: 1px solid #949598; 8639 border-top: 1px solid #949598;
8640 border-bottom: 1px solid #949598; 8640 border-bottom: 1px solid #949598;
8641 padding: 0.5rem 0; 8641 padding: 0.7rem 0;
8642 display: block; 8642 display: block;
8643 width: 100%; 8643 width: 100%;
8644 font-weight: normal; 8644 font-weight: normal;
...@@ -14959,8 +14959,15 @@ article > h5 { ...@@ -14959,8 +14959,15 @@ article > h5 {
14959 } 14959 }
14960 .wp-block-file a { 14960 .wp-block-file a {
14961 word-wrap: break-word; 14961 word-wrap: break-word;
14962 position: relative;
14963 padding-left: 2rem;
14962 display: inline-block; 14964 display: inline-block;
14963 } 14965 }
14966 .wp-block-file a:before {
14967 position: absolute;
14968 left: 0;
14969 top: 1rem;
14970 }
14964 .col-sm-smallMenu a.tab_menu:focus, .col-sm-smallMenu a.tab_menu:hover { 14971 .col-sm-smallMenu a.tab_menu:focus, .col-sm-smallMenu a.tab_menu:hover {
14965 transform: none !important; 14972 transform: none !important;
14966 } 14973 }
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
...@@ -208,7 +208,7 @@ html{ ...@@ -208,7 +208,7 @@ html{
208 208
209 border-top:1px solid #949598; 209 border-top:1px solid #949598;
210 border-bottom:1px solid #949598; 210 border-bottom:1px solid #949598;
211 padding:0.5rem 0; 211 padding:0.7rem 0;
212 display: block; 212 display: block;
213 width: 100%; 213 width: 100%;
214 214
......
...@@ -391,7 +391,14 @@ ...@@ -391,7 +391,14 @@
391 .wp-block-file { 391 .wp-block-file {
392 a { 392 a {
393 word-wrap: break-word; 393 word-wrap: break-word;
394 position: relative;
395 padding-left: 2rem;
394 display: inline-block; 396 display: inline-block;
397 &:before {
398 position: absolute;
399 left: 0;
400 top: 1rem;
401 }
395 } 402 }
396 } 403 }
397 404
......