• Hai guys, I wonder I tried to minify my CSS, I used the default and I tried CSS Tidy, but why the result is like just combine only (even though I disabled it)? I tweaked the options, but always return the same result.

    Below is some of the css result (doesn’t look like compressed to me, only combined) :

    /* wp-filebase.css */
    
    /* 1   */ /* #################### DEFAULT FILE TEMPLATE #################### */
    /* 2   */ .wpfilebase-file-default {
    /* 3   */ 	width: 420px;
    /* 4   */ 	padding: 5px;
    /* 5   */ 	margin: 10px auto 25px auto;
    /* 6   */ 	/* border: 1px solid #999; twenty14 adjust*/
    /* 7   */
    /* 8   */ 	color: #333;
    /* 9   */ 	text-align: left;
    /* 10  */ 	line-height: normal;
    /* 11  */
    /* 12  */ 	/*
    /* 13  *| 	-moz-border-radius: 4px;
    /* 14  *| 	-khtml-border-radius: 4px;
    /* 15  *| 	-webkit-border-radius: 4px;
    /* 16  *| 	border-radius: 4px;  twenty14 adjust*/
    /* 17  */
    /* 18  */ 	cursor:pointer;
    /* 19  */
    /* 20  */ 	box-shadow: 1px 1px 1px #CCC;
    /* 21  */
    /* 22  */ 	background: #EEE;
    /* 23  */ 	/* gradient */
    /* 24  */ 	background: -moz-linear-gradient(top, #EEE 0%, #CCC 100%);
    /* 25  */ 	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#EEE), color-stop(100%,#CCC));
    /* 26  */ 	background: -webkit-linear-gradient(top, #EEE 0%,#CCC 100%);
    /* 27  */ 	background: -o-linear-gradient(top, #EEE 0%,#CCC 100%);
    /* 28  */ 	background: -ms-linear-gradient(top, #EEE 0%,#CCC 100%);
    /* 29  */ 	background: linear-gradient(to bottom, #EEE 0%,#CCC 100%);
    /* 30  */ 	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 );
    /* 31  */ }
    /* 32  */
    /* 33  */ .wpfilebase-file-default .icon { float: left; }
    /* 34  */
    /* 35  */ .wpfilebase-file-default .icon img {
    /* 36  */ 	margin: 2px 0 2px 2px;
    /* 37  */ 	padding: 2px;
    /* 38  */ 	background-color: #FFF;
    /* 39  */ 	border: 1px solid #999;
    /* 40  */ }
    /* 41  */
    /* 42  */ .wpfilebase-file-default .filetitle {
    /* 43  */ 	float: left;
    /* 44  */ 	font-size: 10px;
    /* 45  */ 	margin: 0 0 4px 8px;
    /* 46  */ 	height: 40px;
    /* 47  */ }
    /* 48  */
    /* 49  */ .wpfilebase-file-default .filetitle a {
    /* 50  */ 	font-size: 18px;
    
    /* wp-filebase.css */
    
    /* 51  */ 	text-decoration: none;
    /* 52  */ 	line-height: 29px;
    /* 53  */ 	text-shadow: 1px 1px 1px white;
    /* 54  */ }
    /* 55  */
    /* 56  */ .wpfilebase-file-default .filetitle a.postlink, .wpfilebase-file-default .info a {
    /* 57  */ 	text-decoration: none;
    /* 58  */ 	padding: 1px 4px 1px 4px;
    /* 59  */ 	background-color: #bbb;
    /* 60  */ 	border-radius: 3px;
    /* 61  */ 	text-shadow: none;
    /* 62  */ }
    /* 63  */
    /* 64  */ .wpfilebase-file-default .filetitle a.postlink {
    /* 65  */ 	margin-left: 4px;
    /* 66  */ 	font-size: 10px;
    /* 67  */ 	text-shadow: 0px 1px 1px #eee;
    /* 68  */ 	vertical-align: bottom;
    /* 69  */ 	background-color: #ccc;
    /* 70  */ }
    /* 71  */
    /* 72  */ .wpfilebase-file-default .info a {
    /* 73  */ 	text-transform: uppercase;
    /* 74  */ 	line-height: 18px;
    /* 75  */ 	text-shadow: 0px 1px 1px #ddd;
    /* 76  */ }
    /* 77  */
    /* 78  */ .wpfilebase-file-default .info {
    /* 79  */ 	float: right;
    /* 80  */ 	text-align: right;
    /* 81  */ 	font-size: 10px;
    /* 82  */ 	margin: 12px 8px 0 auto;
    /* 83  */
    /* 84  */ 	height: 50px;
    /* 85  */ 	padding-right: 60px;
    /* 86  */ 	padding-top: 3px;
    /* 87  */
    /* 88  */ 	background-image: url('/wp-content/plugins/wp-filebase/images/down-green.png'); /* change this to ... down-gray.png ... for gray arrow */
    /* 89  */ 	background-repeat: no-repeat;
    /* 90  */ 	background-position: top right;
    /* 91  */ }
    /* 92  */
    /* 93  */ .wpfilebase-file-default .details {
    /* 94  */ 	clear: both;
    /* 95  */ 	font-size: 12px;
    /* 96  */ 	padding: 8px 18px 0 18px;
    /* 97  */ 	overflow: hidden;
    /* 98  */ }
    /* 99  */
    /* 100 */ .wpfilebase-file-default .details table, .wpfilebase-file-default .details table tr, .wpfilebase-file-default .details table tr th, .wpfilebase-file-default .details table tr td {

    any clue?

    https://www.ads-software.com/plugins/w3-total-cache/

  • The topic ‘CSS Compression – Default & CSS Tidy’ is closed to new replies.