Correct the ability to include a custom CSS style

This commit is contained in:
Tom Slominski
2015-03-22 16:07:58 +00:00
parent 58cbd80d67
commit 8e44c1d06b
4 changed files with 7 additions and 5 deletions

View File

@@ -8,7 +8,8 @@
ISQ::$general = array(
'name' => 'URL shortener', // The name of your URL shortener
'qr' => TRUE, // Do you want to display a QR code?
'clipboard' => 1 // Do you want to enable zeroClipboard? (uses flash)
'clipboard' => 1, // Do you want to enable zeroClipboard? (uses flash)
'customstyle' => TRUE // Do you want to enable the custom stylesheet, found in public/custom.css?
);
// MENU LINKS

View File

@@ -391,6 +391,3 @@ header {
#wrap > p {
color: red;
}
/* Importing custom user styles */
@import url("public/user-style.css");