Switched all paths to fully relative so that all styles work whether downloading trestle or trestle-master

This commit is contained in:
MickeyKay
2014-02-13 14:34:29 -08:00
parent dacc67f4f9
commit cc28151109
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
* @package Trestle
*/
@import url( '/wp-content/themes/trestle/style.css' );
@import url( '../../style.css' );
/* Overrides
--------------------------------------------- */
+1 -1
View File
@@ -2,7 +2,7 @@
/**
* Trestle theme functions (front-end)
*
* Note: all admin theme functionality is located at: trestle/lib/admin/admin.php
* Note: all admin theme functionality is located at: lib/admin/admin.php
*
* @since 1.0.0
*
+4 -4
View File
@@ -296,7 +296,7 @@ a img {
}
.external-link-icons .external-link:after {
content: url(/wp-content/themes/trestle/images/external.png);
content: url(images/external.png);
margin: 0 0 0 4px;
white-space: nowrap;
}
@@ -306,19 +306,19 @@ a img {
}
.email-link-icons .email-link:before {
content: url(/wp-content/themes/trestle/images/email.png);
content: url(images/email.png);
margin: 0 4px 0 0;
white-space: nowrap;
}
.pdf-link-icons .pdf-link:before {
content: url(/wp-content/themes/trestle/images/pdf.png);
content: url(images/pdf.png);
margin: 0 4px 0 0;
white-space: nowrap;
}
.doc-link-icons .doc-link:before {
content: url(/wp-content/themes/trestle/images/doc.png);
content: url(images/doc.png);
margin: 0 4px 0 0;
white-space: nowrap;
}