mirror of
https://github.com/processwire/processwire.git
synced 2025-08-11 17:24:46 +02:00
Add improved tags support for InputfieldFile and InputfieldImage. Now the UI is more tags oriented, and there are more config options for how the tags are input. This commit also adds a modified version of the Selectize js library to provide improved tag inputs.
This commit is contained in:
@@ -522,6 +522,59 @@ class Pagefiles extends WireArray implements PageFieldValueInterface {
|
||||
return $item;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get list of tags for all files in this Pagefiles array, or return files matching given tag(s)
|
||||
*
|
||||
* This method can either return a list of all tags available, or return all files
|
||||
* matching the given tag or tags (an alias of findTag method).
|
||||
*
|
||||
* ~~~~~
|
||||
* // Get string of all tags
|
||||
* $tagsString = $page->files->tags();
|
||||
*
|
||||
* // Get array of all tags
|
||||
* $tagsArray = $page->files->tags(true);
|
||||
*
|
||||
* // Find all files matching given tag
|
||||
* $pagefiles = $page->files->tags('foobar');
|
||||
* ~~~~~
|
||||
*
|
||||
* #pw-group-tags
|
||||
*
|
||||
* @param bool|string|array $value Specify one of the following:
|
||||
* - Omit to return all tags as a string.
|
||||
* - Boolean true if you want to return tags as an array (rather than string).
|
||||
* - Boolean false to return tags as an array, with lowercase enforced.
|
||||
* - String if you want to return files matching tags (See `Pagefiles::findTag()` method for usage)
|
||||
* - Array if you want to return files matching tags (See `Pagefiles::findTag()` method for usage)
|
||||
* @return string|array|Pagefiles Returns all tags as a string or an array, or Pagefiles matching given tag(s).
|
||||
* When a tags array is returned, it is an associative array where the key and value are both the tag (keys are always lowercase).
|
||||
* @see Pagefiles::findTag(), Pagefile::tags()
|
||||
*
|
||||
*/
|
||||
public function tags($value = null) {
|
||||
|
||||
if($value === null) {
|
||||
$returnString = true;
|
||||
$value = true;
|
||||
} else {
|
||||
$returnString = false;
|
||||
}
|
||||
|
||||
if(is_bool($value)) {
|
||||
// return array of tags
|
||||
$tags = array();
|
||||
foreach($this as $pagefile) {
|
||||
$tags = array_merge($tags, $pagefile->tags($value));
|
||||
}
|
||||
if($returnString) $tags = implode(' ', $tags);
|
||||
return $tags;
|
||||
}
|
||||
|
||||
// fallback to behavior of findTag
|
||||
return $this->findTag($value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Track a change
|
||||
*
|
||||
|
@@ -9,7 +9,7 @@
|
||||
* /wire/core/Fieldtype.php
|
||||
* /wire/core/FieldtypeMulti.php
|
||||
*
|
||||
* ProcessWire 3.x, Copyright 2016 by Ryan Cramer
|
||||
* ProcessWire 3.x, Copyright 2017 by Ryan Cramer
|
||||
* https://processwire.com
|
||||
*
|
||||
* @method string formatValueString(Page $page, Field $field, $value)
|
||||
@@ -21,15 +21,34 @@ class FieldtypeFile extends FieldtypeMulti {
|
||||
public static function getModuleInfo() {
|
||||
return array(
|
||||
'title' => __('Files', __FILE__),
|
||||
'version' => 104,
|
||||
'version' => 105,
|
||||
'summary' => __('Field that stores one or more files', __FILE__),
|
||||
'permanent' => true,
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* outputFormat: Automatic (single item or null when max files set to 1, array of items otherwise)
|
||||
*
|
||||
*/
|
||||
const outputFormatAuto = 0;
|
||||
|
||||
/**
|
||||
* outputFormat: Array of items
|
||||
*
|
||||
*/
|
||||
const outputFormatArray = 1;
|
||||
|
||||
/**
|
||||
* outputFormat: Single item or null when empty
|
||||
*
|
||||
*/
|
||||
const outputFormatSingle = 2;
|
||||
|
||||
/**
|
||||
* outputFormat: String that renders the item
|
||||
*
|
||||
*/
|
||||
const outputFormatString = 30;
|
||||
|
||||
/**
|
||||
@@ -44,8 +63,36 @@ class FieldtypeFile extends FieldtypeMulti {
|
||||
*/
|
||||
const fileSchemaDate = 2;
|
||||
|
||||
/**
|
||||
* Flag for useTags: tags off/disabled
|
||||
*
|
||||
*/
|
||||
const useTagsOff = 0;
|
||||
|
||||
/**
|
||||
* Flag for useTags: normal text input tags
|
||||
*
|
||||
*/
|
||||
const useTagsNormal = 1;
|
||||
|
||||
/**
|
||||
* Flag for useTags: predefined tags
|
||||
*
|
||||
*/
|
||||
const useTagsPredefined = 8;
|
||||
|
||||
/**
|
||||
* Default class for Inputfield object used, auto-generated at construct
|
||||
*
|
||||
* @var string
|
||||
*
|
||||
*/
|
||||
protected $defaultInputfieldClass = '';
|
||||
|
||||
/**
|
||||
* Construct
|
||||
*
|
||||
*/
|
||||
public function __construct() {
|
||||
$this->defaultInputfieldClass = str_replace('Fieldtype', 'Inputfield', $this->className);
|
||||
}
|
||||
@@ -286,7 +333,7 @@ class FieldtypeFile extends FieldtypeMulti {
|
||||
$textformatters = $field->get('textformatters');
|
||||
if(!is_array($textformatters)) $textformatters = array();
|
||||
if($field->get('entityEncode') && !count($textformatters)) $textformatters[] = 'TextformatterEntities';
|
||||
$useTags = $field->get('useTags');
|
||||
$useTags = (int) $field->get('useTags');
|
||||
|
||||
foreach($textformatters as $name) {
|
||||
$textformatter = $this->wire('modules')->get($name);
|
||||
@@ -663,15 +710,29 @@ class FieldtypeFile extends FieldtypeMulti {
|
||||
$field->set('entityEncode', null);
|
||||
|
||||
// use tags
|
||||
/** @var InputfieldCheckbox $f */
|
||||
$f = $this->modules->get("InputfieldCheckbox");
|
||||
/** @var InputfieldRadios $f */
|
||||
$f = $this->modules->get("InputfieldRadios");
|
||||
$f->attr('name', 'useTags');
|
||||
$f->attr('value', 1);
|
||||
if($field->get('useTags')) $f->attr('checked', 'checked');
|
||||
else $f->collapsed = Inputfield::collapsedYes;
|
||||
$f->label = $this->_('Use Tags?');
|
||||
$f->description = $this->_('If checked, the field will also contain an option for tags in addition to the description.'); // Use tags description
|
||||
$f->description = $this->_('When enabled, the field will also contain an option for tags in addition to the description.'); // Use tags description
|
||||
$f->icon = 'tags';
|
||||
$predefinedLabel = $this->_('User selects from list of predefined tags');
|
||||
$f->addOption(self::useTagsOff, $this->_('Tags disabled'));
|
||||
$f->addOption(self::useTagsNormal, $this->_('User enters tags by text input'));
|
||||
$f->addOption(self::useTagsPredefined, $predefinedLabel);
|
||||
$f->addOption(self::useTagsNormal | self::useTagsPredefined, $predefinedLabel . ' + ' . $this->_('can input their own'));
|
||||
$f->attr('value', (int) $field->get('useTags'));
|
||||
if(!$f->attr('value')) $f->collapsed = Inputfield::collapsedYes;
|
||||
$inputfields->append($f);
|
||||
|
||||
/** @var InputfieldTextarea $f */
|
||||
$f = $this->modules->get('InputfieldText');
|
||||
$f->attr('name', 'tagsList');
|
||||
$f->label = $this->_('Predefined tags');
|
||||
$f->description = $this->_('Enter tags separated by a space. Tags may contain letters, digits, underscores or hyphens.');
|
||||
$f->icon = 'tags';
|
||||
$f->attr('value', $field->get('tagsList'));
|
||||
$f->showIf = 'useTags>1';
|
||||
$inputfields->append($f);
|
||||
|
||||
// inputfield class
|
||||
|
@@ -83,9 +83,12 @@ ul.InputfieldFileList li .InputfieldFileDescription {
|
||||
font-weight: normal;
|
||||
margin: 0;
|
||||
padding: 0; }
|
||||
ul.InputfieldFileList li .InputfieldFileTags input,
|
||||
ul.InputfieldFileList li .InputfieldFileDescription input {
|
||||
ul.InputfieldFileList li .InputfieldFileTags input[type=text],
|
||||
ul.InputfieldFileList li .InputfieldFileDescription input[type=text] {
|
||||
width: 100%; }
|
||||
ul.InputfieldFileList li .InputfieldFileTags label.pw-hidden,
|
||||
ul.InputfieldFileList li .InputfieldFileDescription label.pw-hidden {
|
||||
display: none; }
|
||||
ul.InputfieldFileList li .InputfieldFileSort {
|
||||
display: none !important; }
|
||||
|
||||
@@ -144,6 +147,25 @@ ul.InputfieldFileListBlank + p.description {
|
||||
cursor: inherit;
|
||||
width: 100%; }
|
||||
|
||||
.InputfieldFileDescription label.pw-hidden,
|
||||
.InputfieldFileTags label.pw-hidden {
|
||||
display: none; }
|
||||
.InputfieldFileDescription input::placeholder,
|
||||
.InputfieldFileTags input::placeholder {
|
||||
font-size: 13px;
|
||||
color: #999; }
|
||||
|
||||
.AdminThemeDefault .InputfieldFileDescription input::placeholder {
|
||||
padding-left: 3px; }
|
||||
|
||||
.InputfieldFileTags .selectize-control.multi .selectize-input > div {
|
||||
background: #eee;
|
||||
border-radius: 3px;
|
||||
white-space: nowrap; }
|
||||
.InputfieldFileTags .selectize-control.multi .selectize-input > div a.remove {
|
||||
color: #999;
|
||||
border-color: #ddd; }
|
||||
|
||||
.pw-content ul.InputfieldFileList li .langTabs > ul,
|
||||
#content ul.InputfieldFileList li .langTabs > ul {
|
||||
padding-left: 0; }
|
||||
|
@@ -430,12 +430,101 @@ $(document).ready(function() {
|
||||
} // initHTML5Item
|
||||
} // initHTML5
|
||||
|
||||
/**
|
||||
* Initialize selectize tags
|
||||
*
|
||||
* @param $inputfields
|
||||
*
|
||||
*/
|
||||
function initTags($inputfields) {
|
||||
|
||||
$inputfields.each(function() {
|
||||
|
||||
var $inputfield = $(this);
|
||||
var $inputs = $inputfield.find('.InputfieldFileTagsInput:not(.selectized)');
|
||||
|
||||
if($inputs.length) {
|
||||
$inputs.selectize({
|
||||
plugins: ['remove_button', 'drag_drop'],
|
||||
delimiter: ' ',
|
||||
persist: false,
|
||||
createOnBlur: true,
|
||||
submitOnReturn: false,
|
||||
create: function(input) {
|
||||
return {
|
||||
value: input,
|
||||
text: input
|
||||
}
|
||||
}
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
var $selects = $inputfield.find('.InputfieldFileTagsSelect:not(.selectized)');
|
||||
if($selects.length) {
|
||||
if(!$inputfield.hasClass('Inputfield')) $inputfield = $inputfield.closest('.Inputfield');
|
||||
var configName = $inputfield.attr('data-configName');
|
||||
var settings = ProcessWire.config[configName];
|
||||
var options = [];
|
||||
for(var n = 0; n < settings['tags'].length; n++) {
|
||||
var tag = settings['tags'][n];
|
||||
options[n] = {value: tag};
|
||||
}
|
||||
$selects.selectize({
|
||||
plugins: ['remove_button', 'drag_drop'],
|
||||
delimiter: ' ',
|
||||
persist: true,
|
||||
submitOnReturn: false,
|
||||
closeAfterSelect: true,
|
||||
createOnBlur: true,
|
||||
maxItems: null,
|
||||
valueField: 'value',
|
||||
labelField: 'value',
|
||||
searchField: ['value'],
|
||||
options: options,
|
||||
create: function(input) {
|
||||
return {
|
||||
value: input,
|
||||
text: input
|
||||
}
|
||||
},
|
||||
createFilter: function(input) {
|
||||
if(settings.allowUserTags) return true;
|
||||
allow = false;
|
||||
for(var n = 0; n < options.length; n++) {
|
||||
if(input == options[n]) {
|
||||
allow = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return allow;
|
||||
},
|
||||
onDropdownOpen: function($dropdown) {
|
||||
$dropdown.closest('li').css('z-index', 100);
|
||||
},
|
||||
onDropdownClose: function($dropdown) {
|
||||
$dropdown.closest('li').css('z-index', 'auto');
|
||||
},
|
||||
render: {
|
||||
item: function(item, escape) {
|
||||
return '<div>' + escape(item.value) + '</div>';
|
||||
},
|
||||
option: function(item, escape) {
|
||||
return '<div>' + escape(item.value) + '</div>';
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* MAIN
|
||||
*
|
||||
*/
|
||||
|
||||
initSortable($(".InputfieldFileList"));
|
||||
initTags($(".InputfieldFileHasTags"));
|
||||
|
||||
/**
|
||||
* Progressive enchanchment for browsers that support html5 File API
|
||||
@@ -474,12 +563,16 @@ $(document).ready(function() {
|
||||
resizeActive = true;
|
||||
setTimeout(windowResize, 1000);
|
||||
}).resize();
|
||||
$(document).on('AjaxUploadDone', function(event) {
|
||||
initTags($(this));
|
||||
});
|
||||
}
|
||||
|
||||
//$(document).on('reloaded', '.InputfieldFileMultiple, .InputfieldFileSingle', function(event) {
|
||||
$(document).on('reloaded', '.InputfieldHasFileList', function(event) {
|
||||
initSortable($(this).find(".InputfieldFileList"));
|
||||
InitHTML5($(this));
|
||||
initTags($(this));
|
||||
if(allowAjax) windowResize();
|
||||
});
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
@@ -7,6 +7,7 @@
|
||||
* @property int $maxFiles Maximum number of files allowed
|
||||
* @property int $maxFilesize Maximum file size
|
||||
* @property bool $useTags Whether or not tags are enabled
|
||||
* @property string $tagsList Predefined tags
|
||||
* @property bool|int $unzip Whether or not unzip is enabled
|
||||
* @property bool|int $overwrite Whether or not overwrite mode is enabled
|
||||
* @property int $descriptionRows Number of rows for description field (default=1, 0=disable)
|
||||
@@ -36,7 +37,7 @@ class InputfieldFile extends Inputfield implements InputfieldItemList, Inputfiel
|
||||
return array(
|
||||
'title' => __('Files', __FILE__), // Module Title
|
||||
'summary' => __('One or more file uploads (sortable)', __FILE__), // Module Summary
|
||||
'version' => 124,
|
||||
'version' => 125,
|
||||
'permanent' => true,
|
||||
);
|
||||
}
|
||||
@@ -75,8 +76,20 @@ class InputfieldFile extends Inputfield implements InputfieldItemList, Inputfiel
|
||||
*/
|
||||
protected $uploadOnlyMode = 0;
|
||||
|
||||
/**
|
||||
* This is true when we are only rendering the value rather than the inputs
|
||||
*
|
||||
* @var bool
|
||||
*
|
||||
*/
|
||||
protected $renderValueMode = false;
|
||||
|
||||
/**
|
||||
* True when in ajax mode
|
||||
*
|
||||
* @var bool
|
||||
*
|
||||
*/
|
||||
protected $isAjax = false;
|
||||
|
||||
/**
|
||||
@@ -108,6 +121,7 @@ class InputfieldFile extends Inputfield implements InputfieldItemList, Inputfiel
|
||||
$this->set('maxFiles', 0);
|
||||
$this->set('maxFilesize', 0);
|
||||
$this->set('useTags', 0);
|
||||
$this->set('tagsList', '');
|
||||
|
||||
// native to this Inputfield
|
||||
$this->set('unzip', 0);
|
||||
@@ -200,6 +214,14 @@ class InputfieldFile extends Inputfield implements InputfieldItemList, Inputfiel
|
||||
return !count($this->value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set an attribute
|
||||
*
|
||||
* @param array|string $key
|
||||
* @param array|int|string $value
|
||||
* @return Inputfield|InputfieldFile
|
||||
*
|
||||
*/
|
||||
public function setAttribute($key, $value) {
|
||||
if($key == 'value') {
|
||||
if($value instanceof Pagefile) {
|
||||
@@ -238,10 +260,26 @@ class InputfieldFile extends Inputfield implements InputfieldItemList, Inputfiel
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the unique 'id' attribute for the given Pagefile
|
||||
*
|
||||
* @param Pagefile $pagefile
|
||||
* @return string
|
||||
*
|
||||
*/
|
||||
protected function pagefileId(Pagefile $pagefile) {
|
||||
return $this->name . "_" . $pagefile->hash;
|
||||
}
|
||||
|
||||
/**
|
||||
* Render a description input for the given Pagefile
|
||||
*
|
||||
* @param Pagefile $pagefile
|
||||
* @param string $id
|
||||
* @param int $n
|
||||
* @return string
|
||||
*
|
||||
*/
|
||||
protected function renderItemDescriptionField(Pagefile $pagefile, $id, $n) {
|
||||
|
||||
if($n) {}
|
||||
@@ -265,6 +303,7 @@ class InputfieldFile extends Inputfield implements InputfieldItemList, Inputfiel
|
||||
|
||||
$userLanguage = $this->wire('user')->language;
|
||||
$languages = $this->noLang ? null : $this->wire('languages');
|
||||
$defaultDescriptionFieldLabel = $this->wire('sanitizer')->entities1($this->labels['description']);
|
||||
|
||||
if(!$userLanguage || !$languages || $languages->count() < 2) {
|
||||
$numLanguages = 0;
|
||||
@@ -274,7 +313,9 @@ class InputfieldFile extends Inputfield implements InputfieldItemList, Inputfiel
|
||||
if(is_null($hasLangTabs)) {
|
||||
$hasLangTabs = $this->wire('modules')->isInstalled('LanguageTabs');
|
||||
if($hasLangTabs) {
|
||||
$langTabSettings = $this->wire('modules')->getModule('LanguageTabs')->getSettings();
|
||||
/** @var LanguageTabs $languageTabs */
|
||||
$languageTabs = $this->wire('modules')->getModule('LanguageTabs');
|
||||
$langTabSettings = $languageTabs->getSettings();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -282,8 +323,9 @@ class InputfieldFile extends Inputfield implements InputfieldItemList, Inputfiel
|
||||
foreach($languages as $language) {
|
||||
|
||||
$descriptionFieldName = "description_$id";
|
||||
$descriptionFieldLabel = $this->labels['description'];
|
||||
$descriptionFieldLabel = $defaultDescriptionFieldLabel;
|
||||
$labelClass = "detail";
|
||||
$attrStr = '';
|
||||
|
||||
if($language) {
|
||||
$tabField = empty($langTabSettings['tabField']) ? 'title' : $langTabSettings['tabField'];
|
||||
@@ -303,16 +345,20 @@ class InputfieldFile extends Inputfield implements InputfieldItemList, Inputfiel
|
||||
$out .= "<div class='InputfieldFileDescription LanguageSupport' data-language='$language' id='$tabID'>"; // open wrapper
|
||||
} else {
|
||||
$out .= "<div class='InputfieldFileDescription'>"; // open wrapper
|
||||
$attrStr = "placeholder='$descriptionFieldLabel…'";
|
||||
$labelClass = 'detail pw-hidden';
|
||||
}
|
||||
|
||||
$attrStr = "name='$descriptionFieldName' id='$descriptionFieldName' $attrStr";
|
||||
|
||||
$out .= "<label for='$descriptionFieldName' class='$labelClass'>$descriptionFieldLabel</label>";
|
||||
|
||||
$description = $this->wire('sanitizer')->entities($pagefile->description($language));
|
||||
|
||||
if($this->descriptionRows > 1) {
|
||||
$out .= "<textarea name='$descriptionFieldName' id='$descriptionFieldName' rows='{$this->descriptionRows}'>$description</textarea>";
|
||||
$out .= "<textarea $attrStr rows='$this->descriptionRows'>$description</textarea>";
|
||||
} else {
|
||||
$out .= "<input type='text' name='$descriptionFieldName' id='$descriptionFieldName' value='$description' />";
|
||||
$out .= "<input type='text' $attrStr value='$description' />";
|
||||
}
|
||||
|
||||
$out .= "</div>"; // close wrapper
|
||||
@@ -327,17 +373,44 @@ class InputfieldFile extends Inputfield implements InputfieldItemList, Inputfiel
|
||||
|
||||
}
|
||||
|
||||
if($this->useTags) $out .= $this->renderItemTagsField($pagefile, $id, $n);
|
||||
|
||||
if($this->useTags) {
|
||||
$tags = $this->wire('sanitizer')->entities($pagefile->tags);
|
||||
$tagsLabel = $this->labels['tags'];
|
||||
$out .=
|
||||
"<span class='InputfieldFileTags'>" .
|
||||
"<label for='tags_$id' class='detail'>$tagsLabel</label>" .
|
||||
"<input type='text' name='tags_$id' id='tags_$id' value='$tags' />" .
|
||||
"</span>";
|
||||
return $out;
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the tags input for the given Pagefile
|
||||
*
|
||||
* @param Pagefile $pagefile
|
||||
* @param string $id
|
||||
* @param int $n
|
||||
* @return string
|
||||
*
|
||||
*/
|
||||
protected function renderItemTagsField(Pagefile $pagefile, $id, $n) {
|
||||
|
||||
if($n) {}
|
||||
$tagsLabel = $this->wire('sanitizer')->entities($this->labels['tags']) . '…';
|
||||
$tagsStr = $this->wire('sanitizer')->entities($pagefile->tags);
|
||||
$tagsAttr = '';
|
||||
|
||||
if($this->useTags >= FieldtypeFile::useTagsPredefined) {
|
||||
// select predefined
|
||||
$tagsClass = 'InputfieldFileTagsSelect';
|
||||
$tagsAttr = "data-cfgname='InputfieldFileTags_{$this->hasField->name}' ";
|
||||
|
||||
} else {
|
||||
// text input
|
||||
$tagsClass = 'InputfieldFileTagsInput';
|
||||
}
|
||||
|
||||
$out =
|
||||
"<div class='InputfieldFileTags'>" .
|
||||
"<label for='tags_$id' class='detail pw-hidden'>$tagsLabel</label>" .
|
||||
"<input type='text' name='tags_$id' id='tags_$id' value='$tagsStr' " .
|
||||
"placeholder='$tagsLabel' class='$tagsClass' $tagsAttr/>" .
|
||||
"</div>";
|
||||
|
||||
return $out;
|
||||
}
|
||||
|
||||
@@ -505,6 +578,42 @@ class InputfieldFile extends Inputfield implements InputfieldItemList, Inputfiel
|
||||
|
||||
public function renderReady(Inputfield $parent = null, $renderValueMode = false) {
|
||||
$this->addClass('InputfieldNoFocus', 'wrapClass');
|
||||
|
||||
if($this->useTags) {
|
||||
$this->wire('modules')->get('JqueryUI')->use('selectize');
|
||||
$this->addClass('InputfieldFileHasTags', 'wrapClass');
|
||||
if($this->useTags >= FieldtypeFile::useTagsPredefined && $this->hasField) {
|
||||
// predefined tags
|
||||
$config = $this->wire('config');
|
||||
$fieldName = $this->hasField->name;
|
||||
$jsName = "InputfieldFileTags_$fieldName";
|
||||
$allowUserTags = $this->useTags & FieldtypeFile::useTagsNormal;
|
||||
$data = $config->js($jsName);
|
||||
if(!is_array($data)) $data = array();
|
||||
if(empty($data['tags'])) {
|
||||
$tags = array();
|
||||
foreach(explode(' ', (string) $this->get('tagsList')) as $tag) {
|
||||
$tag = trim($tag);
|
||||
if(!strlen($tag)) continue;
|
||||
$tags[strtolower($tag)] = $tag;
|
||||
}
|
||||
if($allowUserTags) {
|
||||
$pagefiles = $this->val();
|
||||
if($pagefiles instanceof Pagefiles) {
|
||||
$_tags = $pagefiles->tags(true);
|
||||
if(count($_tags)) $tags = array_merge($tags, $_tags);
|
||||
}
|
||||
}
|
||||
$data['tags'] = array_values($tags);
|
||||
$data['allowUserTags'] = $allowUserTags;
|
||||
$config->js($jsName, $data);
|
||||
}
|
||||
$this->wrapAttr('data-configName', $jsName);
|
||||
} else {
|
||||
// regular tags text input
|
||||
}
|
||||
}
|
||||
|
||||
return parent::renderReady($parent, $renderValueMode);
|
||||
}
|
||||
|
||||
@@ -704,7 +813,9 @@ class InputfieldFile extends Inputfield implements InputfieldItemList, Inputfiel
|
||||
|
||||
foreach($keys as $key) {
|
||||
if(isset($input[$key . '_' . $id])) {
|
||||
$value = trim($input[$key . '_' . $id]);
|
||||
$value = $input[$key . '_' . $id];
|
||||
if(is_array($value)) $value = implode(' ', $value);
|
||||
$value = trim($value);
|
||||
if($value != $pagefile->$key) {
|
||||
$pagefile->$key = $value;
|
||||
$changed = true;
|
||||
|
@@ -108,9 +108,12 @@ ul.InputfieldFileList li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
input {
|
||||
input[type=text] {
|
||||
width: 100%;
|
||||
}
|
||||
label.pw-hidden {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.InputfieldFileSort {
|
||||
display: none !important;
|
||||
@@ -197,6 +200,34 @@ ul.InputfieldFileListBlank + p.description {
|
||||
}
|
||||
}
|
||||
|
||||
.InputfieldFileDescription,
|
||||
.InputfieldFileTags {
|
||||
label.pw-hidden {
|
||||
display: none;
|
||||
}
|
||||
input::placeholder {
|
||||
font-size: 13px;
|
||||
color: #999;
|
||||
}
|
||||
}
|
||||
.AdminThemeDefault .InputfieldFileDescription {
|
||||
input::placeholder {
|
||||
padding-left: 3px;
|
||||
}
|
||||
}
|
||||
|
||||
.InputfieldFileTags {
|
||||
.selectize-control.multi .selectize-input > div {
|
||||
background: #eee;
|
||||
border-radius: 3px;
|
||||
white-space: nowrap;
|
||||
a.remove {
|
||||
color: #999;
|
||||
border-color: #ddd;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// multi-language -----------------------------------------------------------
|
||||
|
||||
.pw-content ul.InputfieldFileList li .langTabs > ul,
|
||||
|
@@ -532,6 +532,10 @@ function InputfieldImage($) {
|
||||
// magnific popup close button
|
||||
return;
|
||||
|
||||
} else if($el.is("a.remove")) {
|
||||
// selectize
|
||||
return;
|
||||
|
||||
} else {
|
||||
// other
|
||||
closeEdit(null, null);
|
||||
|
File diff suppressed because one or more lines are too long
@@ -33,21 +33,30 @@ class JqueryUI extends ModuleJS {
|
||||
} else if($name == 'vex') {
|
||||
// custom loader for vex
|
||||
static $vexLoaded = false;
|
||||
if(!$vexLoaded) {
|
||||
$vexLoaded = true;
|
||||
$url = $this->config->urls('JqueryUI') . 'vex/';
|
||||
$this->config->styles->add($url . 'css/vex.css');
|
||||
$this->config->styles->add($url . 'styles/vex-theme-default.css');
|
||||
$this->config->scripts->add($url . 'scripts/vex.combined.min.js');
|
||||
$adminTheme = $this->wire('adminTheme');
|
||||
if($adminTheme) $adminTheme->addExtraMarkup('head',
|
||||
"<script>" .
|
||||
"vex.defaultOptions.className='vex-theme-default';" .
|
||||
"vex.dialog.buttons.YES.text='" . __('Ok', 'common') . "';" . // Yes/Ok button text for Confirm dialog
|
||||
"vex.dialog.buttons.NO.text='" . __('Cancel', 'common') . "';" . // No/Cancel button text for Confirm dialog
|
||||
"</script>"
|
||||
);
|
||||
}
|
||||
if($vexLoaded) return $this;
|
||||
$vexLoaded = true;
|
||||
$config = $this->wire('config');
|
||||
$url = $config->urls('JqueryUI') . 'vex/';
|
||||
$config->styles->add($url . 'css/vex.css');
|
||||
$config->styles->add($url . 'styles/vex-theme-default.css');
|
||||
$config->scripts->add($url . 'scripts/vex.combined.min.js');
|
||||
$adminTheme = $this->wire('adminTheme');
|
||||
if($adminTheme) $adminTheme->addExtraMarkup('head',
|
||||
"<script>" .
|
||||
"vex.defaultOptions.className='vex-theme-default';" .
|
||||
"vex.dialog.buttons.YES.text='" . __('Ok', 'common') . "';" . // Yes/Ok button text for Confirm dialog
|
||||
"vex.dialog.buttons.NO.text='" . __('Cancel', 'common') . "';" . // No/Cancel button text for Confirm dialog
|
||||
"</script>"
|
||||
);
|
||||
return $this;
|
||||
} else if($name == 'selectize') {
|
||||
static $selectizeLoaded = false;
|
||||
if($selectizeLoaded) return $this;
|
||||
$selectizeLoaded = true;
|
||||
$config = $this->wire('config');
|
||||
$url = $config->urls('JqueryUI') . 'selectize/';
|
||||
$config->styles->add($url . 'css/selectize.css');
|
||||
$config->scripts->add($url . 'js/standalone/selectize.' . ($config->debug ? 'js' : 'min.js'));
|
||||
return $this;
|
||||
}
|
||||
return parent::___use($name);
|
||||
|
202
wire/modules/Jquery/JqueryUI/selectize/LICENSE
Executable file
202
wire/modules/Jquery/JqueryUI/selectize/LICENSE
Executable file
@@ -0,0 +1,202 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright 2013–2015 Brian Reavis
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
494
wire/modules/Jquery/JqueryUI/selectize/css/selectize.bootstrap2.css
Executable file
494
wire/modules/Jquery/JqueryUI/selectize/css/selectize.bootstrap2.css
Executable file
@@ -0,0 +1,494 @@
|
||||
/**
|
||||
* selectize.bootstrap2.css (v0.12.4) - Bootstrap 2 Theme
|
||||
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
||||
* file except in compliance with the License. You may obtain a copy of the License at:
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software distributed under
|
||||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
||||
* ANY KIND, either express or implied. See the License for the specific language
|
||||
* governing permissions and limitations under the License.
|
||||
*
|
||||
* @author Brian Reavis <brian@thirdroute.com>
|
||||
*/
|
||||
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
|
||||
visibility: visible !important;
|
||||
background: #f2f2f2 !important;
|
||||
background: rgba(0, 0, 0, 0.06) !important;
|
||||
border: 0 none !important;
|
||||
-webkit-box-shadow: inset 0 0 12px 4px #ffffff;
|
||||
box-shadow: inset 0 0 12px 4px #ffffff;
|
||||
}
|
||||
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
|
||||
content: '!';
|
||||
visibility: hidden;
|
||||
}
|
||||
.selectize-control.plugin-drag_drop .ui-sortable-helper {
|
||||
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.selectize-dropdown-header {
|
||||
position: relative;
|
||||
padding: 3px 10px;
|
||||
border-bottom: 1px solid #d0d0d0;
|
||||
background: #f8f8f8;
|
||||
-webkit-border-radius: 4px 4px 0 0;
|
||||
-moz-border-radius: 4px 4px 0 0;
|
||||
border-radius: 4px 4px 0 0;
|
||||
}
|
||||
.selectize-dropdown-header-close {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 50%;
|
||||
color: #333333;
|
||||
opacity: 0.4;
|
||||
margin-top: -12px;
|
||||
line-height: 20px;
|
||||
font-size: 20px !important;
|
||||
}
|
||||
.selectize-dropdown-header-close:hover {
|
||||
color: #000000;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup {
|
||||
border-right: 1px solid #f2f2f2;
|
||||
border-top: 0 none;
|
||||
float: left;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
|
||||
border-right: 0 none;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
|
||||
display: none;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
|
||||
border-top: 0 none;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] {
|
||||
position: relative;
|
||||
padding-right: 24px !important;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] .remove {
|
||||
z-index: 1;
|
||||
/* fixes ie bug (see #392) */
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 17px;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
vertical-align: middle;
|
||||
display: inline-block;
|
||||
padding: 1px 0 0 0;
|
||||
border-left: 1px solid #cccccc;
|
||||
-webkit-border-radius: 0 2px 2px 0;
|
||||
-moz-border-radius: 0 2px 2px 0;
|
||||
border-radius: 0 2px 2px 0;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] .remove:hover {
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value].active .remove {
|
||||
border-left-color: #0077b3;
|
||||
}
|
||||
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
|
||||
background: none;
|
||||
}
|
||||
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
|
||||
border-left-color: #e0e0e0;
|
||||
}
|
||||
.selectize-control.plugin-remove_button .remove-single {
|
||||
position: absolute;
|
||||
right: 28px;
|
||||
top: 6px;
|
||||
font-size: 23px;
|
||||
}
|
||||
.selectize-control {
|
||||
position: relative;
|
||||
}
|
||||
.selectize-dropdown,
|
||||
.selectize-input,
|
||||
.selectize-input input {
|
||||
color: #333333;
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
-webkit-font-smoothing: inherit;
|
||||
}
|
||||
.selectize-input,
|
||||
.selectize-control.single .selectize-input.input-active {
|
||||
background: #ffffff;
|
||||
cursor: text;
|
||||
display: inline-block;
|
||||
}
|
||||
.selectize-input {
|
||||
border: 1px solid #d0d0d0;
|
||||
padding: 7px 10px;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.selectize-control.multi .selectize-input.has-items {
|
||||
padding: 5px 10px 2px;
|
||||
}
|
||||
.selectize-input.full {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.selectize-input.disabled,
|
||||
.selectize-input.disabled * {
|
||||
cursor: default !important;
|
||||
}
|
||||
.selectize-input.focus {
|
||||
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
.selectize-input.dropdown-active {
|
||||
-webkit-border-radius: 4px 4px 0 0;
|
||||
-moz-border-radius: 4px 4px 0 0;
|
||||
border-radius: 4px 4px 0 0;
|
||||
}
|
||||
.selectize-input > * {
|
||||
vertical-align: baseline;
|
||||
display: -moz-inline-stack;
|
||||
display: inline-block;
|
||||
zoom: 1;
|
||||
*display: inline;
|
||||
}
|
||||
.selectize-control.multi .selectize-input > div {
|
||||
cursor: pointer;
|
||||
margin: 0 3px 3px 0;
|
||||
padding: 1px 3px;
|
||||
background: #e6e6e6;
|
||||
color: #333333;
|
||||
border: 1px solid #cccccc;
|
||||
}
|
||||
.selectize-control.multi .selectize-input > div.active {
|
||||
background: #0088cc;
|
||||
color: #ffffff;
|
||||
border: 1px solid #0077b3;
|
||||
}
|
||||
.selectize-control.multi .selectize-input.disabled > div,
|
||||
.selectize-control.multi .selectize-input.disabled > div.active {
|
||||
color: #474747;
|
||||
background: #fafafa;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
.selectize-input > input {
|
||||
display: inline-block !important;
|
||||
padding: 0 !important;
|
||||
min-height: 0 !important;
|
||||
max-height: none !important;
|
||||
max-width: 100% !important;
|
||||
margin: 0 !important;
|
||||
text-indent: 0 !important;
|
||||
border: 0 none !important;
|
||||
background: none !important;
|
||||
line-height: inherit !important;
|
||||
-webkit-user-select: auto !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
.selectize-input > input::-ms-clear {
|
||||
display: none;
|
||||
}
|
||||
.selectize-input > input:focus {
|
||||
outline: none !important;
|
||||
}
|
||||
.selectize-input::after {
|
||||
content: ' ';
|
||||
display: block;
|
||||
clear: left;
|
||||
}
|
||||
.selectize-input.dropdown-active::before {
|
||||
content: ' ';
|
||||
display: block;
|
||||
position: absolute;
|
||||
background: #e5e5e5;
|
||||
height: 1px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
.selectize-dropdown {
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
border: 1px solid #cccccc;
|
||||
background: #ffffff;
|
||||
margin: -1px 0 0 0;
|
||||
border-top: 0 none;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
-webkit-border-radius: 0 0 4px 4px;
|
||||
-moz-border-radius: 0 0 4px 4px;
|
||||
border-radius: 0 0 4px 4px;
|
||||
}
|
||||
.selectize-dropdown [data-selectable] {
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
}
|
||||
.selectize-dropdown [data-selectable] .highlight {
|
||||
background: rgba(255, 237, 40, 0.4);
|
||||
-webkit-border-radius: 1px;
|
||||
-moz-border-radius: 1px;
|
||||
border-radius: 1px;
|
||||
}
|
||||
.selectize-dropdown [data-selectable],
|
||||
.selectize-dropdown .optgroup-header {
|
||||
padding: 3px 10px;
|
||||
}
|
||||
.selectize-dropdown .optgroup:first-child .optgroup-header {
|
||||
border-top: 0 none;
|
||||
}
|
||||
.selectize-dropdown .optgroup-header {
|
||||
color: #999999;
|
||||
background: #ffffff;
|
||||
cursor: default;
|
||||
}
|
||||
.selectize-dropdown .active {
|
||||
background-color: #0088cc;
|
||||
color: #ffffff;
|
||||
}
|
||||
.selectize-dropdown .active.create {
|
||||
color: #ffffff;
|
||||
}
|
||||
.selectize-dropdown .create {
|
||||
color: rgba(51, 51, 51, 0.5);
|
||||
}
|
||||
.selectize-dropdown-content {
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
max-height: 200px;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
.selectize-control.single .selectize-input,
|
||||
.selectize-control.single .selectize-input input {
|
||||
cursor: pointer;
|
||||
}
|
||||
.selectize-control.single .selectize-input.input-active,
|
||||
.selectize-control.single .selectize-input.input-active input {
|
||||
cursor: text;
|
||||
}
|
||||
.selectize-control.single .selectize-input:after {
|
||||
content: ' ';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 15px;
|
||||
margin-top: -3px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-style: solid;
|
||||
border-width: 5px 5px 0 5px;
|
||||
border-color: #000000 transparent transparent transparent;
|
||||
}
|
||||
.selectize-control.single .selectize-input.dropdown-active:after {
|
||||
margin-top: -4px;
|
||||
border-width: 0 5px 5px 5px;
|
||||
border-color: transparent transparent #000000 transparent;
|
||||
}
|
||||
.selectize-control.rtl.single .selectize-input:after {
|
||||
left: 15px;
|
||||
right: auto;
|
||||
}
|
||||
.selectize-control.rtl .selectize-input > input {
|
||||
margin: 0 4px 0 -2px !important;
|
||||
}
|
||||
.selectize-control .selectize-input.disabled {
|
||||
opacity: 0.5;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.selectize-dropdown {
|
||||
margin: 2px 0 0 0;
|
||||
z-index: 1000;
|
||||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||||
border-radius: 4px;
|
||||
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||||
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.selectize-dropdown .optgroup-header {
|
||||
font-size: 11px;
|
||||
font-weight: bold;
|
||||
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.selectize-dropdown .optgroup:first-child:before {
|
||||
display: none;
|
||||
}
|
||||
.selectize-dropdown .optgroup:before {
|
||||
content: ' ';
|
||||
display: block;
|
||||
*width: 100%;
|
||||
height: 1px;
|
||||
margin: 9px 1px;
|
||||
*margin: -5px 0 5px;
|
||||
overflow: hidden;
|
||||
background-color: #e5e5e5;
|
||||
border-bottom: 1px solid #ffffff;
|
||||
margin-left: -10px;
|
||||
margin-right: -10px;
|
||||
}
|
||||
.selectize-dropdown [data-selectable].active {
|
||||
background-color: #0081c2;
|
||||
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
|
||||
background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
|
||||
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
|
||||
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
|
||||
}
|
||||
.selectize-dropdown-content {
|
||||
padding: 5px 0;
|
||||
}
|
||||
.selectize-dropdown-header {
|
||||
padding: 6px 10px;
|
||||
}
|
||||
.selectize-input {
|
||||
-webkit-transition: border linear .2s, box-shadow linear .2s;
|
||||
-moz-transition: border linear .2s, box-shadow linear .2s;
|
||||
-o-transition: border linear .2s, box-shadow linear .2s;
|
||||
transition: border linear .2s, box-shadow linear .2s;
|
||||
}
|
||||
.selectize-input.dropdown-active {
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.selectize-input.dropdown-active::before {
|
||||
display: none;
|
||||
}
|
||||
.selectize-input.input-active,
|
||||
.selectize-input.input-active:hover,
|
||||
.selectize-control.multi .selectize-input.focus {
|
||||
background: #ffffff !important;
|
||||
border-color: rgba(82, 168, 236, 0.8) !important;
|
||||
outline: 0 !important;
|
||||
outline: thin dotted \9 !important;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6) !important;
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6) !important;
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6) !important;
|
||||
}
|
||||
.selectize-control.single .selectize-input {
|
||||
color: #333333;
|
||||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
||||
background-color: #f5f5f5;
|
||||
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
|
||||
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
|
||||
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
|
||||
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
|
||||
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #e6e6e6;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
||||
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
||||
box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
||||
}
|
||||
.selectize-control.single .selectize-input:hover,
|
||||
.selectize-control.single .selectize-input:focus,
|
||||
.selectize-control.single .selectize-input:active,
|
||||
.selectize-control.single .selectize-input.active,
|
||||
.selectize-control.single .selectize-input.disabled,
|
||||
.selectize-control.single .selectize-input[disabled] {
|
||||
color: #333333;
|
||||
background-color: #e6e6e6;
|
||||
*background-color: #d9d9d9;
|
||||
}
|
||||
.selectize-control.single .selectize-input:active,
|
||||
.selectize-control.single .selectize-input.active {
|
||||
background-color: #cccccc \9;
|
||||
}
|
||||
.selectize-control.single .selectize-input:hover {
|
||||
color: #333333;
|
||||
text-decoration: none;
|
||||
background-position: 0 -15px;
|
||||
-webkit-transition: background-position 0.1s linear;
|
||||
-moz-transition: background-position 0.1s linear;
|
||||
-o-transition: background-position 0.1s linear;
|
||||
transition: background-position 0.1s linear;
|
||||
}
|
||||
.selectize-control.single .selectize-input.disabled {
|
||||
background: #e6e6e6 !important;
|
||||
-webkit-box-shadow: none;
|
||||
-moz-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.selectize-control.multi .selectize-input {
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
}
|
||||
.selectize-control.multi .selectize-input.has-items {
|
||||
padding-left: 7px;
|
||||
padding-right: 7px;
|
||||
}
|
||||
.selectize-control.multi .selectize-input > div {
|
||||
color: #333333;
|
||||
text-shadow: none;
|
||||
background-color: #f5f5f5;
|
||||
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
|
||||
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
|
||||
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
|
||||
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
|
||||
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #e6e6e6;
|
||||
border: 1px solid #cccccc;
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
||||
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
||||
box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
||||
}
|
||||
.selectize-control.multi .selectize-input > div.active {
|
||||
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
|
||||
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
|
||||
box-shadow: 0 1px 2px rgba(0,0,0,.05);
|
||||
color: #ffffff;
|
||||
text-shadow: none;
|
||||
background-color: #0081c2;
|
||||
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
|
||||
background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
|
||||
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
|
||||
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
|
||||
border-color: #0077b3 #0077b3 #004466;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #0088cc;
|
||||
border: 1px solid #0088cc;
|
||||
}
|
408
wire/modules/Jquery/JqueryUI/selectize/css/selectize.bootstrap3.css
Executable file
408
wire/modules/Jquery/JqueryUI/selectize/css/selectize.bootstrap3.css
Executable file
@@ -0,0 +1,408 @@
|
||||
/**
|
||||
* selectize.bootstrap3.css (v0.12.4) - Bootstrap 3 Theme
|
||||
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
||||
* file except in compliance with the License. You may obtain a copy of the License at:
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software distributed under
|
||||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
||||
* ANY KIND, either express or implied. See the License for the specific language
|
||||
* governing permissions and limitations under the License.
|
||||
*
|
||||
* @author Brian Reavis <brian@thirdroute.com>
|
||||
*/
|
||||
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
|
||||
visibility: visible !important;
|
||||
background: #f2f2f2 !important;
|
||||
background: rgba(0, 0, 0, 0.06) !important;
|
||||
border: 0 none !important;
|
||||
-webkit-box-shadow: inset 0 0 12px 4px #ffffff;
|
||||
box-shadow: inset 0 0 12px 4px #ffffff;
|
||||
}
|
||||
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
|
||||
content: '!';
|
||||
visibility: hidden;
|
||||
}
|
||||
.selectize-control.plugin-drag_drop .ui-sortable-helper {
|
||||
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.selectize-dropdown-header {
|
||||
position: relative;
|
||||
padding: 3px 12px;
|
||||
border-bottom: 1px solid #d0d0d0;
|
||||
background: #f8f8f8;
|
||||
-webkit-border-radius: 4px 4px 0 0;
|
||||
-moz-border-radius: 4px 4px 0 0;
|
||||
border-radius: 4px 4px 0 0;
|
||||
}
|
||||
.selectize-dropdown-header-close {
|
||||
position: absolute;
|
||||
right: 12px;
|
||||
top: 50%;
|
||||
color: #333333;
|
||||
opacity: 0.4;
|
||||
margin-top: -12px;
|
||||
line-height: 20px;
|
||||
font-size: 20px !important;
|
||||
}
|
||||
.selectize-dropdown-header-close:hover {
|
||||
color: #000000;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup {
|
||||
border-right: 1px solid #f2f2f2;
|
||||
border-top: 0 none;
|
||||
float: left;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
|
||||
border-right: 0 none;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
|
||||
display: none;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
|
||||
border-top: 0 none;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] {
|
||||
position: relative;
|
||||
padding-right: 24px !important;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] .remove {
|
||||
z-index: 1;
|
||||
/* fixes ie bug (see #392) */
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 17px;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
vertical-align: middle;
|
||||
display: inline-block;
|
||||
padding: 1px 0 0 0;
|
||||
border-left: 1px solid rgba(0, 0, 0, 0);
|
||||
-webkit-border-radius: 0 2px 2px 0;
|
||||
-moz-border-radius: 0 2px 2px 0;
|
||||
border-radius: 0 2px 2px 0;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] .remove:hover {
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value].active .remove {
|
||||
border-left-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
|
||||
background: none;
|
||||
}
|
||||
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
|
||||
border-left-color: rgba(77, 77, 77, 0);
|
||||
}
|
||||
.selectize-control.plugin-remove_button .remove-single {
|
||||
position: absolute;
|
||||
right: 28px;
|
||||
top: 6px;
|
||||
font-size: 23px;
|
||||
}
|
||||
.selectize-control {
|
||||
position: relative;
|
||||
}
|
||||
.selectize-dropdown,
|
||||
.selectize-input,
|
||||
.selectize-input input {
|
||||
color: #333333;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
line-height: 20px;
|
||||
-webkit-font-smoothing: inherit;
|
||||
}
|
||||
.selectize-input,
|
||||
.selectize-control.single .selectize-input.input-active {
|
||||
background: #ffffff;
|
||||
cursor: text;
|
||||
display: inline-block;
|
||||
}
|
||||
.selectize-input {
|
||||
border: 1px solid #cccccc;
|
||||
padding: 6px 12px;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.selectize-control.multi .selectize-input.has-items {
|
||||
padding: 5px 12px 2px;
|
||||
}
|
||||
.selectize-input.full {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.selectize-input.disabled,
|
||||
.selectize-input.disabled * {
|
||||
cursor: default !important;
|
||||
}
|
||||
.selectize-input.focus {
|
||||
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
.selectize-input.dropdown-active {
|
||||
-webkit-border-radius: 4px 4px 0 0;
|
||||
-moz-border-radius: 4px 4px 0 0;
|
||||
border-radius: 4px 4px 0 0;
|
||||
}
|
||||
.selectize-input > * {
|
||||
vertical-align: baseline;
|
||||
display: -moz-inline-stack;
|
||||
display: inline-block;
|
||||
zoom: 1;
|
||||
*display: inline;
|
||||
}
|
||||
.selectize-control.multi .selectize-input > div {
|
||||
cursor: pointer;
|
||||
margin: 0 3px 3px 0;
|
||||
padding: 1px 3px;
|
||||
background: #efefef;
|
||||
color: #333333;
|
||||
border: 0 solid rgba(0, 0, 0, 0);
|
||||
}
|
||||
.selectize-control.multi .selectize-input > div.active {
|
||||
background: #428bca;
|
||||
color: #ffffff;
|
||||
border: 0 solid rgba(0, 0, 0, 0);
|
||||
}
|
||||
.selectize-control.multi .selectize-input.disabled > div,
|
||||
.selectize-control.multi .selectize-input.disabled > div.active {
|
||||
color: #808080;
|
||||
background: #ffffff;
|
||||
border: 0 solid rgba(77, 77, 77, 0);
|
||||
}
|
||||
.selectize-input > input {
|
||||
display: inline-block !important;
|
||||
padding: 0 !important;
|
||||
min-height: 0 !important;
|
||||
max-height: none !important;
|
||||
max-width: 100% !important;
|
||||
margin: 0 !important;
|
||||
text-indent: 0 !important;
|
||||
border: 0 none !important;
|
||||
background: none !important;
|
||||
line-height: inherit !important;
|
||||
-webkit-user-select: auto !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
.selectize-input > input::-ms-clear {
|
||||
display: none;
|
||||
}
|
||||
.selectize-input > input:focus {
|
||||
outline: none !important;
|
||||
}
|
||||
.selectize-input::after {
|
||||
content: ' ';
|
||||
display: block;
|
||||
clear: left;
|
||||
}
|
||||
.selectize-input.dropdown-active::before {
|
||||
content: ' ';
|
||||
display: block;
|
||||
position: absolute;
|
||||
background: #ffffff;
|
||||
height: 1px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
.selectize-dropdown {
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
border: 1px solid #d0d0d0;
|
||||
background: #ffffff;
|
||||
margin: -1px 0 0 0;
|
||||
border-top: 0 none;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
-webkit-border-radius: 0 0 4px 4px;
|
||||
-moz-border-radius: 0 0 4px 4px;
|
||||
border-radius: 0 0 4px 4px;
|
||||
}
|
||||
.selectize-dropdown [data-selectable] {
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
}
|
||||
.selectize-dropdown [data-selectable] .highlight {
|
||||
background: rgba(255, 237, 40, 0.4);
|
||||
-webkit-border-radius: 1px;
|
||||
-moz-border-radius: 1px;
|
||||
border-radius: 1px;
|
||||
}
|
||||
.selectize-dropdown [data-selectable],
|
||||
.selectize-dropdown .optgroup-header {
|
||||
padding: 3px 12px;
|
||||
}
|
||||
.selectize-dropdown .optgroup:first-child .optgroup-header {
|
||||
border-top: 0 none;
|
||||
}
|
||||
.selectize-dropdown .optgroup-header {
|
||||
color: #777777;
|
||||
background: #ffffff;
|
||||
cursor: default;
|
||||
}
|
||||
.selectize-dropdown .active {
|
||||
background-color: #f5f5f5;
|
||||
color: #262626;
|
||||
}
|
||||
.selectize-dropdown .active.create {
|
||||
color: #262626;
|
||||
}
|
||||
.selectize-dropdown .create {
|
||||
color: rgba(51, 51, 51, 0.5);
|
||||
}
|
||||
.selectize-dropdown-content {
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
max-height: 200px;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
.selectize-control.single .selectize-input,
|
||||
.selectize-control.single .selectize-input input {
|
||||
cursor: pointer;
|
||||
}
|
||||
.selectize-control.single .selectize-input.input-active,
|
||||
.selectize-control.single .selectize-input.input-active input {
|
||||
cursor: text;
|
||||
}
|
||||
.selectize-control.single .selectize-input:after {
|
||||
content: ' ';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 17px;
|
||||
margin-top: -3px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-style: solid;
|
||||
border-width: 5px 5px 0 5px;
|
||||
border-color: #333333 transparent transparent transparent;
|
||||
}
|
||||
.selectize-control.single .selectize-input.dropdown-active:after {
|
||||
margin-top: -4px;
|
||||
border-width: 0 5px 5px 5px;
|
||||
border-color: transparent transparent #333333 transparent;
|
||||
}
|
||||
.selectize-control.rtl.single .selectize-input:after {
|
||||
left: 17px;
|
||||
right: auto;
|
||||
}
|
||||
.selectize-control.rtl .selectize-input > input {
|
||||
margin: 0 4px 0 -2px !important;
|
||||
}
|
||||
.selectize-control .selectize-input.disabled {
|
||||
opacity: 0.5;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.selectize-dropdown,
|
||||
.selectize-dropdown.form-control {
|
||||
height: auto;
|
||||
padding: 0;
|
||||
margin: 2px 0 0 0;
|
||||
z-index: 1000;
|
||||
background: #ffffff;
|
||||
border: 1px solid #cccccc;
|
||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||||
}
|
||||
.selectize-dropdown .optgroup-header {
|
||||
font-size: 12px;
|
||||
line-height: 1.42857143;
|
||||
}
|
||||
.selectize-dropdown .optgroup:first-child:before {
|
||||
display: none;
|
||||
}
|
||||
.selectize-dropdown .optgroup:before {
|
||||
content: ' ';
|
||||
display: block;
|
||||
height: 1px;
|
||||
margin: 9px 0;
|
||||
overflow: hidden;
|
||||
background-color: #e5e5e5;
|
||||
margin-left: -12px;
|
||||
margin-right: -12px;
|
||||
}
|
||||
.selectize-dropdown-content {
|
||||
padding: 5px 0;
|
||||
}
|
||||
.selectize-dropdown-header {
|
||||
padding: 6px 12px;
|
||||
}
|
||||
.selectize-input {
|
||||
min-height: 34px;
|
||||
}
|
||||
.selectize-input.dropdown-active {
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.selectize-input.dropdown-active::before {
|
||||
display: none;
|
||||
}
|
||||
.selectize-input.focus {
|
||||
border-color: #66afe9;
|
||||
outline: 0;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
||||
}
|
||||
.has-error .selectize-input {
|
||||
border-color: #a94442;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
}
|
||||
.has-error .selectize-input:focus {
|
||||
border-color: #843534;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
|
||||
}
|
||||
.selectize-control.multi .selectize-input.has-items {
|
||||
padding-left: 9px;
|
||||
padding-right: 9px;
|
||||
}
|
||||
.selectize-control.multi .selectize-input > div {
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
.form-control.selectize-control {
|
||||
padding: 0;
|
||||
height: auto;
|
||||
border: none;
|
||||
background: none;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
-webkit-border-radius: 0;
|
||||
-moz-border-radius: 0;
|
||||
border-radius: 0;
|
||||
}
|
326
wire/modules/Jquery/JqueryUI/selectize/css/selectize.css
Executable file
326
wire/modules/Jquery/JqueryUI/selectize/css/selectize.css
Executable file
@@ -0,0 +1,326 @@
|
||||
/**
|
||||
* selectize.css (v0.12.4)
|
||||
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
||||
* file except in compliance with the License. You may obtain a copy of the License at:
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software distributed under
|
||||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
||||
* ANY KIND, either express or implied. See the License for the specific language
|
||||
* governing permissions and limitations under the License.
|
||||
*
|
||||
* @author Brian Reavis <brian@thirdroute.com>
|
||||
*/
|
||||
|
||||
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
|
||||
visibility: visible !important;
|
||||
background: #f2f2f2 !important;
|
||||
background: rgba(0, 0, 0, 0.06) !important;
|
||||
border: 0 none !important;
|
||||
-webkit-box-shadow: inset 0 0 12px 4px #ffffff;
|
||||
box-shadow: inset 0 0 12px 4px #ffffff;
|
||||
}
|
||||
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
|
||||
content: '!';
|
||||
visibility: hidden;
|
||||
}
|
||||
.selectize-control.plugin-drag_drop .ui-sortable-helper {
|
||||
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.selectize-dropdown-header {
|
||||
position: relative;
|
||||
padding: 5px 8px;
|
||||
border-bottom: 1px solid #d0d0d0;
|
||||
background: #f8f8f8;
|
||||
-webkit-border-radius: 3px 3px 0 0;
|
||||
-moz-border-radius: 3px 3px 0 0;
|
||||
border-radius: 3px 3px 0 0;
|
||||
}
|
||||
.selectize-dropdown-header-close {
|
||||
position: absolute;
|
||||
right: 8px;
|
||||
top: 50%;
|
||||
color: #303030;
|
||||
opacity: 0.4;
|
||||
margin-top: -12px;
|
||||
line-height: 20px;
|
||||
font-size: 20px !important;
|
||||
}
|
||||
.selectize-dropdown-header-close:hover {
|
||||
color: #000000;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup {
|
||||
border-right: 1px solid #f2f2f2;
|
||||
border-top: 0 none;
|
||||
float: left;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
|
||||
border-right: 0 none;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
|
||||
display: none;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
|
||||
border-top: 0 none;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] {
|
||||
position: relative;
|
||||
padding-right: 24px !important;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] .remove {
|
||||
z-index: 10;
|
||||
/* fixes ie bug (see #392) */
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 17px;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
vertical-align: middle;
|
||||
display: inline-block;
|
||||
padding: 2px 0 0 0;
|
||||
border-left: 1px solid #d0d0d0;
|
||||
-webkit-border-radius: 0 2px 2px 0;
|
||||
-moz-border-radius: 0 2px 2px 0;
|
||||
border-radius: 0 2px 2px 0;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] .remove:hover {
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value].active .remove {
|
||||
border-left-color: #cacaca;
|
||||
}
|
||||
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
|
||||
background: none;
|
||||
}
|
||||
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
|
||||
border-left-color: #ffffff;
|
||||
}
|
||||
.selectize-control.plugin-remove_button .remove-single {
|
||||
position: absolute;
|
||||
right: 28px;
|
||||
top: 6px;
|
||||
font-size: 23px;
|
||||
}
|
||||
.selectize-control {
|
||||
position: relative;
|
||||
}
|
||||
.selectize-dropdown,
|
||||
.selectize-input,
|
||||
.selectize-input input {
|
||||
color: #303030;
|
||||
font-family: inherit;
|
||||
font-size: 13px;
|
||||
line-height: 18px;
|
||||
-webkit-font-smoothing: inherit;
|
||||
}
|
||||
.selectize-input,
|
||||
.selectize-control.single .selectize-input.input-active {
|
||||
background: #ffffff;
|
||||
cursor: text;
|
||||
display: inline-block;
|
||||
}
|
||||
.selectize-input {
|
||||
border: 1px solid #d0d0d0;
|
||||
padding: 8px 8px;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
/*
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
*/
|
||||
}
|
||||
.selectize-control.multi .selectize-input.has-items {
|
||||
padding: 6px 8px 3px;
|
||||
}
|
||||
.selectize-input.full {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.selectize-input.disabled,
|
||||
.selectize-input.disabled * {
|
||||
cursor: default !important;
|
||||
}
|
||||
.selectize-input.focus {
|
||||
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
.selectize-input.dropdown-active {
|
||||
-webkit-border-radius: 3px 3px 0 0;
|
||||
-moz-border-radius: 3px 3px 0 0;
|
||||
border-radius: 3px 3px 0 0;
|
||||
}
|
||||
.selectize-input > * {
|
||||
vertical-align: baseline;
|
||||
display: -moz-inline-stack;
|
||||
display: inline-block;
|
||||
zoom: 1;
|
||||
*display: inline;
|
||||
}
|
||||
.selectize-control.multi .selectize-input > div {
|
||||
cursor: pointer;
|
||||
margin: 0 3px 3px 0;
|
||||
padding: 2px 6px;
|
||||
background: #f2f2f2;
|
||||
color: #303030;
|
||||
border: 0 solid #d0d0d0;
|
||||
}
|
||||
.selectize-control.multi .selectize-input > div.active {
|
||||
background: #e8e8e8;
|
||||
color: #303030;
|
||||
border: 0 solid #cacaca;
|
||||
}
|
||||
.selectize-control.multi .selectize-input.disabled > div,
|
||||
.selectize-control.multi .selectize-input.disabled > div.active {
|
||||
color: #7d7d7d;
|
||||
background: #ffffff;
|
||||
border: 0 solid #ffffff;
|
||||
}
|
||||
.selectize-input > input {
|
||||
display: inline-block !important;
|
||||
padding: 0 !important;
|
||||
min-height: 0 !important;
|
||||
max-height: none !important;
|
||||
max-width: 100% !important;
|
||||
margin: 0 2px 0 0 !important;
|
||||
text-indent: 0 !important;
|
||||
border: 0 none !important;
|
||||
background: none !important;
|
||||
line-height: inherit !important;
|
||||
-webkit-user-select: auto !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
.selectize-input > input::-ms-clear {
|
||||
display: none;
|
||||
}
|
||||
.selectize-input > input:focus {
|
||||
outline: none !important;
|
||||
}
|
||||
.selectize-input::after {
|
||||
content: ' ';
|
||||
display: block;
|
||||
clear: left;
|
||||
}
|
||||
.selectize-input.dropdown-active::before {
|
||||
content: ' ';
|
||||
display: block;
|
||||
position: absolute;
|
||||
background: #f0f0f0;
|
||||
height: 1px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
.selectize-dropdown {
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
border: 1px solid #d0d0d0;
|
||||
background: #ffffff;
|
||||
margin: -1px 0 0 0;
|
||||
border-top: 0 none;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
-webkit-border-radius: 0 0 3px 3px;
|
||||
-moz-border-radius: 0 0 3px 3px;
|
||||
border-radius: 0 0 3px 3px;
|
||||
}
|
||||
.selectize-dropdown [data-selectable] {
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
}
|
||||
.selectize-dropdown [data-selectable] .highlight {
|
||||
background: rgba(125, 168, 208, 0.2);
|
||||
-webkit-border-radius: 1px;
|
||||
-moz-border-radius: 1px;
|
||||
border-radius: 1px;
|
||||
}
|
||||
.selectize-dropdown [data-selectable],
|
||||
.selectize-dropdown .optgroup-header {
|
||||
padding: 5px 8px;
|
||||
}
|
||||
.selectize-dropdown .optgroup:first-child .optgroup-header {
|
||||
border-top: 0 none;
|
||||
}
|
||||
.selectize-dropdown .optgroup-header {
|
||||
color: #303030;
|
||||
background: #ffffff;
|
||||
cursor: default;
|
||||
}
|
||||
.selectize-dropdown .active {
|
||||
background-color: #f5fafd;
|
||||
color: #495c68;
|
||||
}
|
||||
.selectize-dropdown .active.create {
|
||||
color: #495c68;
|
||||
}
|
||||
.selectize-dropdown .create {
|
||||
color: rgba(48, 48, 48, 0.5);
|
||||
}
|
||||
.selectize-dropdown-content {
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
max-height: 200px;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
.selectize-control.single .selectize-input,
|
||||
.selectize-control.single .selectize-input input {
|
||||
cursor: pointer;
|
||||
}
|
||||
.selectize-control.single .selectize-input.input-active,
|
||||
.selectize-control.single .selectize-input.input-active input {
|
||||
cursor: text;
|
||||
}
|
||||
.selectize-control.single .selectize-input:after {
|
||||
content: ' ';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 15px;
|
||||
margin-top: -3px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-style: solid;
|
||||
border-width: 5px 5px 0 5px;
|
||||
border-color: #808080 transparent transparent transparent;
|
||||
}
|
||||
.selectize-control.single .selectize-input.dropdown-active:after {
|
||||
margin-top: -4px;
|
||||
border-width: 0 5px 5px 5px;
|
||||
border-color: transparent transparent #808080 transparent;
|
||||
}
|
||||
.selectize-control.rtl.single .selectize-input:after {
|
||||
left: 15px;
|
||||
right: auto;
|
||||
}
|
||||
.selectize-control.rtl .selectize-input > input {
|
||||
margin: 0 4px 0 -2px !important;
|
||||
}
|
||||
.selectize-control .selectize-input.disabled {
|
||||
opacity: 0.5;
|
||||
background-color: #fafafa;
|
||||
}
|
394
wire/modules/Jquery/JqueryUI/selectize/css/selectize.default.css
Executable file
394
wire/modules/Jquery/JqueryUI/selectize/css/selectize.default.css
Executable file
@@ -0,0 +1,394 @@
|
||||
/**
|
||||
* selectize.default.css (v0.12.4) - Default Theme
|
||||
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
||||
* file except in compliance with the License. You may obtain a copy of the License at:
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software distributed under
|
||||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
||||
* ANY KIND, either express or implied. See the License for the specific language
|
||||
* governing permissions and limitations under the License.
|
||||
*
|
||||
* @author Brian Reavis <brian@thirdroute.com>
|
||||
*/
|
||||
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
|
||||
visibility: visible !important;
|
||||
background: #f2f2f2 !important;
|
||||
background: rgba(0, 0, 0, 0.06) !important;
|
||||
border: 0 none !important;
|
||||
-webkit-box-shadow: inset 0 0 12px 4px #ffffff;
|
||||
box-shadow: inset 0 0 12px 4px #ffffff;
|
||||
}
|
||||
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
|
||||
content: '!';
|
||||
visibility: hidden;
|
||||
}
|
||||
.selectize-control.plugin-drag_drop .ui-sortable-helper {
|
||||
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.selectize-dropdown-header {
|
||||
position: relative;
|
||||
padding: 5px 8px;
|
||||
border-bottom: 1px solid #d0d0d0;
|
||||
background: #f8f8f8;
|
||||
-webkit-border-radius: 3px 3px 0 0;
|
||||
-moz-border-radius: 3px 3px 0 0;
|
||||
border-radius: 3px 3px 0 0;
|
||||
}
|
||||
.selectize-dropdown-header-close {
|
||||
position: absolute;
|
||||
right: 8px;
|
||||
top: 50%;
|
||||
color: #303030;
|
||||
opacity: 0.4;
|
||||
margin-top: -12px;
|
||||
line-height: 20px;
|
||||
font-size: 20px !important;
|
||||
}
|
||||
.selectize-dropdown-header-close:hover {
|
||||
color: #000000;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup {
|
||||
border-right: 1px solid #f2f2f2;
|
||||
border-top: 0 none;
|
||||
float: left;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
|
||||
border-right: 0 none;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
|
||||
display: none;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
|
||||
border-top: 0 none;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] {
|
||||
position: relative;
|
||||
padding-right: 24px !important;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] .remove {
|
||||
z-index: 1;
|
||||
/* fixes ie bug (see #392) */
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 17px;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
vertical-align: middle;
|
||||
display: inline-block;
|
||||
padding: 2px 0 0 0;
|
||||
border-left: 1px solid #0073bb;
|
||||
-webkit-border-radius: 0 2px 2px 0;
|
||||
-moz-border-radius: 0 2px 2px 0;
|
||||
border-radius: 0 2px 2px 0;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] .remove:hover {
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value].active .remove {
|
||||
border-left-color: #00578d;
|
||||
}
|
||||
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
|
||||
background: none;
|
||||
}
|
||||
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
|
||||
border-left-color: #aaaaaa;
|
||||
}
|
||||
.selectize-control.plugin-remove_button .remove-single {
|
||||
position: absolute;
|
||||
right: 28px;
|
||||
top: 6px;
|
||||
font-size: 23px;
|
||||
}
|
||||
.selectize-control {
|
||||
position: relative;
|
||||
}
|
||||
.selectize-dropdown,
|
||||
.selectize-input,
|
||||
.selectize-input input {
|
||||
color: #303030;
|
||||
font-family: inherit;
|
||||
font-size: 13px;
|
||||
line-height: 18px;
|
||||
-webkit-font-smoothing: inherit;
|
||||
}
|
||||
.selectize-input,
|
||||
.selectize-control.single .selectize-input.input-active {
|
||||
background: #ffffff;
|
||||
cursor: text;
|
||||
display: inline-block;
|
||||
}
|
||||
.selectize-input {
|
||||
border: 1px solid #d0d0d0;
|
||||
padding: 8px 8px;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
.selectize-control.multi .selectize-input.has-items {
|
||||
padding: 5px 8px 2px;
|
||||
}
|
||||
.selectize-input.full {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.selectize-input.disabled,
|
||||
.selectize-input.disabled * {
|
||||
cursor: default !important;
|
||||
}
|
||||
.selectize-input.focus {
|
||||
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
.selectize-input.dropdown-active {
|
||||
-webkit-border-radius: 3px 3px 0 0;
|
||||
-moz-border-radius: 3px 3px 0 0;
|
||||
border-radius: 3px 3px 0 0;
|
||||
}
|
||||
.selectize-input > * {
|
||||
vertical-align: baseline;
|
||||
display: -moz-inline-stack;
|
||||
display: inline-block;
|
||||
zoom: 1;
|
||||
*display: inline;
|
||||
}
|
||||
.selectize-control.multi .selectize-input > div {
|
||||
cursor: pointer;
|
||||
margin: 0 3px 3px 0;
|
||||
padding: 2px 6px;
|
||||
background: #1da7ee;
|
||||
color: #ffffff;
|
||||
border: 1px solid #0073bb;
|
||||
}
|
||||
.selectize-control.multi .selectize-input > div.active {
|
||||
background: #92c836;
|
||||
color: #ffffff;
|
||||
border: 1px solid #00578d;
|
||||
}
|
||||
.selectize-control.multi .selectize-input.disabled > div,
|
||||
.selectize-control.multi .selectize-input.disabled > div.active {
|
||||
color: #ffffff;
|
||||
background: #d2d2d2;
|
||||
border: 1px solid #aaaaaa;
|
||||
}
|
||||
.selectize-input > input {
|
||||
display: inline-block !important;
|
||||
padding: 0 !important;
|
||||
min-height: 0 !important;
|
||||
max-height: none !important;
|
||||
max-width: 100% !important;
|
||||
margin: 0 1px !important;
|
||||
text-indent: 0 !important;
|
||||
border: 0 none !important;
|
||||
background: none !important;
|
||||
line-height: inherit !important;
|
||||
-webkit-user-select: auto !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
.selectize-input > input::-ms-clear {
|
||||
display: none;
|
||||
}
|
||||
.selectize-input > input:focus {
|
||||
outline: none !important;
|
||||
}
|
||||
.selectize-input::after {
|
||||
content: ' ';
|
||||
display: block;
|
||||
clear: left;
|
||||
}
|
||||
.selectize-input.dropdown-active::before {
|
||||
content: ' ';
|
||||
display: block;
|
||||
position: absolute;
|
||||
background: #f0f0f0;
|
||||
height: 1px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
.selectize-dropdown {
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
border: 1px solid #d0d0d0;
|
||||
background: #ffffff;
|
||||
margin: -1px 0 0 0;
|
||||
border-top: 0 none;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
-webkit-border-radius: 0 0 3px 3px;
|
||||
-moz-border-radius: 0 0 3px 3px;
|
||||
border-radius: 0 0 3px 3px;
|
||||
}
|
||||
.selectize-dropdown [data-selectable] {
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
}
|
||||
.selectize-dropdown [data-selectable] .highlight {
|
||||
background: rgba(125, 168, 208, 0.2);
|
||||
-webkit-border-radius: 1px;
|
||||
-moz-border-radius: 1px;
|
||||
border-radius: 1px;
|
||||
}
|
||||
.selectize-dropdown [data-selectable],
|
||||
.selectize-dropdown .optgroup-header {
|
||||
padding: 5px 8px;
|
||||
}
|
||||
.selectize-dropdown .optgroup:first-child .optgroup-header {
|
||||
border-top: 0 none;
|
||||
}
|
||||
.selectize-dropdown .optgroup-header {
|
||||
color: #303030;
|
||||
background: #ffffff;
|
||||
cursor: default;
|
||||
}
|
||||
.selectize-dropdown .active {
|
||||
background-color: #f5fafd;
|
||||
color: #495c68;
|
||||
}
|
||||
.selectize-dropdown .active.create {
|
||||
color: #495c68;
|
||||
}
|
||||
.selectize-dropdown .create {
|
||||
color: rgba(48, 48, 48, 0.5);
|
||||
}
|
||||
.selectize-dropdown-content {
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
max-height: 200px;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
.selectize-control.single .selectize-input,
|
||||
.selectize-control.single .selectize-input input {
|
||||
cursor: pointer;
|
||||
}
|
||||
.selectize-control.single .selectize-input.input-active,
|
||||
.selectize-control.single .selectize-input.input-active input {
|
||||
cursor: text;
|
||||
}
|
||||
.selectize-control.single .selectize-input:after {
|
||||
content: ' ';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 15px;
|
||||
margin-top: -3px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-style: solid;
|
||||
border-width: 5px 5px 0 5px;
|
||||
border-color: #808080 transparent transparent transparent;
|
||||
}
|
||||
.selectize-control.single .selectize-input.dropdown-active:after {
|
||||
margin-top: -4px;
|
||||
border-width: 0 5px 5px 5px;
|
||||
border-color: transparent transparent #808080 transparent;
|
||||
}
|
||||
.selectize-control.rtl.single .selectize-input:after {
|
||||
left: 15px;
|
||||
right: auto;
|
||||
}
|
||||
.selectize-control.rtl .selectize-input > input {
|
||||
margin: 0 4px 0 -2px !important;
|
||||
}
|
||||
.selectize-control .selectize-input.disabled {
|
||||
opacity: 0.5;
|
||||
background-color: #fafafa;
|
||||
}
|
||||
.selectize-control.multi .selectize-input.has-items {
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
.selectize-control.multi .selectize-input.disabled [data-value] {
|
||||
color: #999;
|
||||
text-shadow: none;
|
||||
background: none;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.selectize-control.multi .selectize-input.disabled [data-value],
|
||||
.selectize-control.multi .selectize-input.disabled [data-value] .remove {
|
||||
border-color: #e6e6e6;
|
||||
}
|
||||
.selectize-control.multi .selectize-input.disabled [data-value] .remove {
|
||||
background: none;
|
||||
}
|
||||
.selectize-control.multi .selectize-input [data-value] {
|
||||
text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
background-color: #1b9dec;
|
||||
background-image: -moz-linear-gradient(top, #1da7ee, #178ee9);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1da7ee), to(#178ee9));
|
||||
background-image: -webkit-linear-gradient(top, #1da7ee, #178ee9);
|
||||
background-image: -o-linear-gradient(top, #1da7ee, #178ee9);
|
||||
background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1da7ee', endColorstr='#ff178ee9', GradientType=0);
|
||||
-webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.2),inset 0 1px rgba(255,255,255,0.03);
|
||||
box-shadow: 0 1px 0 rgba(0,0,0,0.2),inset 0 1px rgba(255,255,255,0.03);
|
||||
}
|
||||
.selectize-control.multi .selectize-input [data-value].active {
|
||||
background-color: #0085d4;
|
||||
background-image: -moz-linear-gradient(top, #008fd8, #0075cf);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#008fd8), to(#0075cf));
|
||||
background-image: -webkit-linear-gradient(top, #008fd8, #0075cf);
|
||||
background-image: -o-linear-gradient(top, #008fd8, #0075cf);
|
||||
background-image: linear-gradient(to bottom, #008fd8, #0075cf);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff008fd8', endColorstr='#ff0075cf', GradientType=0);
|
||||
}
|
||||
.selectize-control.single .selectize-input {
|
||||
-webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
|
||||
box-shadow: 0 1px 0 rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
|
||||
background-color: #f9f9f9;
|
||||
background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#f2f2f2));
|
||||
background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
|
||||
background-image: -o-linear-gradient(top, #fefefe, #f2f2f2);
|
||||
background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefefe', endColorstr='#fff2f2f2', GradientType=0);
|
||||
}
|
||||
.selectize-control.single .selectize-input,
|
||||
.selectize-dropdown.single {
|
||||
border-color: #b8b8b8;
|
||||
}
|
||||
.selectize-dropdown .optgroup-header {
|
||||
padding-top: 7px;
|
||||
font-weight: bold;
|
||||
font-size: 0.85em;
|
||||
}
|
||||
.selectize-dropdown .optgroup {
|
||||
border-top: 1px solid #f0f0f0;
|
||||
}
|
||||
.selectize-dropdown .optgroup:first-child {
|
||||
border-top: 0 none;
|
||||
}
|
371
wire/modules/Jquery/JqueryUI/selectize/css/selectize.legacy.css
Executable file
371
wire/modules/Jquery/JqueryUI/selectize/css/selectize.legacy.css
Executable file
@@ -0,0 +1,371 @@
|
||||
/**
|
||||
* selectize.legacy.css (v0.12.4) - Default Theme
|
||||
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
||||
* file except in compliance with the License. You may obtain a copy of the License at:
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software distributed under
|
||||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
||||
* ANY KIND, either express or implied. See the License for the specific language
|
||||
* governing permissions and limitations under the License.
|
||||
*
|
||||
* @author Brian Reavis <brian@thirdroute.com>
|
||||
*/
|
||||
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
|
||||
visibility: visible !important;
|
||||
background: #f2f2f2 !important;
|
||||
background: rgba(0, 0, 0, 0.06) !important;
|
||||
border: 0 none !important;
|
||||
-webkit-box-shadow: inset 0 0 12px 4px #ffffff;
|
||||
box-shadow: inset 0 0 12px 4px #ffffff;
|
||||
}
|
||||
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
|
||||
content: '!';
|
||||
visibility: hidden;
|
||||
}
|
||||
.selectize-control.plugin-drag_drop .ui-sortable-helper {
|
||||
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.selectize-dropdown-header {
|
||||
position: relative;
|
||||
padding: 7px 10px;
|
||||
border-bottom: 1px solid #d0d0d0;
|
||||
background: #f8f8f8;
|
||||
-webkit-border-radius: 3px 3px 0 0;
|
||||
-moz-border-radius: 3px 3px 0 0;
|
||||
border-radius: 3px 3px 0 0;
|
||||
}
|
||||
.selectize-dropdown-header-close {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 50%;
|
||||
color: #303030;
|
||||
opacity: 0.4;
|
||||
margin-top: -12px;
|
||||
line-height: 20px;
|
||||
font-size: 20px !important;
|
||||
}
|
||||
.selectize-dropdown-header-close:hover {
|
||||
color: #000000;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup {
|
||||
border-right: 1px solid #f2f2f2;
|
||||
border-top: 0 none;
|
||||
float: left;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
|
||||
border-right: 0 none;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
|
||||
display: none;
|
||||
}
|
||||
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
|
||||
border-top: 0 none;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] {
|
||||
position: relative;
|
||||
padding-right: 24px !important;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] .remove {
|
||||
z-index: 1;
|
||||
/* fixes ie bug (see #392) */
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 17px;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
vertical-align: middle;
|
||||
display: inline-block;
|
||||
padding: 1px 0 0 0;
|
||||
border-left: 1px solid #74b21e;
|
||||
-webkit-border-radius: 0 2px 2px 0;
|
||||
-moz-border-radius: 0 2px 2px 0;
|
||||
border-radius: 0 2px 2px 0;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value] .remove:hover {
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
.selectize-control.plugin-remove_button [data-value].active .remove {
|
||||
border-left-color: #6f9839;
|
||||
}
|
||||
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
|
||||
background: none;
|
||||
}
|
||||
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
|
||||
border-left-color: #b4b4b4;
|
||||
}
|
||||
.selectize-control.plugin-remove_button .remove-single {
|
||||
position: absolute;
|
||||
right: 28px;
|
||||
top: 6px;
|
||||
font-size: 23px;
|
||||
}
|
||||
.selectize-control {
|
||||
position: relative;
|
||||
}
|
||||
.selectize-dropdown,
|
||||
.selectize-input,
|
||||
.selectize-input input {
|
||||
color: #303030;
|
||||
font-family: inherit;
|
||||
font-size: 13px;
|
||||
line-height: 20px;
|
||||
-webkit-font-smoothing: inherit;
|
||||
}
|
||||
.selectize-input,
|
||||
.selectize-control.single .selectize-input.input-active {
|
||||
background: #ffffff;
|
||||
cursor: text;
|
||||
display: inline-block;
|
||||
}
|
||||
.selectize-input {
|
||||
border: 1px solid #d0d0d0;
|
||||
padding: 10px 10px;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
.selectize-control.multi .selectize-input.has-items {
|
||||
padding: 8px 10px 4px;
|
||||
}
|
||||
.selectize-input.full {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
.selectize-input.disabled,
|
||||
.selectize-input.disabled * {
|
||||
cursor: default !important;
|
||||
}
|
||||
.selectize-input.focus {
|
||||
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
.selectize-input.dropdown-active {
|
||||
-webkit-border-radius: 3px 3px 0 0;
|
||||
-moz-border-radius: 3px 3px 0 0;
|
||||
border-radius: 3px 3px 0 0;
|
||||
}
|
||||
.selectize-input > * {
|
||||
vertical-align: baseline;
|
||||
display: -moz-inline-stack;
|
||||
display: inline-block;
|
||||
zoom: 1;
|
||||
*display: inline;
|
||||
}
|
||||
.selectize-control.multi .selectize-input > div {
|
||||
cursor: pointer;
|
||||
margin: 0 4px 4px 0;
|
||||
padding: 1px 5px;
|
||||
background: #b8e76f;
|
||||
color: #3d5d18;
|
||||
border: 1px solid #74b21e;
|
||||
}
|
||||
.selectize-control.multi .selectize-input > div.active {
|
||||
background: #92c836;
|
||||
color: #303030;
|
||||
border: 1px solid #6f9839;
|
||||
}
|
||||
.selectize-control.multi .selectize-input.disabled > div,
|
||||
.selectize-control.multi .selectize-input.disabled > div.active {
|
||||
color: #878787;
|
||||
background: #f8f8f8;
|
||||
border: 1px solid #b4b4b4;
|
||||
}
|
||||
.selectize-input > input {
|
||||
display: inline-block !important;
|
||||
padding: 0 !important;
|
||||
min-height: 0 !important;
|
||||
max-height: none !important;
|
||||
max-width: 100% !important;
|
||||
margin: 0 2px 0 0 !important;
|
||||
text-indent: 0 !important;
|
||||
border: 0 none !important;
|
||||
background: none !important;
|
||||
line-height: inherit !important;
|
||||
-webkit-user-select: auto !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
.selectize-input > input::-ms-clear {
|
||||
display: none;
|
||||
}
|
||||
.selectize-input > input:focus {
|
||||
outline: none !important;
|
||||
}
|
||||
.selectize-input::after {
|
||||
content: ' ';
|
||||
display: block;
|
||||
clear: left;
|
||||
}
|
||||
.selectize-input.dropdown-active::before {
|
||||
content: ' ';
|
||||
display: block;
|
||||
position: absolute;
|
||||
background: #f0f0f0;
|
||||
height: 1px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
.selectize-dropdown {
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
border: 1px solid #d0d0d0;
|
||||
background: #ffffff;
|
||||
margin: -1px 0 0 0;
|
||||
border-top: 0 none;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
-webkit-border-radius: 0 0 3px 3px;
|
||||
-moz-border-radius: 0 0 3px 3px;
|
||||
border-radius: 0 0 3px 3px;
|
||||
}
|
||||
.selectize-dropdown [data-selectable] {
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
}
|
||||
.selectize-dropdown [data-selectable] .highlight {
|
||||
background: rgba(255, 237, 40, 0.4);
|
||||
-webkit-border-radius: 1px;
|
||||
-moz-border-radius: 1px;
|
||||
border-radius: 1px;
|
||||
}
|
||||
.selectize-dropdown [data-selectable],
|
||||
.selectize-dropdown .optgroup-header {
|
||||
padding: 7px 10px;
|
||||
}
|
||||
.selectize-dropdown .optgroup:first-child .optgroup-header {
|
||||
border-top: 0 none;
|
||||
}
|
||||
.selectize-dropdown .optgroup-header {
|
||||
color: #303030;
|
||||
background: #f8f8f8;
|
||||
cursor: default;
|
||||
}
|
||||
.selectize-dropdown .active {
|
||||
background-color: #fffceb;
|
||||
color: #303030;
|
||||
}
|
||||
.selectize-dropdown .active.create {
|
||||
color: #303030;
|
||||
}
|
||||
.selectize-dropdown .create {
|
||||
color: rgba(48, 48, 48, 0.5);
|
||||
}
|
||||
.selectize-dropdown-content {
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
max-height: 200px;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
.selectize-control.single .selectize-input,
|
||||
.selectize-control.single .selectize-input input {
|
||||
cursor: pointer;
|
||||
}
|
||||
.selectize-control.single .selectize-input.input-active,
|
||||
.selectize-control.single .selectize-input.input-active input {
|
||||
cursor: text;
|
||||
}
|
||||
.selectize-control.single .selectize-input:after {
|
||||
content: ' ';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 15px;
|
||||
margin-top: -3px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-style: solid;
|
||||
border-width: 5px 5px 0 5px;
|
||||
border-color: #808080 transparent transparent transparent;
|
||||
}
|
||||
.selectize-control.single .selectize-input.dropdown-active:after {
|
||||
margin-top: -4px;
|
||||
border-width: 0 5px 5px 5px;
|
||||
border-color: transparent transparent #808080 transparent;
|
||||
}
|
||||
.selectize-control.rtl.single .selectize-input:after {
|
||||
left: 15px;
|
||||
right: auto;
|
||||
}
|
||||
.selectize-control.rtl .selectize-input > input {
|
||||
margin: 0 4px 0 -2px !important;
|
||||
}
|
||||
.selectize-control .selectize-input.disabled {
|
||||
opacity: 0.5;
|
||||
background-color: #fafafa;
|
||||
}
|
||||
.selectize-control.multi .selectize-input [data-value] {
|
||||
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
background-color: #b2e567;
|
||||
background-image: -moz-linear-gradient(top, #b8e76f, #a9e25c);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b8e76f), to(#a9e25c));
|
||||
background-image: -webkit-linear-gradient(top, #b8e76f, #a9e25c);
|
||||
background-image: -o-linear-gradient(top, #b8e76f, #a9e25c);
|
||||
background-image: linear-gradient(to bottom, #b8e76f, #a9e25c);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb8e76f', endColorstr='#ffa9e25c', GradientType=0);
|
||||
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.selectize-control.multi .selectize-input [data-value].active {
|
||||
background-color: #88c332;
|
||||
background-image: -moz-linear-gradient(top, #92c836, #7abc2c);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#92c836), to(#7abc2c));
|
||||
background-image: -webkit-linear-gradient(top, #92c836, #7abc2c);
|
||||
background-image: -o-linear-gradient(top, #92c836, #7abc2c);
|
||||
background-image: linear-gradient(to bottom, #92c836, #7abc2c);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff92c836', endColorstr='#ff7abc2c', GradientType=0);
|
||||
}
|
||||
.selectize-control.single .selectize-input {
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 2px 0 #e0e0e0, 0 3px 0 #c8c8c8, 0 4px 1px rgba(0,0,0,0.1);
|
||||
box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 2px 0 #e0e0e0, 0 3px 0 #c8c8c8, 0 4px 1px rgba(0,0,0,0.1);
|
||||
background-color: #f3f3f3;
|
||||
background-image: -moz-linear-gradient(top, #f5f5f5, #efefef);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#efefef));
|
||||
background-image: -webkit-linear-gradient(top, #f5f5f5, #efefef);
|
||||
background-image: -o-linear-gradient(top, #f5f5f5, #efefef);
|
||||
background-image: linear-gradient(to bottom, #f5f5f5, #efefef);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffefefef', GradientType=0);
|
||||
}
|
||||
.selectize-control.single .selectize-input,
|
||||
.selectize-dropdown.single {
|
||||
border-color: #b8b8b8;
|
||||
}
|
||||
.selectize-dropdown .optgroup-header {
|
||||
font-weight: bold;
|
||||
font-size: 0.8em;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
border-top: 1px solid #f0f0f0;
|
||||
}
|
3193
wire/modules/Jquery/JqueryUI/selectize/js/selectize.js
Executable file
3193
wire/modules/Jquery/JqueryUI/selectize/js/selectize.js
Executable file
File diff suppressed because it is too large
Load Diff
1
wire/modules/Jquery/JqueryUI/selectize/js/selectize.min.js
vendored
Executable file
1
wire/modules/Jquery/JqueryUI/selectize/js/selectize.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
3836
wire/modules/Jquery/JqueryUI/selectize/js/standalone/selectize.js
Executable file
3836
wire/modules/Jquery/JqueryUI/selectize/js/standalone/selectize.js
Executable file
File diff suppressed because it is too large
Load Diff
1
wire/modules/Jquery/JqueryUI/selectize/js/standalone/selectize.min.js
vendored
Normal file
1
wire/modules/Jquery/JqueryUI/selectize/js/standalone/selectize.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
16
wire/modules/Jquery/JqueryUI/selectize/less/plugins/drag_drop.less
Executable file
16
wire/modules/Jquery/JqueryUI/selectize/less/plugins/drag_drop.less
Executable file
@@ -0,0 +1,16 @@
|
||||
.selectize-control.plugin-drag_drop {
|
||||
&.multi > .selectize-input > div.ui-sortable-placeholder {
|
||||
visibility: visible !important;
|
||||
background: #f2f2f2 !important;
|
||||
background: rgba(0,0,0,0.06) !important;
|
||||
border: 0 none !important;
|
||||
.selectize-box-shadow(inset 0 0 12px 4px #fff);
|
||||
}
|
||||
.ui-sortable-placeholder::after {
|
||||
content: '!';
|
||||
visibility: hidden;
|
||||
}
|
||||
.ui-sortable-helper {
|
||||
.selectize-box-shadow(0 2px 5px rgba(0,0,0,0.2));
|
||||
}
|
||||
}
|
20
wire/modules/Jquery/JqueryUI/selectize/less/plugins/dropdown_header.less
Executable file
20
wire/modules/Jquery/JqueryUI/selectize/less/plugins/dropdown_header.less
Executable file
@@ -0,0 +1,20 @@
|
||||
.selectize-dropdown-header {
|
||||
position: relative;
|
||||
padding: @selectize-padding-dropdown-item-y @selectize-padding-dropdown-item-x;
|
||||
border-bottom: 1px solid @selectize-color-border;
|
||||
background: mix(@selectize-color-dropdown, @selectize-color-border, 85%);
|
||||
.selectize-border-radius(@selectize-border-radius @selectize-border-radius 0 0);
|
||||
}
|
||||
.selectize-dropdown-header-close {
|
||||
position: absolute;
|
||||
right: @selectize-padding-dropdown-item-x;
|
||||
top: 50%;
|
||||
color: @selectize-color-text;
|
||||
opacity: 0.4;
|
||||
margin-top: -12px;
|
||||
line-height: 20px;
|
||||
font-size: 20px !important;
|
||||
}
|
||||
.selectize-dropdown-header-close:hover {
|
||||
color: darken(@selectize-color-text, 25%);
|
||||
}
|
17
wire/modules/Jquery/JqueryUI/selectize/less/plugins/optgroup_columns.less
Executable file
17
wire/modules/Jquery/JqueryUI/selectize/less/plugins/optgroup_columns.less
Executable file
@@ -0,0 +1,17 @@
|
||||
.selectize-dropdown.plugin-optgroup_columns {
|
||||
.optgroup {
|
||||
border-right: 1px solid #f2f2f2;
|
||||
border-top: 0 none;
|
||||
float: left;
|
||||
.selectize-box-sizing(border-box);
|
||||
}
|
||||
.optgroup:last-child {
|
||||
border-right: 0 none;
|
||||
}
|
||||
.optgroup:before {
|
||||
display: none;
|
||||
}
|
||||
.optgroup-header {
|
||||
border-top: 0 none;
|
||||
}
|
||||
}
|
43
wire/modules/Jquery/JqueryUI/selectize/less/plugins/remove_button.less
Executable file
43
wire/modules/Jquery/JqueryUI/selectize/less/plugins/remove_button.less
Executable file
@@ -0,0 +1,43 @@
|
||||
.selectize-control.plugin-remove_button {
|
||||
[data-value] {
|
||||
position: relative;
|
||||
padding-right: 24px !important;
|
||||
}
|
||||
[data-value] .remove {
|
||||
z-index: 1; /* fixes ie bug (see #392) */
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 17px;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
vertical-align: middle;
|
||||
display: inline-block;
|
||||
padding: @selectize-padding-item-y 0 0 0;
|
||||
border-left: 1px solid @selectize-color-item-border;
|
||||
.selectize-border-radius(0 2px 2px 0);
|
||||
.selectize-box-sizing(border-box);
|
||||
}
|
||||
[data-value] .remove:hover {
|
||||
background: rgba(0,0,0,0.05);
|
||||
}
|
||||
[data-value].active .remove {
|
||||
border-left-color: @selectize-color-item-active-border;
|
||||
}
|
||||
.disabled [data-value] .remove:hover {
|
||||
background: none;
|
||||
}
|
||||
.disabled [data-value] .remove {
|
||||
border-left-color: lighten(desaturate(@selectize-color-item-border, 100%), @selectize-lighten-disabled-item-border);
|
||||
}
|
||||
.remove-single {
|
||||
position: absolute;
|
||||
right: 28px;
|
||||
top: 6px;
|
||||
font-size: 23px;
|
||||
}
|
||||
}
|
161
wire/modules/Jquery/JqueryUI/selectize/less/selectize.bootstrap2.less
Executable file
161
wire/modules/Jquery/JqueryUI/selectize/less/selectize.bootstrap2.less
Executable file
@@ -0,0 +1,161 @@
|
||||
/**
|
||||
* selectize.bootstrap2.css (v0.12.4) - Bootstrap 2 Theme
|
||||
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
||||
* file except in compliance with the License. You may obtain a copy of the License at:
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software distributed under
|
||||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
||||
* ANY KIND, either express or implied. See the License for the specific language
|
||||
* governing permissions and limitations under the License.
|
||||
*
|
||||
* @author Brian Reavis <brian@thirdroute.com>
|
||||
*/
|
||||
|
||||
@import "selectize";
|
||||
|
||||
@selectize-font-family: @baseFontFamily;
|
||||
@selectize-font-size: @baseFontSize;
|
||||
@selectize-line-height: @baseLineHeight;
|
||||
|
||||
@selectize-color-text: @textColor;
|
||||
@selectize-color-highlight: rgba(255,237,40,0.4);
|
||||
@selectize-color-input: @inputBackground;
|
||||
@selectize-color-input-full: @inputBackground;
|
||||
@selectize-color-disabled: @inputBackground;
|
||||
@selectize-color-item: @btnBackgroundHighlight;
|
||||
@selectize-color-item-border: @btnBorder;
|
||||
@selectize-color-item-active: @dropdownLinkBackgroundHover;
|
||||
@selectize-color-item-active-text: @dropdownLinkColorHover;
|
||||
@selectize-color-item-active-border: darken(@selectize-color-item-active, 5%);
|
||||
@selectize-color-optgroup: @dropdownBackground;
|
||||
@selectize-color-optgroup-text: @grayLight;
|
||||
@selectize-color-optgroup-border: @dropdownDividerTop;
|
||||
@selectize-color-dropdown: @dropdownBackground;
|
||||
@selectize-color-dropdown-border: @inputBorder;
|
||||
@selectize-color-dropdown-border-top: @dropdownDividerTop;
|
||||
@selectize-color-dropdown-item-active: @dropdownLinkBackgroundHover;
|
||||
@selectize-color-dropdown-item-active-text: @dropdownLinkColorHover;
|
||||
@selectize-color-dropdown-item-create-active-text: @dropdownLinkColorHover;
|
||||
@selectize-lighten-disabled-item: 8%;
|
||||
@selectize-lighten-disabled-item-text: 8%;
|
||||
@selectize-lighten-disabled-item-border: 8%;
|
||||
@selectize-opacity-disabled: 0.5;
|
||||
@selectize-shadow-input: none;
|
||||
@selectize-shadow-input-focus: inset 0 1px 2px rgba(0,0,0,0.15);
|
||||
@selectize-border-radius: @inputBorderRadius;
|
||||
|
||||
@selectize-padding-x: 10px;
|
||||
@selectize-padding-y: 7px;
|
||||
@selectize-padding-dropdown-item-x: @selectize-padding-x;
|
||||
@selectize-padding-dropdown-item-y: 3px;
|
||||
@selectize-padding-item-x: 3px;
|
||||
@selectize-padding-item-y: 1px;
|
||||
@selectize-margin-item-x: 3px;
|
||||
@selectize-margin-item-y: 3px;
|
||||
@selectize-caret-margin: 0;
|
||||
|
||||
@selectize-arrow-size: 5px;
|
||||
@selectize-arrow-color: @black;
|
||||
@selectize-arrow-offset: @selectize-padding-x + 5px;
|
||||
|
||||
@selectize-width-item-border: 1px;
|
||||
|
||||
.selectize-dropdown {
|
||||
margin: 2px 0 0 0;
|
||||
z-index: @zindexDropdown;
|
||||
border: 1px solid @dropdownBorder;
|
||||
border-radius: @baseBorderRadius;
|
||||
.box-shadow(0 5px 10px rgba(0,0,0,.2));
|
||||
|
||||
.optgroup-header {
|
||||
font-size: 11px;
|
||||
font-weight: bold;
|
||||
text-shadow: 0 1px 0 rgba(255,255,255,.5);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.optgroup:first-child:before {
|
||||
display: none;
|
||||
}
|
||||
.optgroup:before {
|
||||
content: ' ';
|
||||
display: block;
|
||||
.nav-divider();
|
||||
margin-left: @selectize-padding-dropdown-item-x * -1;
|
||||
margin-right: @selectize-padding-dropdown-item-x * -1;
|
||||
}
|
||||
|
||||
[data-selectable].active {
|
||||
#gradient > .vertical(@dropdownLinkBackgroundHover, darken(@dropdownLinkBackgroundHover, 5%));
|
||||
}
|
||||
}
|
||||
|
||||
.selectize-dropdown-content {
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
.selectize-dropdown-header {
|
||||
padding: @selectize-padding-dropdown-item-y * 2 @selectize-padding-dropdown-item-x;
|
||||
}
|
||||
|
||||
.selectize-input {
|
||||
.transition(~"border linear .2s, box-shadow linear .2s");
|
||||
|
||||
&.dropdown-active {
|
||||
.selectize-border-radius(@selectize-border-radius);
|
||||
}
|
||||
&.dropdown-active::before {
|
||||
display: none;
|
||||
}
|
||||
&.input-active, &.input-active:hover, .selectize-control.multi &.focus {
|
||||
background: @selectize-color-input !important;
|
||||
border-color: rgba(82,168,236,.8) !important;
|
||||
outline: 0 !important;
|
||||
outline: thin dotted \9 !important;
|
||||
.box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)") !important;
|
||||
}
|
||||
}
|
||||
|
||||
.selectize-control {
|
||||
&.single {
|
||||
.selectize-input {
|
||||
.buttonBackground(@btnBackground, @btnBackgroundHighlight, @grayDark, 0 1px 1px rgba(255,255,255,.75));
|
||||
.box-shadow(~"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)");
|
||||
&:hover {
|
||||
color: @grayDark;
|
||||
text-decoration: none;
|
||||
background-position: 0 -15px;
|
||||
.transition(background-position .1s linear);
|
||||
}
|
||||
&.disabled {
|
||||
background: @btnBackgroundHighlight !important;
|
||||
.box-shadow(none);
|
||||
}
|
||||
}
|
||||
}
|
||||
&.multi {
|
||||
.selectize-input {
|
||||
.box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
|
||||
&.has-items {
|
||||
@padding-x: @selectize-padding-x - @selectize-padding-item-x;
|
||||
padding-left: @padding-x;
|
||||
padding-right: @padding-x;
|
||||
}
|
||||
}
|
||||
.selectize-input > div {
|
||||
.gradientBar(@btnBackground, @btnBackgroundHighlight, @selectize-color-item-text, none);
|
||||
*background-color: @selectize-color-item;
|
||||
border: @selectize-width-item-border solid @selectize-color-item-border;
|
||||
.border-radius(@baseBorderRadius);
|
||||
.box-shadow(~"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)");
|
||||
&.active {
|
||||
.box-shadow(~"0 1px 2px rgba(0,0,0,.05)");
|
||||
.gradientBar(@selectize-color-item-active, @selectize-color-item-active-border, @selectize-color-item-active-text, none);
|
||||
*background-color: @selectize-color-item-active;
|
||||
border: @selectize-width-item-border solid @dropdownLinkBackgroundHover;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
150
wire/modules/Jquery/JqueryUI/selectize/less/selectize.bootstrap3.less
Executable file
150
wire/modules/Jquery/JqueryUI/selectize/less/selectize.bootstrap3.less
Executable file
@@ -0,0 +1,150 @@
|
||||
/**
|
||||
* selectize.bootstrap3.css (v0.12.4) - Bootstrap 3 Theme
|
||||
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
||||
* file except in compliance with the License. You may obtain a copy of the License at:
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software distributed under
|
||||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
||||
* ANY KIND, either express or implied. See the License for the specific language
|
||||
* governing permissions and limitations under the License.
|
||||
*
|
||||
* @author Brian Reavis <brian@thirdroute.com>
|
||||
*/
|
||||
|
||||
@import "selectize";
|
||||
|
||||
@selectize-font-family: inherit;
|
||||
@selectize-font-size: inherit;
|
||||
@selectize-line-height: @line-height-computed;
|
||||
|
||||
@selectize-color-text: @text-color;
|
||||
@selectize-color-highlight: rgba(255,237,40,0.4);
|
||||
@selectize-color-input: @input-bg;
|
||||
@selectize-color-input-full: @input-bg;
|
||||
@selectize-color-input-error: @state-danger-text;
|
||||
@selectize-color-input-error-focus: darken(@selectize-color-input-error, 10%);
|
||||
@selectize-color-disabled: @input-bg;
|
||||
@selectize-color-item: #efefef;
|
||||
@selectize-color-item-border: rgba(0,0,0,0);
|
||||
@selectize-color-item-active: @component-active-bg;
|
||||
@selectize-color-item-active-text: #fff;
|
||||
@selectize-color-item-active-border: rgba(0,0,0,0);
|
||||
@selectize-color-optgroup: @dropdown-bg;
|
||||
@selectize-color-optgroup-text: @dropdown-header-color;
|
||||
@selectize-color-optgroup-border: @dropdown-divider-bg;
|
||||
@selectize-color-dropdown: @dropdown-bg;
|
||||
@selectize-color-dropdown-border-top: mix(@input-border, @input-bg, 0.8);
|
||||
@selectize-color-dropdown-item-active: @dropdown-link-hover-bg;
|
||||
@selectize-color-dropdown-item-active-text: @dropdown-link-hover-color;
|
||||
@selectize-color-dropdown-item-create-active-text: @dropdown-link-hover-color;
|
||||
@selectize-opacity-disabled: 0.5;
|
||||
@selectize-shadow-input: none;
|
||||
@selectize-shadow-input-focus: inset 0 1px 2px rgba(0,0,0,0.15);
|
||||
@selectize-shadow-input-error: inset 0 1px 1px rgba(0, 0, 0, .075);
|
||||
@selectize-shadow-input-error-focus: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px lighten(@selectize-color-input-error, 20%);
|
||||
@selectize-border: 1px solid @input-border;
|
||||
@selectize-border-radius: @input-border-radius;
|
||||
|
||||
@selectize-width-item-border: 0;
|
||||
@selectize-padding-x: @padding-base-horizontal;
|
||||
@selectize-padding-y: @padding-base-vertical;
|
||||
@selectize-padding-dropdown-item-x: @padding-base-horizontal;
|
||||
@selectize-padding-dropdown-item-y: 3px;
|
||||
@selectize-padding-item-x: 3px;
|
||||
@selectize-padding-item-y: 1px;
|
||||
@selectize-margin-item-x: 3px;
|
||||
@selectize-margin-item-y: 3px;
|
||||
@selectize-caret-margin: 0;
|
||||
|
||||
@selectize-arrow-size: 5px;
|
||||
@selectize-arrow-color: @selectize-color-text;
|
||||
@selectize-arrow-offset: @selectize-padding-x + 5px;
|
||||
|
||||
.selectize-dropdown, .selectize-dropdown.form-control {
|
||||
height: auto;
|
||||
padding: 0;
|
||||
margin: 2px 0 0 0;
|
||||
z-index: @zindex-dropdown;
|
||||
background: @selectize-color-dropdown;
|
||||
border: 1px solid @dropdown-fallback-border;
|
||||
border: 1px solid @dropdown-border;
|
||||
.selectize-border-radius(@border-radius-base);
|
||||
.selectize-box-shadow(0 6px 12px rgba(0,0,0,.175));
|
||||
}
|
||||
|
||||
.selectize-dropdown {
|
||||
.optgroup-header {
|
||||
font-size: @font-size-small;
|
||||
line-height: @line-height-base;
|
||||
}
|
||||
.optgroup:first-child:before {
|
||||
display: none;
|
||||
}
|
||||
.optgroup:before {
|
||||
content: ' ';
|
||||
display: block;
|
||||
.nav-divider();
|
||||
margin-left: @selectize-padding-dropdown-item-x * -1;
|
||||
margin-right: @selectize-padding-dropdown-item-x * -1;
|
||||
}
|
||||
}
|
||||
|
||||
.selectize-dropdown-content {
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
.selectize-dropdown-header {
|
||||
padding: @selectize-padding-dropdown-item-y * 2 @selectize-padding-dropdown-item-x;
|
||||
}
|
||||
|
||||
.selectize-input {
|
||||
min-height: @input-height-base;
|
||||
|
||||
&.dropdown-active {
|
||||
.selectize-border-radius(@selectize-border-radius);
|
||||
}
|
||||
&.dropdown-active::before {
|
||||
display: none;
|
||||
}
|
||||
&.focus {
|
||||
@color: @input-border-focus;
|
||||
@color-rgba: rgba(red(@color), green(@color), blue(@color), .6);
|
||||
border-color: @color;
|
||||
outline: 0;
|
||||
.selectize-box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}");
|
||||
}
|
||||
}
|
||||
|
||||
.has-error .selectize-input {
|
||||
border-color: @selectize-color-input-error;
|
||||
.selectize-box-shadow(@selectize-shadow-input-error);
|
||||
|
||||
&:focus {
|
||||
border-color: @selectize-color-input-error-focus;
|
||||
.selectize-box-shadow(@selectize-shadow-input-error-focus);
|
||||
}
|
||||
}
|
||||
|
||||
.selectize-control {
|
||||
&.multi {
|
||||
.selectize-input.has-items {
|
||||
padding-left: @selectize-padding-x - @selectize-padding-item-x;
|
||||
padding-right: @selectize-padding-x - @selectize-padding-item-x;
|
||||
}
|
||||
.selectize-input > div {
|
||||
.selectize-border-radius(@selectize-border-radius - 1px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form-control.selectize-control {
|
||||
padding: 0;
|
||||
height: auto;
|
||||
border: none;
|
||||
background: none;
|
||||
.selectize-box-shadow(none);
|
||||
.selectize-border-radius(0);
|
||||
}
|
84
wire/modules/Jquery/JqueryUI/selectize/less/selectize.default.less
Executable file
84
wire/modules/Jquery/JqueryUI/selectize/less/selectize.default.less
Executable file
@@ -0,0 +1,84 @@
|
||||
/**
|
||||
* selectize.default.css (v0.12.4) - Default Theme
|
||||
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
||||
* file except in compliance with the License. You may obtain a copy of the License at:
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software distributed under
|
||||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
||||
* ANY KIND, either express or implied. See the License for the specific language
|
||||
* governing permissions and limitations under the License.
|
||||
*
|
||||
* @author Brian Reavis <brian@thirdroute.com>
|
||||
*/
|
||||
|
||||
@import "selectize";
|
||||
|
||||
@selectize-color-item: #1da7ee;
|
||||
@selectize-color-item-text: #fff;
|
||||
@selectize-color-item-active-text: #fff;
|
||||
@selectize-color-item-border: #0073bb;
|
||||
@selectize-color-item-active: #92c836;
|
||||
@selectize-color-item-active-border: #00578d;
|
||||
@selectize-width-item-border: 1px;
|
||||
@selectize-caret-margin: 0 1px;
|
||||
|
||||
.selectize-control {
|
||||
&.multi {
|
||||
.selectize-input {
|
||||
&.has-items {
|
||||
@padding-x: @selectize-padding-x - 3px;
|
||||
padding-left: @padding-x;
|
||||
padding-right: @padding-x;
|
||||
}
|
||||
&.disabled [data-value] {
|
||||
color: #999;
|
||||
text-shadow: none;
|
||||
background: none;
|
||||
.selectize-box-shadow(none);
|
||||
|
||||
&, .remove {
|
||||
border-color: #e6e6e6;
|
||||
}
|
||||
.remove {
|
||||
background: none;
|
||||
}
|
||||
}
|
||||
[data-value] {
|
||||
text-shadow: 0 1px 0 rgba(0,51,83,0.3);
|
||||
.selectize-border-radius(3px);
|
||||
.selectize-vertical-gradient(#1da7ee, #178ee9);
|
||||
.selectize-box-shadow(~"0 1px 0 rgba(0,0,0,0.2),inset 0 1px rgba(255,255,255,0.03)");
|
||||
&.active {
|
||||
.selectize-vertical-gradient(#008fd8, #0075cf);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.single {
|
||||
.selectize-input {
|
||||
.selectize-box-shadow(~"0 1px 0 rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8)");
|
||||
.selectize-vertical-gradient(#fefefe, #f2f2f2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.selectize-control.single .selectize-input, .selectize-dropdown.single {
|
||||
border-color: #b8b8b8;
|
||||
}
|
||||
|
||||
.selectize-dropdown {
|
||||
.optgroup-header {
|
||||
padding-top: @selectize-padding-dropdown-item-y + 2px;
|
||||
font-weight: bold;
|
||||
font-size: 0.85em;
|
||||
}
|
||||
.optgroup {
|
||||
border-top: 1px solid @selectize-color-dropdown-border-top;
|
||||
&:first-child {
|
||||
border-top: 0 none;
|
||||
}
|
||||
}
|
||||
}
|
75
wire/modules/Jquery/JqueryUI/selectize/less/selectize.legacy.less
Executable file
75
wire/modules/Jquery/JqueryUI/selectize/less/selectize.legacy.less
Executable file
@@ -0,0 +1,75 @@
|
||||
/**
|
||||
* selectize.legacy.css (v0.12.4) - Default Theme
|
||||
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
||||
* file except in compliance with the License. You may obtain a copy of the License at:
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software distributed under
|
||||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
||||
* ANY KIND, either express or implied. See the License for the specific language
|
||||
* governing permissions and limitations under the License.
|
||||
*
|
||||
* @author Brian Reavis <brian@thirdroute.com>
|
||||
*/
|
||||
|
||||
@import "selectize";
|
||||
|
||||
@selectize-font-size: 13px;
|
||||
@selectize-line-height: 20px;
|
||||
|
||||
@selectize-color-input-full: #f2f2f2;
|
||||
@selectize-color-item: #b8e76f;
|
||||
@selectize-color-item-text: #3d5d18;
|
||||
@selectize-color-item-border: #74b21e;
|
||||
@selectize-color-item-active: #92c836;
|
||||
@selectize-color-item-active-border: #6f9839;
|
||||
@selectize-color-highlight: rgba(255,237,40,0.4);
|
||||
@selectize-color-dropdown-item-active: #fffceb;
|
||||
@selectize-color-dropdown-item-active-text: @selectize-color-text;
|
||||
@selectize-color-optgroup: #f8f8f8;
|
||||
@selectize-color-optgroup-text: @selectize-color-text;
|
||||
@selectize-width-item-border: 1px;
|
||||
|
||||
@selectize-padding-x: 10px;
|
||||
@selectize-padding-y: 10px;
|
||||
@selectize-padding-item-x: 5px;
|
||||
@selectize-padding-item-y: 1px;
|
||||
@selectize-padding-dropdown-item-x: 10px;
|
||||
@selectize-padding-dropdown-item-y: 7px;
|
||||
@selectize-margin-item-x: 4px;
|
||||
@selectize-margin-item-y: 4px;
|
||||
|
||||
.selectize-control {
|
||||
&.multi {
|
||||
.selectize-input [data-value] {
|
||||
text-shadow: 0 1px 0 rgba(255,255,255,0.1);
|
||||
.selectize-border-radius(3px);
|
||||
.selectize-vertical-gradient(#b8e76f, #a9e25c);
|
||||
.selectize-box-shadow(0 1px 1px rgba(0,0,0,0.1));
|
||||
&.active {
|
||||
.selectize-vertical-gradient(#92c836, #7abc2c);
|
||||
}
|
||||
}
|
||||
}
|
||||
&.single {
|
||||
.selectize-input {
|
||||
.selectize-box-shadow(~"inset 0 1px 0 rgba(255,255,255,0.8), 0 2px 0 #e0e0e0, 0 3px 0 #c8c8c8, 0 4px 1px rgba(0,0,0,0.1)");
|
||||
.selectize-vertical-gradient(#f5f5f5, #efefef);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.selectize-control.single .selectize-input, .selectize-dropdown.single {
|
||||
border-color: #b8b8b8;
|
||||
}
|
||||
|
||||
.selectize-dropdown {
|
||||
.optgroup-header {
|
||||
font-weight: bold;
|
||||
font-size: 0.8em;
|
||||
border-bottom: 1px solid @selectize-color-dropdown-border-top;
|
||||
border-top: 1px solid @selectize-color-dropdown-border-top;
|
||||
}
|
||||
}
|
296
wire/modules/Jquery/JqueryUI/selectize/less/selectize.less
Executable file
296
wire/modules/Jquery/JqueryUI/selectize/less/selectize.less
Executable file
@@ -0,0 +1,296 @@
|
||||
@import "plugins/drag_drop";
|
||||
@import "plugins/dropdown_header";
|
||||
@import "plugins/optgroup_columns";
|
||||
@import "plugins/remove_button";
|
||||
|
||||
// base styles
|
||||
|
||||
@selectize-font-family: inherit;
|
||||
@selectize-font-smoothing: inherit;
|
||||
@selectize-font-size: 13px;
|
||||
@selectize-line-height: 18px;
|
||||
|
||||
@selectize-color-text: #303030;
|
||||
@selectize-color-border: #d0d0d0;
|
||||
@selectize-color-highlight: rgba(125,168,208,0.2);
|
||||
@selectize-color-input: #fff;
|
||||
@selectize-color-input-full: @selectize-color-input;
|
||||
@selectize-color-disabled: #fafafa;
|
||||
@selectize-color-item: #f2f2f2;
|
||||
@selectize-color-item-text: @selectize-color-text;
|
||||
@selectize-color-item-border: #d0d0d0;
|
||||
@selectize-color-item-active: #e8e8e8;
|
||||
@selectize-color-item-active-text: @selectize-color-text;
|
||||
@selectize-color-item-active-border: #cacaca;
|
||||
@selectize-color-dropdown: #fff;
|
||||
@selectize-color-dropdown-border: @selectize-color-border;
|
||||
@selectize-color-dropdown-border-top: #f0f0f0;
|
||||
@selectize-color-dropdown-item-active: #f5fafd;
|
||||
@selectize-color-dropdown-item-active-text: #495c68;
|
||||
@selectize-color-dropdown-item-create-text: rgba(red(@selectize-color-text), green(@selectize-color-text), blue(@selectize-color-text), 0.5);
|
||||
@selectize-color-dropdown-item-create-active-text: @selectize-color-dropdown-item-active-text;
|
||||
@selectize-color-optgroup: @selectize-color-dropdown;
|
||||
@selectize-color-optgroup-text: @selectize-color-text;
|
||||
@selectize-lighten-disabled-item: 30%;
|
||||
@selectize-lighten-disabled-item-text: 30%;
|
||||
@selectize-lighten-disabled-item-border: 30%;
|
||||
@selectize-opacity-disabled: 0.5;
|
||||
|
||||
@selectize-shadow-input: inset 0 1px 1px rgba(0,0,0,0.1);
|
||||
@selectize-shadow-input-focus: inset 0 1px 2px rgba(0,0,0,0.15);
|
||||
@selectize-border: 1px solid @selectize-color-border;
|
||||
@selectize-dropdown-border: 1px solid @selectize-color-dropdown-border;
|
||||
@selectize-border-radius: 3px;
|
||||
|
||||
@selectize-width-item-border: 0;
|
||||
@selectize-max-height-dropdown: 200px;
|
||||
|
||||
@selectize-padding-x: 8px;
|
||||
@selectize-padding-y: 8px;
|
||||
@selectize-padding-item-x: 6px;
|
||||
@selectize-padding-item-y: 2px;
|
||||
@selectize-padding-dropdown-item-x: @selectize-padding-x;
|
||||
@selectize-padding-dropdown-item-y: 5px;
|
||||
@selectize-margin-item-x: 3px;
|
||||
@selectize-margin-item-y: 3px;
|
||||
|
||||
@selectize-arrow-size: 5px;
|
||||
@selectize-arrow-color: #808080;
|
||||
@selectize-arrow-offset: 15px;
|
||||
|
||||
@selectize-caret-margin: 0 2px 0 0;
|
||||
@selectize-caret-margin-rtl: 0 4px 0 -2px;
|
||||
|
||||
.selectize-border-radius (@radii) {
|
||||
-webkit-border-radius: @radii;
|
||||
-moz-border-radius: @radii;
|
||||
border-radius: @radii;
|
||||
}
|
||||
.selectize-unselectable () {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.selectize-box-shadow (@shadow) {
|
||||
-webkit-box-shadow: @shadow;
|
||||
box-shadow: @shadow;
|
||||
}
|
||||
.selectize-box-sizing (@type: border-box) {
|
||||
-webkit-box-sizing: @type;
|
||||
-moz-box-sizing: @type;
|
||||
box-sizing: @type;
|
||||
}
|
||||
.selectize-vertical-gradient (@color-top, @color-bottom) {
|
||||
background-color: mix(@color-top, @color-bottom, 60%);
|
||||
background-image: -moz-linear-gradient(top, @color-top, @color-bottom); // FF 3.6+
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@color-top), to(@color-bottom)); // Safari 4+, Chrome 2+
|
||||
background-image: -webkit-linear-gradient(top, @color-top, @color-bottom); // Safari 5.1+, Chrome 10+
|
||||
background-image: -o-linear-gradient(top, @color-top, @color-bottom); // Opera 11.10
|
||||
background-image: linear-gradient(to bottom, @color-top, @color-bottom); // Standard, IE10
|
||||
background-repeat: repeat-x;
|
||||
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@color-top),argb(@color-bottom))); // IE9 and down
|
||||
}
|
||||
|
||||
.selectize-control {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.selectize-dropdown, .selectize-input, .selectize-input input {
|
||||
color: @selectize-color-text;
|
||||
font-family: @selectize-font-family;
|
||||
font-size: @selectize-font-size;
|
||||
line-height: @selectize-line-height;
|
||||
-webkit-font-smoothing: @selectize-font-smoothing;
|
||||
}
|
||||
|
||||
.selectize-input, .selectize-control.single .selectize-input.input-active {
|
||||
background: @selectize-color-input;
|
||||
cursor: text;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.selectize-input {
|
||||
border: @selectize-border;
|
||||
padding: @selectize-padding-y @selectize-padding-x;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
.selectize-box-sizing(border-box);
|
||||
.selectize-box-shadow(@selectize-shadow-input);
|
||||
.selectize-border-radius(@selectize-border-radius);
|
||||
|
||||
.selectize-control.multi &.has-items {
|
||||
@padding-x: @selectize-padding-x;
|
||||
@padding-top: @selectize-padding-y - @selectize-padding-item-y - @selectize-width-item-border;
|
||||
@padding-bottom: @selectize-padding-y - @selectize-padding-item-y - @selectize-margin-item-y - @selectize-width-item-border;
|
||||
padding: @padding-top @padding-x @padding-bottom;
|
||||
}
|
||||
|
||||
&.full {
|
||||
background-color: @selectize-color-input-full;
|
||||
}
|
||||
&.disabled, &.disabled * {
|
||||
cursor: default !important;
|
||||
}
|
||||
&.focus {
|
||||
.selectize-box-shadow(@selectize-shadow-input-focus);
|
||||
}
|
||||
&.dropdown-active {
|
||||
.selectize-border-radius(@selectize-border-radius @selectize-border-radius 0 0);
|
||||
}
|
||||
|
||||
> * {
|
||||
vertical-align: baseline;
|
||||
display: -moz-inline-stack;
|
||||
display: inline-block;
|
||||
zoom: 1;
|
||||
*display: inline;
|
||||
}
|
||||
.selectize-control.multi & > div {
|
||||
cursor: pointer;
|
||||
margin: 0 @selectize-margin-item-x @selectize-margin-item-y 0;
|
||||
padding: @selectize-padding-item-y @selectize-padding-item-x;
|
||||
background: @selectize-color-item;
|
||||
color: @selectize-color-item-text;
|
||||
border: @selectize-width-item-border solid @selectize-color-item-border;
|
||||
|
||||
&.active {
|
||||
background: @selectize-color-item-active;
|
||||
color: @selectize-color-item-active-text;
|
||||
border: @selectize-width-item-border solid @selectize-color-item-active-border;
|
||||
}
|
||||
}
|
||||
.selectize-control.multi &.disabled > div {
|
||||
&, &.active {
|
||||
color: lighten(desaturate(@selectize-color-item-text, 100%), @selectize-lighten-disabled-item-text);
|
||||
background: lighten(desaturate(@selectize-color-item, 100%), @selectize-lighten-disabled-item);
|
||||
border: @selectize-width-item-border solid lighten(desaturate(@selectize-color-item-border, 100%), @selectize-lighten-disabled-item-border);
|
||||
}
|
||||
}
|
||||
> input {
|
||||
&::-ms-clear {
|
||||
display: none;
|
||||
}
|
||||
display: inline-block !important;
|
||||
padding: 0 !important;
|
||||
min-height: 0 !important;
|
||||
max-height: none !important;
|
||||
max-width: 100% !important;
|
||||
margin: @selectize-caret-margin !important;
|
||||
text-indent: 0 !important;
|
||||
border: 0 none !important;
|
||||
background: none !important;
|
||||
line-height: inherit !important;
|
||||
-webkit-user-select: auto !important;
|
||||
.selectize-box-shadow(none) !important;
|
||||
&:focus { outline: none !important; }
|
||||
}
|
||||
}
|
||||
|
||||
.selectize-input::after {
|
||||
content: ' ';
|
||||
display: block;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
.selectize-input.dropdown-active::before {
|
||||
content: ' ';
|
||||
display: block;
|
||||
position: absolute;
|
||||
background: @selectize-color-dropdown-border-top;
|
||||
height: 1px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.selectize-dropdown {
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
border: @selectize-dropdown-border;
|
||||
background: @selectize-color-dropdown;
|
||||
margin: -1px 0 0 0;
|
||||
border-top: 0 none;
|
||||
.selectize-box-sizing(border-box);
|
||||
.selectize-box-shadow(0 1px 3px rgba(0,0,0,0.1));
|
||||
.selectize-border-radius(0 0 @selectize-border-radius @selectize-border-radius);
|
||||
|
||||
[data-selectable] {
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
.highlight {
|
||||
background: @selectize-color-highlight;
|
||||
.selectize-border-radius(1px);
|
||||
}
|
||||
}
|
||||
[data-selectable], .optgroup-header {
|
||||
padding: @selectize-padding-dropdown-item-y @selectize-padding-dropdown-item-x;
|
||||
}
|
||||
.optgroup:first-child .optgroup-header {
|
||||
border-top: 0 none;
|
||||
}
|
||||
.optgroup-header {
|
||||
color: @selectize-color-optgroup-text;
|
||||
background: @selectize-color-optgroup;
|
||||
cursor: default;
|
||||
}
|
||||
.active {
|
||||
background-color: @selectize-color-dropdown-item-active;
|
||||
color: @selectize-color-dropdown-item-active-text;
|
||||
&.create {
|
||||
color: @selectize-color-dropdown-item-create-active-text;
|
||||
}
|
||||
}
|
||||
.create {
|
||||
color: @selectize-color-dropdown-item-create-text;
|
||||
}
|
||||
}
|
||||
|
||||
.selectize-dropdown-content {
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
max-height: @selectize-max-height-dropdown;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
.selectize-control.single .selectize-input {
|
||||
&, input { cursor: pointer; }
|
||||
&.input-active, &.input-active input { cursor: text; }
|
||||
|
||||
&:after {
|
||||
content: ' ';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: @selectize-arrow-offset;
|
||||
margin-top: round((-1 * @selectize-arrow-size / 2));
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-style: solid;
|
||||
border-width: @selectize-arrow-size @selectize-arrow-size 0 @selectize-arrow-size;
|
||||
border-color: @selectize-arrow-color transparent transparent transparent;
|
||||
}
|
||||
&.dropdown-active:after {
|
||||
margin-top: @selectize-arrow-size * -0.8;
|
||||
border-width: 0 @selectize-arrow-size @selectize-arrow-size @selectize-arrow-size;
|
||||
border-color: transparent transparent @selectize-arrow-color transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.selectize-control.rtl {
|
||||
&.single .selectize-input:after {
|
||||
left: @selectize-arrow-offset;
|
||||
right: auto;
|
||||
}
|
||||
.selectize-input > input {
|
||||
margin: @selectize-caret-margin-rtl !important;
|
||||
}
|
||||
}
|
||||
|
||||
.selectize-control .selectize-input.disabled {
|
||||
opacity: @selectize-opacity-disabled;
|
||||
background-color: @selectize-color-disabled;
|
||||
}
|
Reference in New Issue
Block a user