mirror of
https://github.com/a2nt/silverstripe-font-awesome.git
synced 2024-10-22 17:05:51 +02:00
silverstripe 4 compatibility
This commit is contained in:
parent
6f71cd8d47
commit
bf5686e2ef
@ -1,3 +1,3 @@
|
||||
<?php
|
||||
|
||||
define('FONT_AWESOME_DIR', ltrim(Director::makeRelative(realpath(__DIR__)), DIRECTORY_SEPARATOR));
|
||||
define('FONT_AWESOME_DIR', ltrim(\SilverStripe\Control\Director::makeRelative(realpath(__DIR__)), DIRECTORY_SEPARATOR));
|
||||
|
@ -1,5 +1,8 @@
|
||||
<?php
|
||||
|
||||
use SilverStripe\Core\Extension;
|
||||
use SilverStripe\View\Requirements;
|
||||
|
||||
/**
|
||||
* Class FontAwesomeControllerExtension
|
||||
*/
|
||||
|
@ -1,5 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace SilverStripe\FontAwesome;
|
||||
|
||||
use SilverStripe\Forms\TextField;
|
||||
use SilverStripe\View\Requirements;
|
||||
|
||||
/**
|
||||
* Class FontAwesomeField
|
||||
*/
|
||||
@ -23,7 +28,6 @@ class FontAwesomeField extends TextField
|
||||
$this->addExtraClass('form-control icp icp-auto');
|
||||
|
||||
//Libraries
|
||||
Requirements::css(FONT_AWESOME_DIR . '/css/lib/bootstrap.min.css');
|
||||
Requirements::css(FONT_AWESOME_DIR . '/css/lib/font-awesome.min.css');
|
||||
Requirements::css(FONT_AWESOME_DIR . '/css/lib/font-awesome-iconpicker.min.css');
|
||||
Requirements::javascript(FONT_AWESOME_DIR . '/js/lib/font-awesome-iconpicker.min.js');
|
||||
|
@ -1,9 +1,3 @@
|
||||
* {
|
||||
-webkit-box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
.iconpicker-popover.popover {
|
||||
width: 512px;
|
||||
}
|
Loading…
Reference in New Issue
Block a user