code
stringlengths 3
1.01M
| repo_name
stringlengths 5
116
| path
stringlengths 3
311
| language
stringclasses 30
values | license
stringclasses 15
values | size
int64 3
1.01M
|
|---|---|---|---|---|---|
/*************************************************************************/
/* rasterizer_canvas_gles3.h */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* http://www.godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#ifndef RASTERIZERCANVASGLES3_H
#define RASTERIZERCANVASGLES3_H
#include "rasterizer_storage_gles3.h"
#include "servers/visual/rasterizer.h"
#include "shaders/canvas_shadow.glsl.h"
class RasterizerCanvasGLES3 : public RasterizerCanvas {
public:
struct CanvasItemUBO {
float projection_matrix[16];
float time;
};
struct Data {
GLuint canvas_quad_vertices;
GLuint canvas_quad_array;
GLuint polygon_buffer;
GLuint polygon_buffer_quad_arrays[4];
GLuint polygon_buffer_pointer_array;
GLuint polygon_index_buffer;
uint32_t polygon_buffer_size;
} data;
struct State {
CanvasItemUBO canvas_item_ubo_data;
GLuint canvas_item_ubo;
bool canvas_texscreen_used;
CanvasShaderGLES3 canvas_shader;
CanvasShadowShaderGLES3 canvas_shadow_shader;
bool using_texture_rect;
RID current_tex;
RID current_normal;
RasterizerStorageGLES3::Texture *current_tex_ptr;
Transform vp;
Color canvas_item_modulate;
Transform2D extra_matrix;
Transform2D final_transform;
} state;
RasterizerStorageGLES3 *storage;
struct LightInternal : public RID_Data {
struct UBOData {
float light_matrix[16];
float local_matrix[16];
float shadow_matrix[16];
float color[4];
float shadow_color[4];
float light_pos[2];
float shadowpixel_size;
float shadow_gradient;
float light_height;
float light_outside_alpha;
float shadow_distance_mult;
} ubo_data;
GLuint ubo;
};
RID_Owner<LightInternal> light_internal_owner;
virtual RID light_internal_create();
virtual void light_internal_update(RID p_rid, Light *p_light);
virtual void light_internal_free(RID p_rid);
virtual void canvas_begin();
virtual void canvas_end();
_FORCE_INLINE_ void _set_texture_rect_mode(bool p_enable);
_FORCE_INLINE_ RasterizerStorageGLES3::Texture *_bind_canvas_texture(const RID &p_texture, const RID &p_normal_map);
_FORCE_INLINE_ void _draw_gui_primitive(int p_points, const Vector2 *p_vertices, const Color *p_colors, const Vector2 *p_uvs);
_FORCE_INLINE_ void _draw_polygon(const int *p_indices, int p_index_count, int p_vertex_count, const Vector2 *p_vertices, const Vector2 *p_uvs, const Color *p_colors, bool p_singlecolor);
_FORCE_INLINE_ void _canvas_item_render_commands(Item *p_item, Item *current_clip, bool &reclip);
virtual void canvas_render_items(Item *p_item_list, int p_z, const Color &p_modulate, Light *p_light);
virtual void canvas_debug_viewport_shadows(Light *p_lights_with_shadow);
virtual void canvas_light_shadow_buffer_update(RID p_buffer, const Transform2D &p_light_xform, int p_light_mask, float p_near, float p_far, LightOccluderInstance *p_occluders, CameraMatrix *p_xform_cache);
virtual void reset_canvas();
void draw_generic_textured_rect(const Rect2 &p_rect, const Rect2 &p_src);
void initialize();
void finalize();
RasterizerCanvasGLES3();
};
#endif // RASTERIZERCANVASGLES3_H
|
exabon/godot
|
drivers/gles3/rasterizer_canvas_gles3.h
|
C
|
mit
| 5,083
|
<?php
/* AcmeDemoBundle:Secured:layout.html.twig */
class __TwigTemplate_d698011111183cc61872bdd7cbd930385164b75199b36b8b5267036d97700be2 extends Twig_Template
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
// line 1
try {
$this->parent = $this->env->loadTemplate("AcmeDemoBundle::layout.html.twig");
} catch (Twig_Error_Loader $e) {
$e->setTemplateFile($this->getTemplateName());
$e->setTemplateLine(1);
throw $e;
}
$this->blocks = array(
'content_header_more' => array($this, 'block_content_header_more'),
);
}
protected function doGetParent(array $context)
{
return "AcmeDemoBundle::layout.html.twig";
}
protected function doDisplay(array $context, array $blocks = array())
{
$this->parent->display($context, array_merge($this->blocks, $blocks));
}
// line 3
public function block_content_header_more($context, array $blocks = array())
{
// line 4
echo " ";
$this->displayParentBlock("content_header_more", $context, $blocks);
echo "
<li>logged in as <strong>";
// line 5
echo twig_escape_filter($this->env, (($this->getAttribute((isset($context["app"]) ? $context["app"] : $this->getContext($context, "app")), "user", array())) ? ($this->getAttribute($this->getAttribute((isset($context["app"]) ? $context["app"] : $this->getContext($context, "app")), "user", array()), "username", array())) : ("Anonymous")), "html", null, true);
echo "</strong> - <a href=\"";
echo $this->env->getExtension('routing')->getPath("_demo_logout");
echo "\">Logout</a></li>
";
}
public function getTemplateName()
{
return "AcmeDemoBundle:Secured:layout.html.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 44 => 5, 39 => 4, 36 => 3, 11 => 1,);
}
}
|
kouuki/Pidev
|
app/cache/dev/twig/d6/98/011111183cc61872bdd7cbd930385164b75199b36b8b5267036d97700be2.php
|
PHP
|
mit
| 2,061
|
#include "System/Game.h"
#include "System/MemoryManager.h"
#include "System/WindowManager.h"
#include "System/ResourceManager.h"
#include <glm/glm.hpp>
#include <glm/gtx/transform.hpp>
CGame::CGame()
{
InitSystems();
}
CGame::~CGame()
{
ShutdownSystems();
}
/* Initialization of all Engine systems */
void CGame::InitSystems()
{
CMemoryManager ::Instance().StartUp();
CResourceManager ::Instance().StartUp();
CLogManager ::Instance().StartUp();
CWindowManager ::Instance().StartUp();
}
void CGame::ShutdownSystems()
{
CWindowManager ::Instance().ShutDown();
CLogManager ::Instance().ShutDown();
CResourceManager ::Instance().ShutDown();
CMemoryManager ::Instance().ShutDown();
}
|
brendan-kellam/Eros
|
Source/System/Game.cpp
|
C++
|
mit
| 718
|
/*
* Copyright (C) 1996-2009 Michael R. Elkins <me@mutt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include "mutt.h"
#define SOMEPRIME 149711
static unsigned int hash_string (const unsigned char *s, unsigned int n)
{
unsigned int h = 0;
while (*s)
h += (h << 7) + *s++;
h = (h * SOMEPRIME) % n;
return h;
}
static unsigned int hash_case_string (const unsigned char *s, unsigned int n)
{
unsigned int h = 0;
while (*s)
h += (h << 7) + tolower (*s++);
h = (h * SOMEPRIME) % n;
return h;
}
HASH *hash_create (int nelem, int lower)
{
HASH *table = safe_malloc (sizeof (HASH));
if (nelem == 0)
nelem = 2;
table->nelem = nelem;
table->curnelem = 0;
table->table = safe_calloc (nelem, sizeof (struct hash_elem *));
if (lower)
{
table->hash_string = hash_case_string;
table->cmp_string = mutt_strcasecmp;
}
else
{
table->hash_string = hash_string;
table->cmp_string = mutt_strcmp;
}
return table;
}
HASH *hash_resize (HASH *ptr, int nelem, int lower)
{
HASH *table;
struct hash_elem *elem, *tmp;
int i;
table = hash_create (nelem, lower);
for (i = 0; i < ptr->nelem; i++)
{
for (elem = ptr->table[i]; elem; )
{
tmp = elem;
elem = elem->next;
hash_insert (table, tmp->key, tmp->data, 1);
FREE (&tmp);
}
}
FREE (&ptr->table);
FREE (&ptr);
return table;
}
/* table hash table to update
* key key to hash on
* data data to associate with `key'
* allow_dup if nonzero, duplicate keys are allowed in the table
*/
int hash_insert (HASH * table, const char *key, void *data, int allow_dup)
{
struct hash_elem *ptr;
unsigned int h;
ptr = (struct hash_elem *) safe_malloc (sizeof (struct hash_elem));
h = table->hash_string ((unsigned char *) key, table->nelem);
ptr->key = key;
ptr->data = data;
if (allow_dup)
{
ptr->next = table->table[h];
table->table[h] = ptr;
table->curnelem++;
}
else
{
struct hash_elem *tmp, *last;
int r;
for (tmp = table->table[h], last = NULL; tmp; last = tmp, tmp = tmp->next)
{
r = table->cmp_string (tmp->key, key);
if (r == 0)
{
FREE (&ptr);
return (-1);
}
if (r > 0)
break;
}
if (last)
last->next = ptr;
else
table->table[h] = ptr;
ptr->next = tmp;
table->curnelem++;
}
return h;
}
void *hash_find_hash (const HASH * table, int hash, const char *key)
{
struct hash_elem *ptr = table->table[hash];
for (; ptr; ptr = ptr->next)
{
if (table->cmp_string (key, ptr->key) == 0)
return (ptr->data);
}
return NULL;
}
void hash_delete_hash (HASH * table, int hash, const char *key, const void *data,
void (*destroy) (void *))
{
struct hash_elem *ptr = table->table[hash];
struct hash_elem **last = &table->table[hash];
while (ptr)
{
if ((data == ptr->data || !data)
&& table->cmp_string (ptr->key, key) == 0)
{
*last = ptr->next;
if (destroy)
destroy (ptr->data);
FREE (&ptr);
table->curnelem--;
ptr = *last;
}
else
{
last = &ptr->next;
ptr = ptr->next;
}
}
}
/* ptr pointer to the hash table to be freed
* destroy() function to call to free the ->data member (optional)
*/
void hash_destroy (HASH **ptr, void (*destroy) (void *))
{
int i;
HASH *pptr = *ptr;
struct hash_elem *elem, *tmp;
for (i = 0 ; i < pptr->nelem; i++)
{
for (elem = pptr->table[i]; elem; )
{
tmp = elem;
elem = elem->next;
if (destroy)
destroy (tmp->data);
FREE (&tmp);
}
}
FREE (&pptr->table);
FREE (ptr); /* __FREE_CHECKED__ */
}
|
hihellobolke/mutt-extra
|
hash.c
|
C
|
mit
| 4,541
|
module Signifyd
module API
module Create
module ClassMethods
def create(params={}, api_key=nil)
raise InvalidRequestError.new('You have passed invalid parameters to Case.create') if params == {}
Signifyd.request(:post, self.url, params, api_key)
end
end
def self.included(base)
base.extend(ClassMethods)
end
end
end
end
|
eric-surfeasy/signifyd-ruby
|
lib/signifyd/api/create.rb
|
Ruby
|
mit
| 400
|
# Thai unicode is not working properly (listing: th-th229574)
# https://github.com/hgmnz/truncate_html/issues/35
module Yoolk
module Liquid
module TruncateHtmlFilter
include ::TruncateHtmlHelper
# Truncate html content from the gem `truncate_html`.
# @param [ Hash ] options
#
# default options:
# length: 100
# omission: '...'
# word_boundary: /\S/
def truncate_html_with_indifferent_access(html, options={})
truncate_html_without_indifferent_access(html, options.with_indifferent_access)
end
alias_method_chain :truncate_html, :indifferent_access
end
end
end
Liquid::Template.register_filter Yoolk::Liquid::TruncateHtmlFilter
|
yoolk/yoolk_liquid
|
app/filters/yoolk/liquid/truncate_html_filter.rb
|
Ruby
|
mit
| 716
|
#ifdef WIN32
#include <gl/gl.h>
#define _USE_MATH_DEFINES
#include <cmath>
#else
#include <OpenGL/gl.h>
#include <SDL_ttf/SDL_ttf.h>
#endif
#include <SDL/SDL.h>
#include "RNG.h"
#include "ParticleSystem.h"
#include <list>
/*
A QUICK NOTE ON VERTEX ATTRIBUTES
On ATI hardware, you can use any numbers you want. However! On NVidia hardware,
the built-in attributes will collide with user-specified attributes if you try
to use both, and hilarity ensues. Here is a table of collisions:
gl_Vertex 0
gl_Normal 2
gl_Color 3
gl_SecondaryColor 4
gl_FogCoord 5
gl_MultiTexCoordN 8+N
We don't use gl_Color, gl_SecondaryColor or gl_FogCoord, nor do we use
gl_MultiTexCoordN where N >= 1. Therefore if we start off custom attributes at
1, the only gotcha is that we MUST skip 2.
*/
//#define DISABLE_WARP_EFFECTS
#include "Apollo.h"
#include "Graphics.h"
#include "SpriteSheet.h"
#include "TextRenderer.h"
#include <map>
#include "Starfield.h"
#include "Graphics.h"
#include "Logging.h"
#include "Utilities/Matrix2x3.h"
#include "Shaders.h"
#include "Object3D.h"
#define DEG2RAD(x) ((x / 180.0f) * M_PI)
#define RAD2DEG(x) ((x / M_PI) * 180.0f)
static GLuint warpFBO = 0;
static GLuint warpTex = 0;
static float warpMag = 0.0f;
static float warpAngle = 0.0f;
static float warpScale = 0.0f;
static const float WARP_MAG_THRESHOLD = 0.001f;
const static float circlePoints[] = {
0.000, 1.000,
0.098, 0.995,
0.195, 0.981,
0.290, 0.957,
0.383, 0.924,
0.471, 0.882,
0.556, 0.831,
0.634, 0.773,
0.707, 0.707,
0.773, 0.634,
0.831, 0.556,
0.882, 0.471,
0.924, 0.383,
0.957, 0.290,
0.981, 0.195,
0.995, 0.098,
1.000, -0.000,
0.995, -0.098,
0.981, -0.195,
0.957, -0.290,
0.924, -0.383,
0.882, -0.471,
0.831, -0.556,
0.773, -0.634,
0.707, -0.707,
0.634, -0.773,
0.556, -0.831,
0.471, -0.882,
0.383, -0.924,
0.290, -0.957,
0.195, -0.981,
0.098, -0.995,
-0.000, -1.000,
-0.098, -0.995,
-0.195, -0.981,
-0.290, -0.957,
-0.383, -0.924,
-0.471, -0.882,
-0.556, -0.831,
-0.634, -0.773,
-0.707, -0.707,
-0.773, -0.634,
-0.831, -0.556,
-0.882, -0.471,
-0.924, -0.383,
-0.957, -0.290,
-0.981, -0.195,
-0.995, -0.098,
-1.000, 0.000,
-0.995, 0.098,
-0.981, 0.195,
-0.957, 0.290,
-0.924, 0.383,
-0.882, 0.471,
-0.831, 0.556,
-0.773, 0.634,
-0.707, 0.707,
-0.634, 0.773,
-0.556, 0.831,
-0.471, 0.882,
-0.383, 0.924,
-0.290, 0.957,
-0.195, 0.981,
-0.098, 0.995,
-0.000, 1.000};
typedef std::map<std::string, Graphics::SpriteSheet*> SheetMap;
static SheetMap spriteSheets;
namespace Graphics
{
using namespace Shaders;
int scw, sch;
bool haveFBO = false;
bool noWarpFX = false;
/*
Other files can use:
namespace Matrices
{
void SetProjectionMatrix ( const matrix2x3& m );
void SetViewMatrix ( const matrix2x3& m );
void SetModelMatrix ( const matrix2x3& m );
const matrix2x3& CurrentMatrix ();
const matrix2x3& ProjectionMatrix ();
const matrix2x3& ViewMatrix ();
const matrix2x3& ModelMatrix ();
}
*/
namespace Matrices
{
static matrix2x3 projectionMatrix;
static matrix2x3 viewMatrix;
static matrix2x3 modelMatrix;
static matrix2x3 mvpMatrix;
static void LoadMatrix ( const matrix2x3& m )
{
GLfloat array[16];
m.FillOpenGLMatrix(array);
glLoadMatrixf(array);
}
void SetProjectionMatrix ( const matrix2x3& m )
{
projectionMatrix = m;
}
void SetViewMatrix ( const matrix2x3& m )
{
viewMatrix = m;
}
// the state is only guaranteed after a SetModelMatrix call
void SetModelMatrix ( const matrix2x3& m )
{
modelMatrix = m;
mvpMatrix = modelMatrix * viewMatrix * projectionMatrix;
LoadMatrix(mvpMatrix);
}
const matrix2x3& CurrentMatrix ()
{
return mvpMatrix;
}
const matrix2x3& ProjectionMatrix ()
{
return projectionMatrix;
}
const matrix2x3& ViewMatrix ()
{
return viewMatrix;
}
const matrix2x3& ModelMatrix ()
{
return modelMatrix;
}
}
void Init ( int w, int h, bool fullscreen )
{
SDL_InitSubSystem ( SDL_INIT_VIDEO );
SDL_GL_SetAttribute ( SDL_GL_RED_SIZE, 8 );
SDL_GL_SetAttribute ( SDL_GL_BLUE_SIZE, 8 );
SDL_GL_SetAttribute ( SDL_GL_GREEN_SIZE, 8 );
SDL_GL_SetAttribute ( SDL_GL_ALPHA_SIZE, 0 );
SDL_GL_SetAttribute ( SDL_GL_DOUBLEBUFFER, 1 );
SDL_GL_SetAttribute ( SDL_GL_DEPTH_SIZE, 24 );
SDL_GL_SetAttribute ( SDL_GL_MULTISAMPLESAMPLES, 4 );
SDL_GL_SetAttribute ( SDL_GL_MULTISAMPLEBUFFERS, 1 );
SDL_GL_SetAttribute ( SDL_GL_SWAP_CONTROL, 1 );
Uint32 flags = SDL_OPENGL;
if (fullscreen)
flags |= SDL_FULLSCREEN;
if (!SDL_SetVideoMode(w, h, 0, flags))
{
SDL_GL_SetAttribute ( SDL_GL_MULTISAMPLESAMPLES, 0 );
SDL_GL_SetAttribute ( SDL_GL_MULTISAMPLEBUFFERS, 0 );
LOG("Graphics", LOG_WARNING, "Card does not support FSAA!");
if (!SDL_SetVideoMode(w, h, 0, flags))
{
LOG("Graphics", LOG_WARNING, "Card does not support normal video options!");
SDL_GL_SetAttribute ( SDL_GL_RED_SIZE, 5 );
SDL_GL_SetAttribute ( SDL_GL_GREEN_SIZE, 5 );
SDL_GL_SetAttribute ( SDL_GL_BLUE_SIZE, 5 );
if (!SDL_SetVideoMode(w, h, 0, flags))
{
LOG("Graphics", LOG_ERROR, "Bad graphics driver.");
abort();
}
}
}
scw = w;
sch = h;
glClear ( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
glDepthMask(GL_FALSE);
glEnable ( GL_BLEND );
glBlendFunc ( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA );
glClearDepth(1.0);
glDepthFunc(GL_LESS);
glCullFace(GL_CCW);
// glEnable ( GL_LINE_SMOOTH );
glEnable ( GL_POINT_SMOOTH );
glHint ( GL_LINE_SMOOTH_HINT, GL_NICEST );
glHint ( GL_POINT_SMOOTH_HINT, GL_NICEST );
#ifdef __MACH__
glHint ( GL_TRANSFORM_HINT_APPLE, GL_FASTEST );
#endif
const GLfloat projectionMatrix[] = { 1.0f, 0.0f, 0.0f, 0.0f,
0.0f, 1.0f, 0.0f, 0.0f,
0.0f, 0.0f, 0.001f, 0.0f,
0.0f, 0.0f, -0.5f, 1.0f };
glMatrixMode(GL_PROJECTION);
glLoadMatrixf(projectionMatrix);
glMatrixMode(GL_MODELVIEW);
glEnableClientState ( GL_VERTEX_ARRAY );
const char* extensions = (const char*)glGetString(GL_EXTENSIONS);
const char* renderer = (const char*)glGetString(GL_RENDERER);
haveFBO = strstr(extensions, "GL_EXT_framebuffer_object");
noWarpFX = strstr(renderer, "Intel");
}
unsigned ToInt ( const std::string& value )
{
return atoi(value.c_str());
}
bool ToBool ( const std::string& value )
{
return value == "true";
}
// [WIP] [ADAM]
void Reset ()
{
// SDL_SetVideoMode(ToInt(Preferences::Get("Screen/Width")), ToInt(Preferences::Get("Screen/Height")), 0, SDL_ResizeEvent);
// these two lines work:
// glDeleteFramebuffersEXT(1, &warpFBO);
// warpFBO = 0;
// SetProjectionMatrix( matrix2x3::Ortho(left, right, bottom, top) ); // what are left, right, bottom, top?
}
static bool texturingEnabled = false;
static void EnableTexturing ()
{
if (!texturingEnabled)
{
glEnableClientState ( GL_TEXTURE_COORD_ARRAY );
texturingEnabled = true;
}
}
static void DisableTexturing ()
{
if (texturingEnabled)
{
glDisableClientState ( GL_TEXTURE_COORD_ARRAY );
texturingEnabled = false;
}
}
static bool blendingEnabled = true;
static void EnableBlending ()
{
if (!blendingEnabled)
{
glEnable(GL_BLEND);
blendingEnabled = true;
}
}
static void DisableBlending ()
{
if (blendingEnabled)
{
glDisable(GL_BLEND);
blendingEnabled = false;
}
}
static void SetColour ( const colour& col )
{
if (sizeof(col) == sizeof(float) * 4)
{
glColor4fv((const GLfloat*)&col);
}
else
{
glColor4f(col.red(), col.green(), col.blue(), col.alpha());
}
}
static void ClearColour ()
{
const uint32_t white = 0xFFFFFFFF;
glColor4ubv((const GLubyte*)&white);
}
vec2 SpriteDimensions ( const std::string& sheetname )
{
SpriteSheet* sheet;
SheetMap::iterator iter = spriteSheets.find(sheetname);
if (iter == spriteSheets.end())
{
// load it
sheet = new SpriteSheet(sheetname);
spriteSheets[sheetname] = sheet;
}
else
{
sheet = iter->second;
}
assert(sheet);
return vec2(sheet->TileSizeX(), sheet->TileSizeY());
}
void DrawSprite ( const std::string& sheetname, int sheet_x, int sheet_y, vec2 position, vec2 size, float rotation, colour col )
{
SetShader("Sprite");
EnableTexturing();
EnableBlending();
ClearColour();
SetColour(col);
SpriteSheet* sheet;
SheetMap::iterator iter = spriteSheets.find(sheetname);
if (iter == spriteSheets.end())
{
// load it
sheet = new SpriteSheet(sheetname);
spriteSheets[sheetname] = sheet;
}
else
{
sheet = iter->second;
}
Matrices::SetViewMatrix(matrix2x3::Translate(position));
Matrices::SetModelMatrix(matrix2x3::Identity());
if (sheet_x == 0 && sheet_y == 0)
{
sheet->DrawRotation(size, rotation);
}
else
{
glRotatef(RAD2DEG(rotation), 0.0f, 0.0f, 1.0f);
sheet->Draw(sheet_x, sheet_y, size);
}
}
void DrawSpriteFrame ( const std::string& sheetname, vec2 position, vec2 size, int index, float rotation, colour col )
{
SetShader("Sprite");
EnableTexturing();
EnableBlending();
ClearColour();
SetColour(col);
SpriteSheet* sheet;
SheetMap::iterator iter = spriteSheets.find(sheetname);
if (iter == spriteSheets.end())
{
sheet = new SpriteSheet(sheetname);
spriteSheets[sheetname] = sheet;
}
else
{
sheet = iter->second;
}
Matrices::SetViewMatrix(matrix2x3::Translate(position));
Matrices::SetModelMatrix(matrix2x3::Identity());
glRotatef(RAD2DEG(rotation), 0.0f, 0.0f, 1.0f);
int x = index % sheet->SheetTilesX();
int y = (index - x) / sheet->SheetTilesX();
sheet->Draw(x, y, size);
}
/* [ADAMLATER] - this is a function that allows sprites to be tiled if necessary
void DrawSpriteTile ( const std::string& sheetname, int sheet_x, int sheet_y, vec2 position, vec2 size, float rotation, colour col )
{
SetShader("Sprite");
EnableTexturing();
EnableBlending();
ClearColour();
SetColour(col);
SpriteSheet* sheet;
SheetMap::iterator iter = spriteSheets.find(sheetname);
if (iter == spriteSheets.end())
{
// load it
sheet = new SpriteSheet(sheetname);
spriteSheets[sheetname] = sheet;
}
else
{
sheet = iter->second;
}
Matrices::SetViewMatrix(matrix2x3::Translate(position));
Matrices::SetModelMatrix(matrix2x3::Identity());
if (sheet->IsRotational())
{
assert(sheet_x == 0);
assert(sheet_y == 0);
sheet->DrawRotation(size, rotation);
}
else
{
glRotatef(RAD2DEG(rotation), 0.0f, 0.0f, 1.0f);
sheet->Draw(sheet_x, sheet_y, size);
}
}*/
const int MAX_TEXTURE_SIZE = 4096;
// splits regardless of words
int imperfectSplit ( vec2 dims, std::string* bob, int maxSize )
{
// bob needs to be a std::vector of std::strings, so that I can add however many strings to it
// yet to be figured out
return 1;
}
// splits along spaces, dropping the spaces
int idealSplit ( vec2 dims, std::string* bob, int maxSize )
{
// has yet to be figured out either
return 1;
}
void DrawTextSDL ( const std::string& text, const std::string& font, const char* justify, vec2 position, int height, colour col, float rotation )
{
SetShader("Text");
EnableTexturing();
EnableBlending();
SetColour(col);
GLuint texID = TextRenderer::TextObject(font, text, height);
Matrices::SetViewMatrix(matrix2x3::Translate(position));
Matrices::SetModelMatrix(matrix2x3::Rotation(rotation));
glBindTexture(GL_TEXTURE_RECTANGLE_ARB, texID);
vec2 dims = TextRenderer::TextDimensions(font, text, height);
// TEMP
int xcoord = 0;
int ycoord = 0;
TTF_Font* fontObject = TextRenderer::GetFont(font, height);
if (TTF_SizeUTF8(fontObject, text.c_str(), &xcoord, &ycoord) == 0 && text == "This is as long as a message can be at font 20: not long..")
{
printf("The text '%s' has dimensions of %d by %d, and a height of %d\n", text.c_str(), xcoord, ycoord, height);
}
// END TEMP
GLfloat textureArray[] = { 0.0f, 0.0f, dims.X(), 0.0f, dims.X(), dims.Y(), 0.0f, dims.Y() };
vec2 halfSize;
if (strcmp(justify, "left") == 0)
{
halfSize = (dims * (height / dims.Y()));
GLfloat vertexArray[8] = { 0, halfSize.Y() / 2, halfSize.X(), halfSize.Y() / 2, halfSize.X(), -halfSize.Y() / 2, 0, -halfSize.Y() / 2 };
glVertexPointer(2, GL_FLOAT, 0, vertexArray);
}
else
{
halfSize = (dims * (height / dims.Y())) * 0.5f;
if (strcmp(justify, "right") == 0)
{
GLfloat vertexArray[8] = { -halfSize.X(), halfSize.Y() / 2, 0, halfSize.Y() / 2, 0, -halfSize.Y() / 2, -halfSize.X(), -halfSize.Y() / 2 };
glVertexPointer(2, GL_FLOAT, 0, vertexArray);
} else
{
GLfloat vertexArray[8] = { -halfSize.X(), halfSize.Y(), halfSize.X(), halfSize.Y(), halfSize.X(), -halfSize.Y(), -halfSize.X(), -halfSize.Y() };
glVertexPointer(2, GL_FLOAT, 0, vertexArray);
}
}
glTexCoordPointer(2, GL_FLOAT, 0, textureArray);
glDrawArrays(GL_QUADS, 0, 4);
}
void DrawLine ( vec2 coordinate1, vec2 coordinate2, float width, colour col )
{
SetShader("Primitive");
DisableTexturing();
if (col.alpha() < 1.0f)
{
EnableBlending();
}
else
{
DisableBlending();
}
glLineWidth(width);
Matrices::SetViewMatrix(matrix2x3::Identity());
Matrices::SetModelMatrix(matrix2x3::Identity());
SetColour(col);
float vertices[4] = { coordinate1.X(), coordinate1.Y(),
coordinate2.X(), coordinate2.Y() };
glVertexPointer ( 2, GL_FLOAT, 0, vertices );
glDrawArrays ( GL_LINES, 0, 2 );
}
static float RandomFloat ( float min, float max )
{
float range = max - min;
float uniform = rand() / (float)RAND_MAX;
float absolute = uniform * range;
return absolute + min;
}
static void RealDrawLightning ( vec2 coordinate1, vec2 coordinate2, float width, float chaos, colour col, bool tailed, RNG& rng )
{
if (col.alpha() < 0.2f)
return;
SetShader("Primitive");
DisableTexturing();
if (col.alpha() < 1.0f)
{
EnableBlending();
}
else
{
DisableBlending();
}
glLineWidth(width);
Matrices::SetViewMatrix(matrix2x3::Identity());
Matrices::SetModelMatrix(matrix2x3::Identity());
SetColour(col);
unsigned long segments = 12;
float offsetting = chaos;
float* vertices = (float*)alloca(sizeof(float) * 2 * segments);
vec2 tangent = (coordinate2 - coordinate1).UnitVector();
vec2 normal = vec2(-tangent.Y(), tangent.X());
normal.X() = -normal.Y();
for (unsigned long i = 0; i < segments; i++)
{
float delta = ((float)i / (float)(segments - 1));
//This may be only a partial fix.
vec2 basePosition = ((coordinate1*(1.0f-delta)) + (coordinate2*delta));// / 2.0f;
if (tailed)
{
delta *= 2.0f;
if (delta > 1.0f) delta = 2.0f - delta;
}
float maxOffset = offsetting * delta;
float actualOffset = RandomFloat(-maxOffset, maxOffset);
basePosition += normal * actualOffset;
vertices[(i*2)+0] = basePosition.X();
vertices[(i*2)+1] = basePosition.Y();
}
glVertexPointer(2, GL_FLOAT, 0, vertices);
glDrawArrays(GL_LINE_STRIP, 0, segments);
}
static RNG lightningRNG;
static uint32_t lastSeed = 4;
void DrawLightning ( vec2 coordinate1, vec2 coordinate2, float width, float chaos, colour col, bool tailed )
{
uint32_t newLastSeed = lightningRNG.GetState();
RealDrawLightning(coordinate1, coordinate2, width, chaos, col, tailed, lightningRNG);
RNG localRNG(lastSeed);
lastSeed = newLastSeed;
col.alpha() *= 0.5f;
RealDrawLightning(coordinate1, coordinate2, width * 3.0f, chaos, col, tailed, localRNG);
}
void DrawBox ( float top, float left, float bottom, float right, float width, colour col )
{
SetShader("Primitive");
DisableTexturing();
if (col.alpha() < 1.0f)
{
EnableBlending();
}
else
{
DisableBlending();
}
Matrices::SetViewMatrix(matrix2x3::Identity());
Matrices::SetModelMatrix(matrix2x3::Identity());
SetColour(col);
float quad[8] = { left, top,
left, bottom,
right, bottom,
right, top };
glVertexPointer ( 2, GL_FLOAT, 0, quad );
glDrawArrays ( GL_QUADS, 0, 4 );
if (width != 0)
{
SetColour(col + colour(0.45, 0.45, 0.45, 0.0));
glLineWidth(width);
float vertices[16] = { left, top,
right, top,
left, top,
left, bottom,
right, top,
right, bottom,
left, bottom,
right, bottom };
glVertexPointer ( 2, GL_FLOAT, 0, vertices );
glDrawArrays ( GL_LINES, 0, 8 );
}
}
void DrawCircle ( vec2 centre, float radius, float width, colour col )
{
SetShader("Primitive");
DisableTexturing();
if (col.alpha() < 1.0f)
{
EnableBlending();
}
else
{
DisableBlending();
}
glLineWidth(width);
Matrices::SetViewMatrix(matrix2x3::Translate(centre));
Matrices::SetModelMatrix(matrix2x3::Scale(radius));
SetColour ( col );
glVertexPointer(2, GL_FLOAT, 0, circlePoints);
glDrawArrays(GL_LINE_LOOP, 0, sizeof(circlePoints) / (2 * sizeof(float)));
}
void DrawTriangle ( const vec2 point1, const vec2 point2, const vec2 point3, colour col )
{
SetShader("Primitive");
DisableTexturing();
if (col.alpha() < 1.0f)
{
EnableBlending();
}
else
{
DisableBlending();
}
SetColour(col);
Matrices::SetViewMatrix(matrix2x3::Identity());
Matrices::SetModelMatrix(matrix2x3::Identity());
float real_triangle[6] = { point1.X(), point1.Y(),
point2.X(), point2.Y(),
point3.X(), point3.Y() };
glVertexPointer(2, GL_FLOAT, 0, real_triangle);
glDrawArrays(GL_POLYGON, 0, 3);
}
void DrawDiamond ( float top, float left, float bottom, float right, colour col )
{
SetShader("Primitive");
DisableTexturing();
if (col.alpha() < 1.0f)
{
EnableBlending();
}
else
{
DisableBlending();
}
SetColour(col);
Matrices::SetViewMatrix(matrix2x3::Identity());
Matrices::SetModelMatrix(matrix2x3::Identity());
float diamond[8] = { (right + left) / 2, top,
left, (top + bottom) / 2,
(right + left) / 2, bottom,
right, (top + bottom) / 2 };
glVertexPointer(2, GL_FLOAT, 0, diamond);
glDrawArrays(GL_QUADS, 0, 4);
}
#pragma mark Particle System Functions
std::list<ParticleSystem*> particleSystems;
void AddParticles ( const std::string& name, unsigned long particleCount, vec2 centre, vec2 velocity, vec2 velocityVariance, vec2 acceleration, float sizeFactor, float lifetime )
{
ParticleSystem* ps = new ParticleSystem(name, particleCount, sizeFactor, centre, velocity, velocityVariance, acceleration, lifetime);
particleSystems.push_back(ps);
}
void DrawParticles ()
{
Shaders::SetShader("Particles");
EnableTexturing();
EnableBlending();
Matrices::SetViewMatrix(matrix2x3::Identity());
Matrices::SetModelMatrix(matrix2x3::Identity());
for (std::list<ParticleSystem*>::iterator iter = particleSystems.begin();
iter != particleSystems.end();
++iter)
{
ParticleSystem* ps = *iter;
bool isDead = ps->Update();
if (isDead)
{
std::list<ParticleSystem*>::iterator iterCopy = iter;
++iter;
particleSystems.erase(iterCopy);
delete ps;
if (iter == particleSystems.end())
break;
}
ps->Draw();
}
}
void ClearParticles ()
{
for (std::list<ParticleSystem*>::iterator iter = particleSystems.begin();
iter != particleSystems.end();
++iter)
{
delete *iter;
}
particleSystems.clear();
}
static vec2 cameraCorner1;
static vec2 cameraCorner2;
static float cameraRotation;
std::vector<Starfield*> starfields;
unsigned starfieldNumber;
void DrawStarfield ( float depth )
{
while (starfields.size() <= starfieldNumber)
{
starfields.push_back(new Starfield);
}
SetShader("Starfield");
EnableTexturing();
DisableBlending();
ClearColour();
Matrices::SetViewMatrix(matrix2x3::Identity());
Matrices::SetModelMatrix(matrix2x3::Identity());
starfields[starfieldNumber++]->Draw(depth, (cameraCorner1 + cameraCorner2) / 2.0f);
}
std::map<std::string, Object3D*> objects3d;
static Object3D* GetObject3D ( std::string name )
{
std::map<std::string, Object3D*>::iterator iter;
iter = objects3d.find(name);
if (iter == objects3d.end())
{
// load the object
Object3D* object = new Object3D(name);
objects3d.insert(std::make_pair(name, object));
return object;
}
else
{
return iter->second;
}
}
void DrawObject3DAmbient ( std::string name, vec2 centre, float scale, float angle, float bank )
{
Object3D* obj = GetObject3D(name);
EnableTexturing();
DisableBlending();
obj->BindTextures();
//glUniform3f(UniformLocation("Ambient"), ambient.red(), ambient.green(), ambient.blue());
SetShader("3DBase");
glUniform1f(UniformLocation("specularScale"), obj->SpecularScale());
glUniform1f(UniformLocation("shininess"), obj->Shininess());
Matrices::SetViewMatrix(matrix2x3::Translate(centre));
obj->Draw(scale, angle, bank);
}
float AspectRatio ()
{
return float(scw) / float(sch);
}
vec2 MapPoint ( vec2 windowCoords )
{
matrix2x3 viewProjection ( Matrices::viewMatrix * Matrices::projectionMatrix );
matrix2x3 vpi = viewProjection.Inverse();
vec2 normalisedCoords = vpi * windowCoords;
normalisedCoords += vec2(1.0f, 1.0f);
normalisedCoords *= 0.5f;
return vec2(normalisedCoords.X() * scw, normalisedCoords.Y() * sch);
}
void DrawPoint ( vec2 coord, float width, colour col )
{
SetShader("Primitive");
DisableTexturing();
if (col.alpha() < 1.0f)
{
EnableBlending();
}
else
{
DisableBlending();
}
SetColour(col);
Matrices::SetViewMatrix(matrix2x3::Identity());
Matrices::SetModelMatrix(matrix2x3::Identity());
float quad[8] = { coord.X(), coord.Y(),
coord.X(), coord.Y() - 2,
coord.X() + 2, coord.Y() - 2,
coord.X() + 2, coord.Y() };
glVertexPointer ( 2, GL_FLOAT, 0, quad );
glDrawArrays ( GL_QUADS, 0, 4 );
/* ¡WARNING! IMMEDIATE MODE! ENTER AT YOUR OWN RISK */
// glBegin(GL_POINTS);
// glVertex2f(coord.X(), coord.Y());
// glEnd();
}
bool IsCulled ( vec2 position, float radius )
{
if ((position.X() + radius) < cameraCorner1.X())
return true;
if ((position.X() - radius) > cameraCorner2.X())
return true;
if ((position.Y() + radius) < cameraCorner1.Y())
return true;
if ((position.Y() - radius) > cameraCorner2.Y())
return true;
return false;
}
void SetCamera ( vec2 corner1, vec2 corner2, float rotation )
{
matrix2x3 projection ( matrix2x3::Ortho(corner1.X(), corner2.X(), corner1.Y(), corner2.Y()) );
if (fabs(rotation) > 0.00004f)
projection *= matrix2x3::Rotation(rotation);
Matrices::SetProjectionMatrix(projection);
cameraCorner1 = corner1;
cameraCorner2 = corner2;
}
void BeginFrame ()
{
glDepthMask(GL_TRUE);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glDepthMask(GL_FALSE);
Matrices::SetViewMatrix(matrix2x3::Identity());
Matrices::SetModelMatrix(matrix2x3::Identity());
starfieldNumber = 1;
}
void EndFrame ()
{
#ifdef __MACH__
glSwapAPPLE();
#else
SDL_GL_SwapBuffers();
#endif
TextRenderer::Prune();
}
void BeginWarp ( float magnitude, float angle, float scale )
{
#ifndef DISABLE_WARP_EFFECTS
if (!haveFBO || noWarpFX)
return;
warpMag = magnitude;
warpAngle = angle;
warpScale = scale;
if (magnitude < WARP_MAG_THRESHOLD)
return;
if (warpFBO == 0)
{
glGenFramebuffersEXT(1, &warpFBO);
glGenTextures(1, &warpTex);
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, warpFBO);
glBindTexture(GL_TEXTURE_RECTANGLE_ARB, warpTex);
glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexImage2D(GL_TEXTURE_RECTANGLE_ARB, 0, GL_RGBA8, scw, sch, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
glFramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_COLOR_ATTACHMENT0_EXT, GL_TEXTURE_RECTANGLE_ARB, warpTex, 0);
GLuint status = glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT);
assert(status == GL_FRAMEBUFFER_COMPLETE_EXT);
}
else
{
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, warpFBO);
}
glClear(GL_COLOR_BUFFER_BIT);
#endif
}
void EndWarp ()
{
#ifndef DISABLE_WARP_EFFECTS
if (!haveFBO || noWarpFX || warpMag < WARP_MAG_THRESHOLD)
return;
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, 0);
glBindTexture(GL_TEXTURE_RECTANGLE_ARB, warpTex);
Shaders::SetShader("DistortWarp");
glUniform1f(Shaders::UniformLocation("Angle"), warpAngle);
glUniform1f(Shaders::UniformLocation("Magnitude"), warpMag);
glUniform1f(Shaders::UniformLocation("Scale"), 1.0f / warpScale);
glUniform2f(Shaders::UniformLocation("Target"), 0.088f, 0.0f);
const GLfloat vertices[] = { -1.0f, -1.0f, 1.0f, -1.0f, 1.0f, 1.0f, -1.0f, 1.0f };
const GLfloat texCoords[] = { 0.0f, 0.0f, scw, 0.0f, scw, sch, 0.0f, sch };
glVertexPointer(2, GL_FLOAT, 0, vertices);
glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
EnableTexturing();
DisableBlending();
glDrawArrays(GL_QUADS, 0, 4);
#endif
}
void PreloadSpriteSheet(const std::string& sheetname)
{
SpriteSheet* sheet;
SheetMap::iterator iter = spriteSheets.find(sheetname);
if (iter == spriteSheets.end())
{
sheet = new SpriteSheet(sheetname);
spriteSheets[sheetname] = sheet;
}
}
void PreloadFont(const std::string& fontname)
{
TextRenderer::TextDimensions(fontname, "", 2);
}
}
|
adam000/Apollo
|
Engine/Graphics/Graphics.cpp
|
C++
|
mit
| 24,746
|
using System;
using System.Diagnostics.CodeAnalysis;
using NullGuard;
namespace Restall.Ichnaea.Demo.Web.Accounts
{
[NullGuard(ValidationFlags.None)]
[SuppressMessage("ReSharper", "UnusedMember.Global", Justification = CodeAnalysisJustification.DtoParticipatesInSerialisation)]
[SuppressMessage("ReSharper", "UnusedAutoPropertyAccessor.Global", Justification = CodeAnalysisJustification.DtoParticipatesInSerialisation)]
public class AccountSummary
{
public Guid Id { get; set; }
public string SortCode { get; set; }
public string AccountNumber { get; set; }
public string Holder { get; set; }
public Uri GetDetailsUri { get; set; }
}
}
|
pete-restall/Ichnaea
|
Ichnaea.Demo/Web/Accounts/AccountSummary.cs
|
C#
|
mit
| 657
|
<?php
namespace sarrala\Cake3Upload\Recognizer;
abstract class DataRecognizer extends Recognizer {
public function recognize($data) {
return is_array($data) ? parent::recognize($data) : false;
}
}
|
sarrala/Cake3-Upload
|
src/Recognizer/DataRecognizer.php
|
PHP
|
mit
| 204
|
<!--
Minecraft Dev for IntelliJ
https://minecraftdev.org
Copyright (c) 2020 minecraft-dev
MIT License
-->
<html>
<body>
Converts a string literal to a translation and adds it to all language files.
</body>
</html>
|
DemonWav/MinecraftDevIntelliJ
|
src/main/resources/intentionDescriptions/convertToTranslation/description.html
|
HTML
|
mit
| 234
|
<link href="<?=PLUGINS_PATH?>/jquery_ui/css/admin/jquery-ui-1.9.2.custom.min.css" rel="stylesheet">
<script src="<?=PLUGINS_PATH?>/jquery_ui/js/jquery-ui-1.9.2.custom.min.js"></script>
<script>
$(function() {
var availableTags = [
<?php
foreach ($data_search as $key=>$value){
echo '"'.$value[$this->search_field].'"';
if ($key!=count($data_search)-1){ echo ","; }
}
?>
];
$( "#searchBox" ).autocomplete({
source: availableTags
});
});
</script>
<div class="page">
<?php echo form_open(HOST_URL."/".$folder_name, 'name="frmListing" id="frmListing"'); ?>
<div id="module">
<div class="icon"><img src="<?=ADMIN_IMG_PATH?>/icon_<?php echo $folder_name; ?>.png" alt="<?=$module_name?>" /></div>
<div><a href="<?=HOST_URL?>/<?=$folder_name?>" class="module_nameBig"><?php echo $module_name; ?></a></div>
<div class="buttons">
<ul class="actions">
<a href="<?=HOST_URL?>/<?=$folder_name?>/add"><li>
<div class="icon_new"> </div>
<div class="action_text">New</div>
</li></a>
<li class="line lineHover"> </li>
<li><input type="submit" name="btnsubmit" id="btnpublish" value="Publish" class="btn_publish" ></li>
<li><input type="submit" name="btnsubmit" id="btnunpublish" value="Unpublish" class="btn_unpublish" ></li>
<li class="line"> </li>
<li><input type="submit" name="btndelete" id="btndelete" value="Delete" class="btn_delete" ></li>
<li class="line"> </li>
<a href="<?=HOST_URL?>/<?=$folder_name?>/settings"><li>
<div class="icon_settings"> </div>
<div class="action_text">Settings</div>
</li></a>
</ul>
</div>
</div>
<div> </div>
<? if (isset($MSG)){ ?>
<div id="MSG" class="<? if (isset($Error) && $Error=="Y"){ echo "alert"; }else{ echo "success"; } ?>"><?php echo $MSG; ?></div>
<? } ?>
<div class="contents">
<div id="search_box">
<div class="float1 simpleBold">Search: </div>
<div class="float1">
<? echo form_input('searchBox', $searchBox, 'id="searchBox" class="searchBox"'); ?>
</div>
<div class="float1"> <? echo form_submit('btnsearch', 'Search'); ?></div>
<div class="float1 simpleBold"> Filter By: </div>
<div class="float1">
<select name="filter_by" id="filter_by" onchange="submitFormOnly()" class="listFilter">
<option value="All">Show All</option>
<option value="published" <? if ($filter_by=="published"){ echo "selected='selected'"; } ?>>Published</option>
<option value="unpublished" <? if ($filter_by=="unpublished"){ echo "selected='selected'"; } ?>>Unpublished</option>
</select>
</div>
<div class="float1 simpleBold"> Display: </div>
<div class="float1">
<select name="paging" id="paging" onchange="submitFormOnly();" class="listFilter" style="width:60px;">
<option value="5" <? if ($paging==5){ echo "selected='selected'"; }?>>5</option>
<option value="10" <? if ($paging==10){ echo "selected='selected'"; }?>>10</option>
<option value="20" <? if ($paging==20){ echo "selected='selected'"; }?>>20</option>
<option value="30" <? if ($paging==30){ echo "selected='selected'"; }?>>30</option>
<option value="40" <? if ($paging==40){ echo "selected='selected'"; }?>>40</option>
<option value="50" <? if ($paging==50){ echo "selected='selected'"; }?>>50</option>
<option value="100" <? if ($paging==100){ echo "selected='selected'"; }?>>100</option>
<option value="250" <? if ($paging==250){ echo "selected='selected'"; }?>>250</option>
<option value="500" <? if ($paging==500){ echo "selected='selected'"; }?>>500</option>
</select>
</div>
</div>
<div class=""> </div>
<div id="list">
<div class="list_header">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="30" align="center" valign="middle"><input name="AC" type="checkbox" onclick="CheckAll();" /></td>
<td width="70" align="center" valign="middle"> </td>
<td align="left" valign="middle"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="50%" align="left" valign="middle"><a href="<?=HOST_URL?>/<?=$folder_name?>/index/sort/heading_en/by/<?=$sortby?><?=$urlparams?>/offset/<?=$offset?>" class="listHeading">Heading (English) </a> <img src="<?=ADMIN_IMG_PATH?>/<?php echo ((isset($sort_heading_en))?$sort_heading_en:"sort_empty.png"); ?>" align="absmiddle" class="sort_image"/></td>
<td align="left" valign="middle"><a href="<?=HOST_URL?>/<?=$folder_name?>/index/sort/heading_ar/by/<?=$sortby?><?=$urlparams?>/offset/<?=$offset?>" class="listHeading">Heading (Arabic) </a> <img src="<?=ADMIN_IMG_PATH?>/<?php echo ((isset($sort_heading_ar))?$sort_heading_ar:"sort_empty.png"); ?>" align="absmiddle" class="sort_image"/></td>
</tr>
</table></td>
<td width="60" align="center" valign="middle">Image</td>
<td width="100" align="center" valign="middle"><a href="<?=HOST_URL?>/<?=$folder_name?>/index/sort/orderby/by/<?=$sortby?><?=$urlparams?>/offset/<?=$offset?>" class="listHeading">Order</a> <img src="<?=ADMIN_IMG_PATH?>/filesave.png" align="absmiddle" border="0" onclick="submitOrderOnly();" style="cursor:pointer;" title="Save Order" /></td>
<td width="100" align="center" valign="middle"><a href="<?=HOST_URL?>/<?=$folder_name?>/index/sort/added_date/by/<?=$sortby?><?=$urlparams?>/offset/<?=$offset?>" class="listHeading">Date</a> <img src="<?=ADMIN_IMG_PATH?>/<?php echo ((isset($sort_added_date))?$sort_added_date:"sort_empty.png"); ?>" align="absmiddle" class="sort_image"/></td>
<? if (isset($is_featured)){ ?>
<td width="90" align="center" valign="middle"><a href="<?=HOST_URL?>/<?=$folder_name?>/index/sort/is_featured/by/<?=$sortby?><?=$urlparams?>/offset/<?=$offset?>" class="listHeading">Featured</a> <img src="<?=ADMIN_IMG_PATH?>/<?php echo ((isset($sort_is_featured))?$sort_is_featured:"sort_empty.png"); ?>" align="absmiddle" class="sort_image"/></td>
<? } ?>
<td width="70" align="center" valign="middle"><a href="<?=HOST_URL?>/<?=$folder_name?>/index/sort/is_active/by/<?=$sortby?><?=$urlparams?>/offset/<?=$offset?>" class="listHeading">Status</a> <img src="<?=ADMIN_IMG_PATH?>/<?php echo ((isset($sort_is_active))?$sort_is_active:"sort_empty.png"); ?>" align="absmiddle" class="sort_image"/></td>
<td width="50" align="center" valign="middle"><a href="<?=HOST_URL?>/<?=$folder_name?>/index/sort/id/by/<?=$sortby?><?=$urlparams?>/offset/<?=$offset?>" class="listHeading">ID</a> <img src="<?=ADMIN_IMG_PATH?>/<?php echo ((isset($sort_id))?$sort_id:"sort_empty.png"); ?>" align="absmiddle" class="sort_image"/></td>
</tr>
</table>
</div>
<div class="list">
<?php
foreach($data_list as $key=>$value){
if (!isset($is_featured)){ $is_featured= "";}
$image1_name = $value->image1;
$is_active = $value->is_active;
$is_featured = $value->is_featured;
$featured_img = (($is_featured=="Y")? '<img src="'.ADMIN_IMG_PATH.'/featured.png" alt="Featured">' : '');
$status_img = (($is_active=="Y")? '<img src="'.ADMIN_IMG_PATH.'/publish.png" alt="Publish">' :
'<img src="'.ADMIN_IMG_PATH.'/unpublish.png" alt="Unpublish">');
$image_path = (!empty($image1_name) ? $this->thumb_show_path.'/'.$image1_name : ADMIN_IMG_PATH."/no_admin_image.png");
$bgClass = (($bgClass=="bgcolor1") ? "bgcolor2" : "bgcolor1");
?>
<div class="listitem selected <?=$bgClass?>">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="30" height="34" align="center" valign="middle"><input name="EditBox[]" type="checkbox" onclick="UnCheckAll();" value="<?php echo $value->id; ?>" /></td>
<td width="70" align="left" valign="middle"> <a href="<?=HOST_URL?>/<?=$folder_name?>/edit/<?php echo $value->id; ?>"><img src="<?=ADMIN_IMG_PATH?>/edit.png" alt="Edit" border="0" /></a> <a href="<?=HOST_URL?>/<?=$folder_name?>/delete/<?php echo $value->id; ?>"><img src="<?=ADMIN_IMG_PATH?>/delete.png" alt="Delete" border="0" /></a></td>
<td align="left" valign="middle"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="50%" align="left" valign="middle"><a href="<?=HOST_URL?>/<?=$folder_name?>/view/<? echo $value->id; ?>" title="Click to view details" class="listLink"><? echo $value->heading_en; ?></a></td>
<td align="left" valign="middle" class="arabic"><? echo $value->heading_ar; ?></td>
</tr>
</table></td>
<td width="60" align="center" valign="middle"><img src="<?=$image_path?>" width="35" class="thumb" border="0" /></td>
<td width="100" align="center" valign="middle"><input type="text" name="orderby[]" id="orderby[]" style="width:30px;text-align:center" class="index_list" value="<?php echo $value->orderby; ?>" tabindex="<?php echo $key; ?>" /><input type="hidden" name="idarray[]" id="idarray[]" value="<?php echo $value->id; ?>" /></td>
<td width="100" align="center" valign="middle"><?php echo dateFormat($value->added_date); ?></td>
<? if (isset($is_featured)){ ?>
<td width="90" align="center" valign="middle"><?php echo $featured_img; ?></td>
<? } ?>
<td width="70" align="center" valign="middle"><?php echo $status_img; ?></td>
<td width="50" align="center" valign="middle"><?php echo $value->id; ?></td>
</tr>
</table>
</div>
<? } ?>
</div>
<div class="list_footer text_align2">Version : <?php echo $this->module_version; ?></div>
<div class="spacer"> </div>
<div class="">
<div class="float1 color2"><? echo $display_records; ?> <?=$links?></div>
<div class="float2"> </div>
</div>
</div>
</div>
<? echo form_hidden('is_order', ''); ?>
<? echo form_close(); ?>
</div>
<script src="<?=JS_PATH?>/admin_validation.js"></script>
<script language="javascript">
$('#btndelete').click(function(){
var CheckedBoxes = $('input[name="EditBox[]"]:checked').length;
if (CheckedBoxes==0){
alert('Please select atleast one record!');
return false;
}else{
DeleteRecord();
}
});
function DeleteRecord(){
document.frmListing.action="<?=HOST_URL?>/<?=$folder_name?>/delete";
document.frmListing.submit();
}
</script>
|
anniyananeesh/avenirevents
|
application/views/administrator/services_management/home.php
|
PHP
|
mit
| 10,454
|
---
title: Overview
sectionName: Contribute
template: api.jade
menuIndex: 4
subsectionIndex: 1
---
This section explains how to contribute to Symbiot in various ways.
|
fpoulin/symbiot-docs
|
src/api/index.md
|
Markdown
|
mit
| 167
|
# coding:utf-8
import re
import sys
if sys.version < '3':
def u(x):
return x.decode('utf-8')
else:
unicode = str
def u(x):
return x
# Matches section start `interfaces {`
rx_section = re.compile(r'^([\w\-]+) \{$', re.UNICODE)
# Matches named section `ethernet eth0 {`
rx_named_section = re.compile(
r'^([\w\-]+) ([\w\-\"\./@:=\+]+) \{$', re.UNICODE
)
# Matches simple key-value pair `duplex auto`
rx_value = re.compile(r'^([\w\-]+) "?([^"]+)?"?$', re.UNICODE)
# Matches single value (flag) `disable`
rx_flag = re.compile(r'^([\w\-]+)$', re.UNICODE)
# Matches comments
rx_comment = re.compile(r'^(\/\*).*(\*\/)', re.UNICODE)
class ParserException(Exception):
pass
def update_tree(config, path, val, val_type=None):
t = config
for item in path:
if list(item.keys())[0] not in t:
try:
t[list(item.keys())[0]] = {}
except TypeError:
break
t = t.get(list(item.keys())[0])
if val_type == 'flag':
t.update(val)
elif val_type == 'value':
if t and isinstance(t, dict):
if list(t.keys())[0] == list(val.keys())[0]:
try:
t.update(
{
list(t.keys())[0]: dict(
[
(k, {})
for k in list(t.values())
+ list(val.values())
]
)
}
)
except TypeError:
if isinstance(t[list(t.keys())[0]], unicode):
t[list(t.keys())[0]] = {t[list(t.keys())[0]]: {}}
t[list(t.keys())[0]].update({list(val.values())[0]: {}})
elif list(val.keys())[0] == list(path[-1].keys())[0]:
t.update({list(val.values())[0]: {}})
elif list(val.keys())[0] in list(t.keys()):
try:
t.update(
{
list(val.keys())[0]: {
t[list(val.keys())[0]]: {},
list(val.values())[0]: {},
}
}
)
except TypeError:
t[list(val.keys())[0]].update({list(val.values())[0]: {}})
else:
t.update(val)
else:
if isinstance(t, str):
prev_keys = list(map(lambda x: list(x.keys())[0], path))[:-1]
prev_section_key = prev_keys[-1]
if len(prev_keys) == 1:
config[prev_section_key] = {config[prev_section_key]: {}}
t = config[prev_section_key]
else:
t = config
for k in prev_keys[:-1]:
t = t[k]
t[prev_section_key] = {t[prev_section_key]: {}}
t = t[prev_section_key]
t.update({list(item.keys())[0]: val})
else:
t.update(val)
elif val_type == 'named_section':
pass
elif val_type == 'section':
t = val
return config
def parse_node(config, line, line_num, path=None):
if not path:
path = []
line = line.strip()
if not line:
return config, path
if rx_section.match(line):
val_type = 'section'
section = rx_section.match(line).groups()[0]
path.append({section: val_type})
if path:
update_tree(config, path, {section: {}}, val_type=val_type)
elif rx_named_section.match(line):
val_type = 'named_section'
section, name = rx_named_section.match(line).groups()
if section not in [list(p.keys())[0] for p in path]:
path.append({section: val_type})
elif section != [list(p.keys())[0] for p in path][-1]:
path.append({section: val_type})
path.append({name: val_type})
update_tree(config, path, {section: {name: {}}}, val_type=val_type)
elif rx_value.match(line):
key, value = rx_value.match(line).groups()
update_tree(config, path, {key: value}, val_type='value')
elif rx_flag.match(line):
flag = rx_flag.match(line).group()
update_tree(config, path, {flag: flag}, val_type='flag')
elif rx_comment.match(line):
pass
elif line == '}' and path:
path_types = [list(p.values())[0] for p in path]
path.pop()
if len(path_types) > 1 and path_types[-2:] == [
'section',
'named_section',
]:
path.pop()
elif len(path_types) > 1 and path_types[-2:] == [
'named_section',
'named_section',
]:
path.pop()
else:
raise ParserException(
'Parse error at {line_num}: {line}'.format(
line_num=line_num, line=line
)
)
return config, path
def parse_conf(s):
if s:
s = u(s).split('\n')
c = {}
headers = []
for n, line in enumerate(s, start=1):
c, headers = parse_node(c, line, n, headers)
return c
raise ParserException('Empty config passed')
|
hedin/vyatta-conf-parser
|
vyattaconfparser/parser.py
|
Python
|
mit
| 5,394
|
/** 368. Largest Divisible Subset
Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj) of elements in this subset satisfies: Si % Sj = 0 or Sj % Si = 0.
If there are multiple solutions, return any subset is fine.
Example 1:
nums: [1,2,3]
Result: [1,2] (of course, [1,3] will also be ok)
Example 2:
nums: [1,2,4,8]
Result: [1,2,4,8]
Credits:Special thanks to @Stomach_ache for adding this problem and creating all test cases.
**/
#include <iostream>
#include "../utils.h"
using namespace std;
class Solution {
public:
vector<int> largestDivisibleSubset(vector<int>& nums) {
}
};
int main() {
Solution s;
return 0;
}
|
zlsun/leetcode
|
368. Largest Divisible Subset/solution.cpp
|
C++
|
mit
| 696
|
module Docker
module ApplicationHelper
end
end
|
Phillita/docker
|
app/helpers/docker/application_helper.rb
|
Ruby
|
mit
| 51
|
package com.ikaimen.pattern.DeactorPattern.demo1;
/**
* Created by ChenTao on 2017/8/25.
* 家长类
*/
public class Father {
public static void main(String[] args) {
//把美化过的成绩单拿过来
SchoolReport schoolReport = new SugarFouthGradeSchoolReport();
//看成绩单
schoolReport.report();
//家长签名
schoolReport.sgin("家长");
}
}
|
TomChen001/java-pattern
|
src/main/java/com/ikaimen/pattern/DeactorPattern/demo1/Father.java
|
Java
|
mit
| 422
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
public class EnemyAction : MonoBehaviour
{
public enum Attack
{
Consume,
Split
}
public GameObject SplitEffect;
public GameObject ConsumeEffectGoodStuff;
public GameObject ConsumeEffectConsumer;
public Attack AttackBehavior = Attack.Consume;
public float PushForce = 2f;
public GameObject GoodStuffPrefab;
public Action onCollided;
// Use this for initialization
void Start ()
{
GeneralLevel generalLevel = FindObjectOfType<GeneralLevel>();
if(generalLevel != null)
{
onCollided += generalLevel.CheckForCompletion;
}
}
// Update is called once per frame
void Update ()
{
}
private void OnCollisionEnter2D(Collision2D other)
{
if (other.gameObject.tag == "GoodStuff")
{
if (GameManager.Instance.currentGameState == EGameState.Multiplayer)
{
if(other.gameObject.transform.localScale.x == transform.localScale.x)
{
// nothing for now
}
else if (other.gameObject.transform.localScale.x < transform.localScale.x)
{
Destroy(other.gameObject);
if (ConsumeEffectConsumer != null)
{
GameObject ps = Instantiate(ConsumeEffectConsumer, transform.position, transform.rotation);
Destroy(ps, ps.GetComponent<ParticleSystem>().main.duration);
}
StartCoroutine(GameManager.Instance.CheckIfGameOver());
Camera.main.GetComponent<AudioSource>().PlayOneShot(Resources.Load<AudioClip>("Red eats green"));
}
else
{
if (ConsumeEffectGoodStuff != null)
{
GameObject ps = Instantiate(ConsumeEffectGoodStuff, transform.position, transform.rotation);
Destroy(ps, ps.GetComponent<ParticleSystem>().main.duration);
}
Destroy(gameObject);
Camera.main.GetComponent<AudioSource>().PlayOneShot(Resources.Load<AudioClip>("Hit Green" + UnityEngine.Random.Range(0, 3)));
if (this.onCollided != null)
{
this.onCollided();
}
}
}
else
{
switch (AttackBehavior)
{
case Attack.Consume:
if (other.gameObject.transform.localScale.x < transform.localScale.x)
{
Destroy(other.gameObject);
if (ConsumeEffectConsumer != null)
{
GameObject ps = Instantiate(ConsumeEffectConsumer, transform.position, transform.rotation);
Destroy(ps, ps.GetComponent<ParticleSystem>().main.duration);
}
StartCoroutine(GameManager.Instance.CheckIfGameOver());
Camera.main.GetComponent<AudioSource>().PlayOneShot(Resources.Load<AudioClip>("Red eats green"));
}
else
{
if (ConsumeEffectGoodStuff != null)
{
GameObject ps = Instantiate(ConsumeEffectGoodStuff, transform.position, transform.rotation);
Destroy(ps, ps.GetComponent<ParticleSystem>().main.duration);
}
Destroy(gameObject);
Camera.main.GetComponent<AudioSource>().PlayOneShot(Resources.Load<AudioClip>("Hit Green" + UnityEngine.Random.Range(0, 3)));
if (this.onCollided != null)
{
this.onCollided();
}
}
break;
case Attack.Split:
if (other.gameObject.transform.localScale.x > other.gameObject.GetComponent<Merging>().minSize)
{
Rigidbody2D otherRB = other.gameObject.GetComponent<Rigidbody2D>();
Transform oldTransform = other.gameObject.transform;
Destroy(other.gameObject);
if (GoodStuffPrefab != null)
{
float newScale = oldTransform.localScale.x / 2f;
if (newScale < other.gameObject.GetComponent<Merging>().minSize)
newScale = other.gameObject.GetComponent<Merging>().minSize;
Vector3 dir = new Vector3(newScale, newScale, 0);
GameObject split1 = Instantiate(GoodStuffPrefab, oldTransform.position - dir, Quaternion.identity);
GameObject split2 = Instantiate(GoodStuffPrefab, oldTransform.position + dir, Quaternion.identity);
if (SplitEffect != null)
{
GameObject ps = Instantiate(SplitEffect, transform.position, transform.rotation);
Destroy(ps, ps.GetComponent<ParticleSystem>().main.duration);
}
// update scale, mass and drag
split1.transform.localScale = Vector3.one * newScale;
Rigidbody2D split1RB = split1.GetComponent<Rigidbody2D>();
split1RB.mass = otherRB.mass / 2f;
//split1RB.drag = otherRB.drag / 2f;
split2.transform.localScale = Vector3.one * newScale;
Rigidbody2D split2RB = split2.GetComponent<Rigidbody2D>();
split2RB.mass = otherRB.mass / 2f;
//split2RB.drag = otherRB.drag / 2f;
// push the 2 new objects away
split1.GetComponent<Rigidbody2D>().AddForce(-dir * PushForce, ForceMode2D.Impulse);
split2.GetComponent<Rigidbody2D>().AddForce(dir * PushForce, ForceMode2D.Impulse);
Camera.main.GetComponent<AudioSource>().PlayOneShot(Resources.Load<AudioClip>("Split"));
}
}
break;
}
}
}
}
}
|
p4dd9/ngj17_spirit
|
Assets/Scripts/EnemyAction.cs
|
C#
|
mit
| 6,973
|
/*!
*
* ../css/plugins/ranges.js.css
* Litepicker v2.0.4 (https://github.com/wakirin/Litepicker)
* Package: litepicker (https://www.npmjs.com/package/litepicker)
* License: MIT (https://github.com/wakirin/Litepicker/blob/master/LICENCE.md)
* Copyright 2019-2021 Rinat G.
*
* Hash: 90ddf0a545e861c25835
*
*/
.litepicker[data-plugins*="ranges"] .container__predefined-ranges {
position: absolute;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
background: var(--litepicker-container-months-color-bg);
-webkit-box-shadow: -2px 0px 5px var(--litepicker-footer-box-shadow-color);
box-shadow: -2px 0px 5px var(--litepicker-footer-box-shadow-color);
border-radius: 3px;
}
.litepicker[data-plugins*="ranges"] .container__predefined-ranges[data-pos="left"] {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
.litepicker[data-plugins*="ranges"] .container__predefined-ranges[data-pos="right"] {
-webkit-transform: translateX(100%);
transform: translateX(100%);
right: 0;
-webkit-box-shadow: 2px 0px 2px var(--litepicker-footer-box-shadow-color);
box-shadow: 2px 0px 2px var(--litepicker-footer-box-shadow-color);
}
.litepicker[data-plugins*="ranges"] .container__predefined-ranges[data-pos="top"] {
top: 0;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
-webkit-box-shadow: 2px 0px 2px var(--litepicker-footer-box-shadow-color);
box-shadow: 2px 0px 2px var(--litepicker-footer-box-shadow-color);
}
.litepicker[data-plugins*="ranges"] .container__predefined-ranges[data-pos="bottom"] {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-transform: translateY(100%);
transform: translateY(100%);
-webkit-box-shadow: 2px 0px 2px var(--litepicker-footer-box-shadow-color);
box-shadow: 2px 0px 2px var(--litepicker-footer-box-shadow-color);
bottom: 0
}
.litepicker[data-plugins*="ranges"] .container__predefined-ranges button {
padding: 5px;
margin: 2px 0;
}
.litepicker[data-plugins*="ranges"] .container__predefined-ranges[data-pos="left"] button,
.litepicker[data-plugins*="ranges"] .container__predefined-ranges[data-pos="right"] button{
width: 100%;
text-align: left;
}
.litepicker[data-plugins*="ranges"] .container__predefined-ranges button:hover {
cursor: default;
opacity: .6;
}
|
cdnjs/cdnjs
|
ajax/libs/litepicker/2.0.4/css/plugins/ranges.js.css
|
CSS
|
mit
| 2,810
|
/*!
* DevExtreme (dx.aspnet.mvc.js)
* Version: 20.1.8 (build 20303-1716)
* Build date: Thu Oct 29 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
! function(factory) {
if ("function" === typeof define && define.amd) {
define(function(require, exports, module) {
module.exports = factory(require("jquery"), require("./core/templates/template_engine_registry").setTemplateEngine, require("./core/templates/template_base").renderedCallbacks, require("./core/guid"), require("./ui/validation_engine"), require("./core/utils/iterator"), require("./core/utils/dom").extractTemplateMarkup, require("./core/utils/string").encodeHtml, require("./core/utils/ajax"), require("./core/utils/console"))
})
} else {
DevExpress.aspnet = factory(window.jQuery, DevExpress.setTemplateEngine, DevExpress.templateRendered, DevExpress.data.Guid, DevExpress.validationEngine, DevExpress.utils.iterator, DevExpress.utils.dom.extractTemplateMarkup, DevExpress.utils.string.encodeHtml, DevExpress.utils.ajax, DevExpress.utils.console)
}
}(function($, setTemplateEngine, templateRendered, Guid, validationEngine, iteratorUtils, extractTemplateMarkup, encodeHtml, ajax, console) {
var templateCompiler = createTemplateCompiler();
var pendingCreateComponentRoutines = [];
var enableAlternativeTemplateTags = true;
var warnBug17028 = false;
function createTemplateCompiler() {
var OPEN_TAG = "<%",
CLOSE_TAG = "%>",
ENCODE_QUALIFIER = "-",
INTERPOLATE_QUALIFIER = "=";
var EXTENDED_OPEN_TAG = /[<[]%/g,
EXTENDED_CLOSE_TAG = /%[>\]]/g;
function acceptText(bag, text) {
if (text) {
bag.push("_.push(", JSON.stringify(text), ");")
}
}
function acceptCode(bag, code) {
var encode = code.charAt(0) === ENCODE_QUALIFIER,
value = code.substr(1),
interpolate = code.charAt(0) === INTERPOLATE_QUALIFIER;
if (encode || interpolate) {
bag.push("_.push(");
bag.push(encode ? "arguments[1](" + value + ")" : value);
bag.push(");")
} else {
bag.push(code + "\n")
}
}
return function(text) {
var bag = ["var _ = [];", "with(obj||{}) {"],
chunks = text.split(enableAlternativeTemplateTags ? EXTENDED_OPEN_TAG : OPEN_TAG);
if (warnBug17028 && chunks.length > 1) {
if (text.indexOf(OPEN_TAG) > -1) {
console.logger.warn("Please use an alternative template syntax: https://community.devexpress.com/blogs/aspnet/archive/2020/01/29/asp-net-core-new-syntax-to-fix-razor-issue.aspx");
warnBug17028 = false
}
}
acceptText(bag, chunks.shift());
for (var i = 0; i < chunks.length; i++) {
var tmp = chunks[i].split(enableAlternativeTemplateTags ? EXTENDED_CLOSE_TAG : CLOSE_TAG);
if (2 !== tmp.length) {
throw "Template syntax error"
}
acceptCode(bag, tmp[0]);
acceptText(bag, tmp[1])
}
bag.push("}", "return _.join('')");
return new Function("obj", bag.join(""))
}
}
function createTemplateEngine() {
return {
compile: function(element) {
return templateCompiler(extractTemplateMarkup(element))
},
render: function(template, data) {
var html = template(data, encodeHtml);
var dxMvcExtensionsObj = window.MVCx;
if (dxMvcExtensionsObj && !dxMvcExtensionsObj.isDXScriptInitializedOnLoad) {
html = html.replace(/(<script[^>]+)id="dxss_.+?"/g, "$1")
}
return html
}
}
}
function getValidationSummary(validationGroup) {
var result;
$(".dx-validationsummary").each(function(_, element) {
var summary = $(element).data("dxValidationSummary");
if (summary && summary.option("validationGroup") === validationGroup) {
result = summary;
return false
}
});
return result
}
function createValidationSummaryItemsFromValidators(validators, editorNames) {
var items = [];
iteratorUtils.each(validators, function(_, validator) {
var widget = validator.$element().data("dx-validation-target");
if (widget && $.inArray(widget.option("name"), editorNames) > -1) {
items.push({
text: widget.option("validationError.message"),
validator: validator
})
}
});
return items
}
function createComponent(name, options, id, validatorOptions) {
var selector = "#" + String(id).replace(/[^\w-]/g, "\\$&");
pendingCreateComponentRoutines.push(function() {
var $element = $(selector);
if ($element.length) {
var $component = $(selector)[name](options);
if ($.isPlainObject(validatorOptions)) {
$component.dxValidator(validatorOptions)
}
return true
}
return false
})
}
templateRendered.add(function() {
var snapshot = pendingCreateComponentRoutines.slice();
var leftover = [];
pendingCreateComponentRoutines = [];
snapshot.forEach(function(func) {
if (!func()) {
leftover.push(func)
}
});
pendingCreateComponentRoutines = pendingCreateComponentRoutines.concat(leftover)
});
return {
createComponent: createComponent,
renderComponent: function(name, options, id, validatorOptions) {
id = id || "dx-" + new Guid;
createComponent(name, options, id, validatorOptions);
return '<div id="' + id + '"></div>'
},
getEditorValue: function(inputName) {
var $widget = $("input[name='" + inputName + "']").closest(".dx-widget");
if ($widget.length) {
var dxComponents = $widget.data("dxComponents"),
widget = $widget.data(dxComponents[0]);
if (widget) {
return widget.option("value")
}
}
},
setTemplateEngine: function() {
if (setTemplateEngine) {
setTemplateEngine(createTemplateEngine())
}
},
enableAlternativeTemplateTags: function(value) {
enableAlternativeTemplateTags = value
},
warnBug17028: function() {
warnBug17028 = true
},
createValidationSummaryItems: function(validationGroup, editorNames) {
var groupConfig, items, summary = getValidationSummary(validationGroup);
if (summary) {
groupConfig = validationEngine.getGroupConfig(validationGroup);
if (groupConfig) {
items = createValidationSummaryItemsFromValidators(groupConfig.validators, editorNames);
items.length && summary.option("items", items)
}
}
},
sendValidationRequest: function(propertyName, propertyValue, url, method) {
var d = $.Deferred();
var data = {};
data[propertyName] = propertyValue;
ajax.sendRequest({
url: url,
dataType: "json",
method: method || "GET",
data: data
}).then(function(response) {
if ("string" === typeof response) {
d.resolve({
isValid: false,
message: response
})
} else {
d.resolve(response)
}
}, function(xhr) {
d.reject({
isValid: false,
message: xhr.responseText
})
});
return d.promise()
}
}
});
|
cdnjs/cdnjs
|
ajax/libs/devextreme/20.1.9-build-20303-1716/js/dx.aspnet.mvc.js
|
JavaScript
|
mit
| 8,634
|
/**
* DevExtreme (dx.common.css)
* Version: 20.2.8 (build 21181-0330)
* Build date: Wed Jun 30 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
/*!
This file is kept for backward compatibility.
It is no longer required.
*/
|
cdnjs/cdnjs
|
ajax/libs/devextreme/20.2.9-build-21181-0330/css/dx.common.css
|
CSS
|
mit
| 331
|
/*!
* DevExtreme (dx.messages.en.js)
* Version: 22.1.0 (build 22018-0314)
* Build date: Tue Jan 18 2022
*
* Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
"use strict";
! function(root, factory) {
if ("function" === typeof define && define.amd) {
define((function(require) {
factory(require("devextreme/localization"))
}))
} else if ("object" === typeof module && module.exports) {
factory(require("devextreme/localization"))
} else {
factory(DevExpress.localization)
}
}(0, (function(localization) {
localization.loadMessages({
en: {
Yes: "Yes",
No: "No",
Cancel: "Cancel",
Clear: "Clear",
Done: "Done",
Loading: "Loading...",
Select: "Select...",
Search: "Search",
Back: "Back",
OK: "OK",
"dxCollectionWidget-noDataText": "No data to display",
"dxDropDownEditor-selectLabel": "Select",
"validation-required": "Required",
"validation-required-formatted": "{0} is required",
"validation-numeric": "Value must be a number",
"validation-numeric-formatted": "{0} must be a number",
"validation-range": "Value is out of range",
"validation-range-formatted": "{0} is out of range",
"validation-stringLength": "The length of the value is not correct",
"validation-stringLength-formatted": "The length of {0} is not correct",
"validation-custom": "Value is invalid",
"validation-custom-formatted": "{0} is invalid",
"validation-async": "Value is invalid",
"validation-async-formatted": "{0} is invalid",
"validation-compare": "Values do not match",
"validation-compare-formatted": "{0} does not match",
"validation-pattern": "Value does not match pattern",
"validation-pattern-formatted": "{0} does not match pattern",
"validation-email": "Email is invalid",
"validation-email-formatted": "{0} is invalid",
"validation-mask": "Value is invalid",
"dxLookup-searchPlaceholder": "Minimum character number: {0}",
"dxList-pullingDownText": "Pull down to refresh...",
"dxList-pulledDownText": "Release to refresh...",
"dxList-refreshingText": "Refreshing...",
"dxList-pageLoadingText": "Loading...",
"dxList-nextButtonText": "More",
"dxList-selectAll": "Select All",
"dxListEditDecorator-delete": "Delete",
"dxListEditDecorator-more": "More",
"dxScrollView-pullingDownText": "Pull down to refresh...",
"dxScrollView-pulledDownText": "Release to refresh...",
"dxScrollView-refreshingText": "Refreshing...",
"dxScrollView-reachBottomText": "Loading...",
"dxDateBox-simulatedDataPickerTitleTime": "Select time",
"dxDateBox-simulatedDataPickerTitleDate": "Select date",
"dxDateBox-simulatedDataPickerTitleDateTime": "Select date and time",
"dxDateBox-validation-datetime": "Value must be a date or time",
"dxFileUploader-selectFile": "Select file",
"dxFileUploader-dropFile": "or Drop file here",
"dxFileUploader-bytes": "bytes",
"dxFileUploader-kb": "kb",
"dxFileUploader-Mb": "Mb",
"dxFileUploader-Gb": "Gb",
"dxFileUploader-upload": "Upload",
"dxFileUploader-uploaded": "Uploaded",
"dxFileUploader-readyToUpload": "Ready to upload",
"dxFileUploader-uploadAbortedMessage": "Upload cancelled",
"dxFileUploader-uploadFailedMessage": "Upload failed",
"dxFileUploader-invalidFileExtension": "File type is not allowed",
"dxFileUploader-invalidMaxFileSize": "File is too large",
"dxFileUploader-invalidMinFileSize": "File is too small",
"dxRangeSlider-ariaFrom": "From",
"dxRangeSlider-ariaTill": "Till",
"dxSwitch-switchedOnText": "ON",
"dxSwitch-switchedOffText": "OFF",
"dxForm-optionalMark": "optional",
"dxForm-requiredMessage": "{0} is required",
"dxNumberBox-invalidValueMessage": "Value must be a number",
"dxNumberBox-noDataText": "No data",
"dxDataGrid-columnChooserTitle": "Column Chooser",
"dxDataGrid-columnChooserEmptyText": "Drag a column here to hide it",
"dxDataGrid-groupContinuesMessage": "Continues on the next page",
"dxDataGrid-groupContinuedMessage": "Continued from the previous page",
"dxDataGrid-groupHeaderText": "Group by This Column",
"dxDataGrid-ungroupHeaderText": "Ungroup",
"dxDataGrid-ungroupAllText": "Ungroup All",
"dxDataGrid-editingEditRow": "Edit",
"dxDataGrid-editingSaveRowChanges": "Save",
"dxDataGrid-editingCancelRowChanges": "Cancel",
"dxDataGrid-editingDeleteRow": "Delete",
"dxDataGrid-editingUndeleteRow": "Undelete",
"dxDataGrid-editingConfirmDeleteMessage": "Are you sure you want to delete this record?",
"dxDataGrid-validationCancelChanges": "Cancel changes",
"dxDataGrid-groupPanelEmptyText": "Drag a column header here to group by that column",
"dxDataGrid-noDataText": "No data",
"dxDataGrid-searchPanelPlaceholder": "Search...",
"dxDataGrid-filterRowShowAllText": "(All)",
"dxDataGrid-filterRowResetOperationText": "Reset",
"dxDataGrid-filterRowOperationEquals": "Equals",
"dxDataGrid-filterRowOperationNotEquals": "Does not equal",
"dxDataGrid-filterRowOperationLess": "Less than",
"dxDataGrid-filterRowOperationLessOrEquals": "Less than or equal to",
"dxDataGrid-filterRowOperationGreater": "Greater than",
"dxDataGrid-filterRowOperationGreaterOrEquals": "Greater than or equal to",
"dxDataGrid-filterRowOperationStartsWith": "Starts with",
"dxDataGrid-filterRowOperationContains": "Contains",
"dxDataGrid-filterRowOperationNotContains": "Does not contain",
"dxDataGrid-filterRowOperationEndsWith": "Ends with",
"dxDataGrid-filterRowOperationBetween": "Between",
"dxDataGrid-filterRowOperationBetweenStartText": "Start",
"dxDataGrid-filterRowOperationBetweenEndText": "End",
"dxDataGrid-applyFilterText": "Apply filter",
"dxDataGrid-trueText": "true",
"dxDataGrid-falseText": "false",
"dxDataGrid-sortingAscendingText": "Sort Ascending",
"dxDataGrid-sortingDescendingText": "Sort Descending",
"dxDataGrid-sortingClearText": "Clear Sorting",
"dxDataGrid-editingSaveAllChanges": "Save changes",
"dxDataGrid-editingCancelAllChanges": "Discard changes",
"dxDataGrid-editingAddRow": "Add a row",
"dxDataGrid-summaryMin": "Min: {0}",
"dxDataGrid-summaryMinOtherColumn": "Min of {1} is {0}",
"dxDataGrid-summaryMax": "Max: {0}",
"dxDataGrid-summaryMaxOtherColumn": "Max of {1} is {0}",
"dxDataGrid-summaryAvg": "Avg: {0}",
"dxDataGrid-summaryAvgOtherColumn": "Avg of {1} is {0}",
"dxDataGrid-summarySum": "Sum: {0}",
"dxDataGrid-summarySumOtherColumn": "Sum of {1} is {0}",
"dxDataGrid-summaryCount": "Count: {0}",
"dxDataGrid-columnFixingFix": "Fix",
"dxDataGrid-columnFixingUnfix": "Unfix",
"dxDataGrid-columnFixingLeftPosition": "To the left",
"dxDataGrid-columnFixingRightPosition": "To the right",
"dxDataGrid-exportTo": "Export",
"dxDataGrid-exportToExcel": "Export to Excel file",
"dxDataGrid-exporting": "Exporting...",
"dxDataGrid-excelFormat": "Excel file",
"dxDataGrid-selectedRows": "Selected rows",
"dxDataGrid-exportSelectedRows": "Export selected rows",
"dxDataGrid-exportAll": "Export all data",
"dxDataGrid-headerFilterEmptyValue": "(Blanks)",
"dxDataGrid-headerFilterOK": "OK",
"dxDataGrid-headerFilterCancel": "Cancel",
"dxDataGrid-ariaAdaptiveCollapse": "Hide additional data",
"dxDataGrid-ariaAdaptiveExpand": "Display additional data",
"dxDataGrid-ariaColumn": "Column",
"dxDataGrid-ariaValue": "Value",
"dxDataGrid-ariaFilterCell": "Filter cell",
"dxDataGrid-ariaCollapse": "Collapse",
"dxDataGrid-ariaExpand": "Expand",
"dxDataGrid-ariaDataGrid": "Data grid",
"dxDataGrid-ariaSearchInGrid": "Search in the data grid",
"dxDataGrid-ariaSelectAll": "Select all",
"dxDataGrid-ariaSelectRow": "Select row",
"dxDataGrid-ariaToolbar": "Data grid toolbar",
"dxDataGrid-filterBuilderPopupTitle": "Filter Builder",
"dxDataGrid-filterPanelCreateFilter": "Create Filter",
"dxDataGrid-filterPanelClearFilter": "Clear",
"dxDataGrid-filterPanelFilterEnabledHint": "Enable the filter",
"dxTreeList-ariaTreeList": "Tree list",
"dxTreeList-ariaSearchInGrid": "Search in the tree list",
"dxTreeList-ariaToolbar": "Tree list toolbar",
"dxTreeList-editingAddRowToNode": "Add",
"dxPager-infoText": "Page {0} of {1} ({2} items)",
"dxPager-pagesCountText": "of",
"dxPager-pageSizesAllText": "All",
"dxPivotGrid-grandTotal": "Grand Total",
"dxPivotGrid-total": "{0} Total",
"dxPivotGrid-fieldChooserTitle": "Field Chooser",
"dxPivotGrid-showFieldChooser": "Show Field Chooser",
"dxPivotGrid-expandAll": "Expand All",
"dxPivotGrid-collapseAll": "Collapse All",
"dxPivotGrid-sortColumnBySummary": 'Sort "{0}" by This Column',
"dxPivotGrid-sortRowBySummary": 'Sort "{0}" by This Row',
"dxPivotGrid-removeAllSorting": "Remove All Sorting",
"dxPivotGrid-dataNotAvailable": "N/A",
"dxPivotGrid-rowFields": "Row Fields",
"dxPivotGrid-columnFields": "Column Fields",
"dxPivotGrid-dataFields": "Data Fields",
"dxPivotGrid-filterFields": "Filter Fields",
"dxPivotGrid-allFields": "All Fields",
"dxPivotGrid-columnFieldArea": "Drop Column Fields Here",
"dxPivotGrid-dataFieldArea": "Drop Data Fields Here",
"dxPivotGrid-rowFieldArea": "Drop Row Fields Here",
"dxPivotGrid-filterFieldArea": "Drop Filter Fields Here",
"dxScheduler-editorLabelTitle": "Subject",
"dxScheduler-editorLabelStartDate": "Start Date",
"dxScheduler-editorLabelEndDate": "End Date",
"dxScheduler-editorLabelDescription": "Description",
"dxScheduler-editorLabelRecurrence": "Repeat",
"dxScheduler-openAppointment": "Open appointment",
"dxScheduler-recurrenceNever": "Never",
"dxScheduler-recurrenceMinutely": "Every minute",
"dxScheduler-recurrenceHourly": "Hourly",
"dxScheduler-recurrenceDaily": "Daily",
"dxScheduler-recurrenceWeekly": "Weekly",
"dxScheduler-recurrenceMonthly": "Monthly",
"dxScheduler-recurrenceYearly": "Yearly",
"dxScheduler-recurrenceRepeatEvery": "Repeat Every",
"dxScheduler-recurrenceRepeatOn": "Repeat On",
"dxScheduler-recurrenceEnd": "End repeat",
"dxScheduler-recurrenceAfter": "After",
"dxScheduler-recurrenceOn": "On",
"dxScheduler-recurrenceRepeatMinutely": "minute(s)",
"dxScheduler-recurrenceRepeatHourly": "hour(s)",
"dxScheduler-recurrenceRepeatDaily": "day(s)",
"dxScheduler-recurrenceRepeatWeekly": "week(s)",
"dxScheduler-recurrenceRepeatMonthly": "month(s)",
"dxScheduler-recurrenceRepeatYearly": "year(s)",
"dxScheduler-switcherDay": "Day",
"dxScheduler-switcherWeek": "Week",
"dxScheduler-switcherWorkWeek": "Work Week",
"dxScheduler-switcherMonth": "Month",
"dxScheduler-switcherAgenda": "Agenda",
"dxScheduler-switcherTimelineDay": "Timeline Day",
"dxScheduler-switcherTimelineWeek": "Timeline Week",
"dxScheduler-switcherTimelineWorkWeek": "Timeline Work Week",
"dxScheduler-switcherTimelineMonth": "Timeline Month",
"dxScheduler-recurrenceRepeatOnDate": "on date",
"dxScheduler-recurrenceRepeatCount": "occurrence(s)",
"dxScheduler-allDay": "All day",
"dxScheduler-confirmRecurrenceEditMessage": "Do you want to edit only this appointment or the whole series?",
"dxScheduler-confirmRecurrenceDeleteMessage": "Do you want to delete only this appointment or the whole series?",
"dxScheduler-confirmRecurrenceEditSeries": "Edit series",
"dxScheduler-confirmRecurrenceDeleteSeries": "Delete series",
"dxScheduler-confirmRecurrenceEditOccurrence": "Edit appointment",
"dxScheduler-confirmRecurrenceDeleteOccurrence": "Delete appointment",
"dxScheduler-noTimezoneTitle": "No timezone",
"dxScheduler-moreAppointments": "{0} more",
"dxCalendar-todayButtonText": "Today",
"dxCalendar-ariaWidgetName": "Calendar",
"dxColorView-ariaRed": "Red",
"dxColorView-ariaGreen": "Green",
"dxColorView-ariaBlue": "Blue",
"dxColorView-ariaAlpha": "Transparency",
"dxColorView-ariaHex": "Color code",
"dxTagBox-selected": "{0} selected",
"dxTagBox-allSelected": "All selected ({0})",
"dxTagBox-moreSelected": "{0} more",
"vizExport-printingButtonText": "Print",
"vizExport-titleMenuText": "Exporting/Printing",
"vizExport-exportButtonText": "{0} file",
"dxFilterBuilder-and": "And",
"dxFilterBuilder-or": "Or",
"dxFilterBuilder-notAnd": "Not And",
"dxFilterBuilder-notOr": "Not Or",
"dxFilterBuilder-addCondition": "Add Condition",
"dxFilterBuilder-addGroup": "Add Group",
"dxFilterBuilder-enterValueText": "<enter a value>",
"dxFilterBuilder-filterOperationEquals": "Equals",
"dxFilterBuilder-filterOperationNotEquals": "Does not equal",
"dxFilterBuilder-filterOperationLess": "Is less than",
"dxFilterBuilder-filterOperationLessOrEquals": "Is less than or equal to",
"dxFilterBuilder-filterOperationGreater": "Is greater than",
"dxFilterBuilder-filterOperationGreaterOrEquals": "Is greater than or equal to",
"dxFilterBuilder-filterOperationStartsWith": "Starts with",
"dxFilterBuilder-filterOperationContains": "Contains",
"dxFilterBuilder-filterOperationNotContains": "Does not contain",
"dxFilterBuilder-filterOperationEndsWith": "Ends with",
"dxFilterBuilder-filterOperationIsBlank": "Is blank",
"dxFilterBuilder-filterOperationIsNotBlank": "Is not blank",
"dxFilterBuilder-filterOperationBetween": "Is between",
"dxFilterBuilder-filterOperationAnyOf": "Is any of",
"dxFilterBuilder-filterOperationNoneOf": "Is none of",
"dxHtmlEditor-dialogColorCaption": "Change Font Color",
"dxHtmlEditor-dialogBackgroundCaption": "Change Background Color",
"dxHtmlEditor-dialogLinkCaption": "Add Link",
"dxHtmlEditor-dialogLinkUrlField": "URL",
"dxHtmlEditor-dialogLinkTextField": "Text",
"dxHtmlEditor-dialogLinkTargetField": "Open link in new window",
"dxHtmlEditor-dialogImageCaption": "Add Image",
"dxHtmlEditor-dialogImageUrlField": "URL",
"dxHtmlEditor-dialogImageAltField": "Alternate text",
"dxHtmlEditor-dialogImageWidthField": "Width (px)",
"dxHtmlEditor-dialogImageHeightField": "Height (px)",
"dxHtmlEditor-dialogInsertTableRowsField": "Rows",
"dxHtmlEditor-dialogInsertTableColumnsField": "Columns",
"dxHtmlEditor-dialogInsertTableCaption": "Insert Table",
"dxHtmlEditor-heading": "Heading",
"dxHtmlEditor-normalText": "Normal text",
"dxHtmlEditor-background": "Background Color",
"dxHtmlEditor-bold": "Bold",
"dxHtmlEditor-color": "Font Color",
"dxHtmlEditor-font": "Font",
"dxHtmlEditor-italic": "Italic",
"dxHtmlEditor-link": "Add Link",
"dxHtmlEditor-image": "Add Image",
"dxHtmlEditor-size": "Size",
"dxHtmlEditor-strike": "Strikethrough",
"dxHtmlEditor-subscript": "Subscript",
"dxHtmlEditor-superscript": "Superscript",
"dxHtmlEditor-underline": "Underline",
"dxHtmlEditor-blockquote": "Blockquote",
"dxHtmlEditor-header": "Header",
"dxHtmlEditor-increaseIndent": "Increase Indent",
"dxHtmlEditor-decreaseIndent": "Decrease Indent",
"dxHtmlEditor-orderedList": "Ordered List",
"dxHtmlEditor-bulletList": "Bullet List",
"dxHtmlEditor-alignLeft": "Align Left",
"dxHtmlEditor-alignCenter": "Align Center",
"dxHtmlEditor-alignRight": "Align Right",
"dxHtmlEditor-alignJustify": "Align Justify",
"dxHtmlEditor-codeBlock": "Code Block",
"dxHtmlEditor-variable": "Add Variable",
"dxHtmlEditor-undo": "Undo",
"dxHtmlEditor-redo": "Redo",
"dxHtmlEditor-clear": "Clear Formatting",
"dxHtmlEditor-insertTable": "Insert Table",
"dxHtmlEditor-insertHeaderRow": "Insert Header Row",
"dxHtmlEditor-insertRowAbove": "Insert Row Above",
"dxHtmlEditor-insertRowBelow": "Insert Row Below",
"dxHtmlEditor-insertColumnLeft": "Insert Column Left",
"dxHtmlEditor-insertColumnRight": "Insert Column Right",
"dxHtmlEditor-deleteColumn": "Delete Column",
"dxHtmlEditor-deleteRow": "Delete Row",
"dxHtmlEditor-deleteTable": "Delete Table",
"dxHtmlEditor-cellProperties": "Cell Properties",
"dxHtmlEditor-tableProperties": "Table Properties",
"dxHtmlEditor-insert": "Insert",
"dxHtmlEditor-delete": "Delete",
"dxHtmlEditor-border": "Border",
"dxHtmlEditor-style": "Style",
"dxHtmlEditor-width": "Width",
"dxHtmlEditor-height": "Height",
"dxHtmlEditor-borderColor": "Color",
"dxHtmlEditor-tableBackground": "Background",
"dxHtmlEditor-dimensions": "Dimensions",
"dxHtmlEditor-alignment": "Alignment",
"dxHtmlEditor-horizontal": "Horizontal",
"dxHtmlEditor-vertical": "Vertical",
"dxHtmlEditor-paddingVertical": "Vertical Padding",
"dxHtmlEditor-paddingHorizontal": "Horizontal Padding",
"dxHtmlEditor-pixels": "Pixels",
"dxHtmlEditor-list": "List",
"dxHtmlEditor-ordered": "Ordered",
"dxHtmlEditor-bullet": "Bullet",
"dxHtmlEditor-align": "Align",
"dxHtmlEditor-center": "Center",
"dxHtmlEditor-left": "Left",
"dxHtmlEditor-right": "Right",
"dxHtmlEditor-indent": "Indent",
"dxHtmlEditor-justify": "Justify",
"dxFileManager-newDirectoryName": "Untitled directory",
"dxFileManager-rootDirectoryName": "Files",
"dxFileManager-errorNoAccess": "Access Denied. Operation could not be completed.",
"dxFileManager-errorDirectoryExistsFormat": "Directory '{0}' already exists.",
"dxFileManager-errorFileExistsFormat": "File '{0}' already exists.",
"dxFileManager-errorFileNotFoundFormat": "File '{0}' not found.",
"dxFileManager-errorDirectoryNotFoundFormat": "Directory '{0}' not found.",
"dxFileManager-errorWrongFileExtension": "File extension is not allowed.",
"dxFileManager-errorMaxFileSizeExceeded": "File size exceeds the maximum allowed size.",
"dxFileManager-errorInvalidSymbols": "This name contains invalid characters.",
"dxFileManager-errorDefault": "Unspecified error.",
"dxFileManager-errorDirectoryOpenFailed": "The directory cannot be opened",
"dxFileManager-commandCreate": "New directory",
"dxFileManager-commandRename": "Rename",
"dxFileManager-commandMove": "Move to",
"dxFileManager-commandCopy": "Copy to",
"dxFileManager-commandDelete": "Delete",
"dxFileManager-commandDownload": "Download",
"dxFileManager-commandUpload": "Upload files",
"dxFileManager-commandRefresh": "Refresh",
"dxFileManager-commandThumbnails": "Thumbnails View",
"dxFileManager-commandDetails": "Details View",
"dxFileManager-commandClearSelection": "Clear selection",
"dxFileManager-commandShowNavPane": "Toggle navigation pane",
"dxFileManager-dialogDirectoryChooserMoveTitle": "Move to",
"dxFileManager-dialogDirectoryChooserMoveButtonText": "Move",
"dxFileManager-dialogDirectoryChooserCopyTitle": "Copy to",
"dxFileManager-dialogDirectoryChooserCopyButtonText": "Copy",
"dxFileManager-dialogRenameItemTitle": "Rename",
"dxFileManager-dialogRenameItemButtonText": "Save",
"dxFileManager-dialogCreateDirectoryTitle": "New directory",
"dxFileManager-dialogCreateDirectoryButtonText": "Create",
"dxFileManager-dialogDeleteItemTitle": "Delete",
"dxFileManager-dialogDeleteItemButtonText": "Delete",
"dxFileManager-dialogDeleteItemSingleItemConfirmation": "Are you sure you want to delete {0}?",
"dxFileManager-dialogDeleteItemMultipleItemsConfirmation": "Are you sure you want to delete {0} items?",
"dxFileManager-dialogButtonCancel": "Cancel",
"dxFileManager-editingCreateSingleItemProcessingMessage": "Creating a directory inside {0}",
"dxFileManager-editingCreateSingleItemSuccessMessage": "Created a directory inside {0}",
"dxFileManager-editingCreateSingleItemErrorMessage": "Directory was not created",
"dxFileManager-editingCreateCommonErrorMessage": "Directory was not created",
"dxFileManager-editingRenameSingleItemProcessingMessage": "Renaming an item inside {0}",
"dxFileManager-editingRenameSingleItemSuccessMessage": "Renamed an item inside {0}",
"dxFileManager-editingRenameSingleItemErrorMessage": "Item was not renamed",
"dxFileManager-editingRenameCommonErrorMessage": "Item was not renamed",
"dxFileManager-editingDeleteSingleItemProcessingMessage": "Deleting an item from {0}",
"dxFileManager-editingDeleteMultipleItemsProcessingMessage": "Deleting {0} items from {1}",
"dxFileManager-editingDeleteSingleItemSuccessMessage": "Deleted an item from {0}",
"dxFileManager-editingDeleteMultipleItemsSuccessMessage": "Deleted {0} items from {1}",
"dxFileManager-editingDeleteSingleItemErrorMessage": "Item was not deleted",
"dxFileManager-editingDeleteMultipleItemsErrorMessage": "{0} items were not deleted",
"dxFileManager-editingDeleteCommonErrorMessage": "Some items were not deleted",
"dxFileManager-editingMoveSingleItemProcessingMessage": "Moving an item to {0}",
"dxFileManager-editingMoveMultipleItemsProcessingMessage": "Moving {0} items to {1}",
"dxFileManager-editingMoveSingleItemSuccessMessage": "Moved an item to {0}",
"dxFileManager-editingMoveMultipleItemsSuccessMessage": "Moved {0} items to {1}",
"dxFileManager-editingMoveSingleItemErrorMessage": "Item was not moved",
"dxFileManager-editingMoveMultipleItemsErrorMessage": "{0} items were not moved",
"dxFileManager-editingMoveCommonErrorMessage": "Some items were not moved",
"dxFileManager-editingCopySingleItemProcessingMessage": "Copying an item to {0}",
"dxFileManager-editingCopyMultipleItemsProcessingMessage": "Copying {0} items to {1}",
"dxFileManager-editingCopySingleItemSuccessMessage": "Copied an item to {0}",
"dxFileManager-editingCopyMultipleItemsSuccessMessage": "Copied {0} items to {1}",
"dxFileManager-editingCopySingleItemErrorMessage": "Item was not copied",
"dxFileManager-editingCopyMultipleItemsErrorMessage": "{0} items were not copied",
"dxFileManager-editingCopyCommonErrorMessage": "Some items were not copied",
"dxFileManager-editingUploadSingleItemProcessingMessage": "Uploading an item to {0}",
"dxFileManager-editingUploadMultipleItemsProcessingMessage": "Uploading {0} items to {1}",
"dxFileManager-editingUploadSingleItemSuccessMessage": "Uploaded an item to {0}",
"dxFileManager-editingUploadMultipleItemsSuccessMessage": "Uploaded {0} items to {1}",
"dxFileManager-editingUploadSingleItemErrorMessage": "Item was not uploaded",
"dxFileManager-editingUploadMultipleItemsErrorMessage": "{0} items were not uploaded",
"dxFileManager-editingUploadCanceledMessage": "Canceled",
"dxFileManager-listDetailsColumnCaptionName": "Name",
"dxFileManager-listDetailsColumnCaptionDateModified": "Date Modified",
"dxFileManager-listDetailsColumnCaptionFileSize": "File Size",
"dxFileManager-listThumbnailsTooltipTextSize": "Size",
"dxFileManager-listThumbnailsTooltipTextDateModified": "Date Modified",
"dxFileManager-notificationProgressPanelTitle": "Progress",
"dxFileManager-notificationProgressPanelEmptyListText": "No operations",
"dxFileManager-notificationProgressPanelOperationCanceled": "Canceled",
"dxDiagram-categoryGeneral": "General",
"dxDiagram-categoryFlowchart": "Flowchart",
"dxDiagram-categoryOrgChart": "Org Chart",
"dxDiagram-categoryContainers": "Containers",
"dxDiagram-categoryCustom": "Custom",
"dxDiagram-commandExportToSvg": "Export to SVG",
"dxDiagram-commandExportToPng": "Export to PNG",
"dxDiagram-commandExportToJpg": "Export to JPEG",
"dxDiagram-commandUndo": "Undo",
"dxDiagram-commandRedo": "Redo",
"dxDiagram-commandFontName": "Font Name",
"dxDiagram-commandFontSize": "Font Size",
"dxDiagram-commandBold": "Bold",
"dxDiagram-commandItalic": "Italic",
"dxDiagram-commandUnderline": "Underline",
"dxDiagram-commandTextColor": "Font Color",
"dxDiagram-commandLineColor": "Line Color",
"dxDiagram-commandLineWidth": "Line Width",
"dxDiagram-commandLineStyle": "Line Style",
"dxDiagram-commandLineStyleSolid": "Solid",
"dxDiagram-commandLineStyleDotted": "Dotted",
"dxDiagram-commandLineStyleDashed": "Dashed",
"dxDiagram-commandFillColor": "Fill Color",
"dxDiagram-commandAlignLeft": "Align Left",
"dxDiagram-commandAlignCenter": "Align Center",
"dxDiagram-commandAlignRight": "Align Right",
"dxDiagram-commandConnectorLineType": "Connector Line Type",
"dxDiagram-commandConnectorLineStraight": "Straight",
"dxDiagram-commandConnectorLineOrthogonal": "Orthogonal",
"dxDiagram-commandConnectorLineStart": "Connector Line Start",
"dxDiagram-commandConnectorLineEnd": "Connector Line End",
"dxDiagram-commandConnectorLineNone": "None",
"dxDiagram-commandConnectorLineArrow": "Arrow",
"dxDiagram-commandFullscreen": "Full Screen",
"dxDiagram-commandUnits": "Units",
"dxDiagram-commandPageSize": "Page Size",
"dxDiagram-commandPageOrientation": "Page Orientation",
"dxDiagram-commandPageOrientationLandscape": "Landscape",
"dxDiagram-commandPageOrientationPortrait": "Portrait",
"dxDiagram-commandPageColor": "Page Color",
"dxDiagram-commandShowGrid": "Show Grid",
"dxDiagram-commandSnapToGrid": "Snap to Grid",
"dxDiagram-commandGridSize": "Grid Size",
"dxDiagram-commandZoomLevel": "Zoom Level",
"dxDiagram-commandAutoZoom": "Auto Zoom",
"dxDiagram-commandFitToContent": "Fit to Content",
"dxDiagram-commandFitToWidth": "Fit to Width",
"dxDiagram-commandAutoZoomByContent": "Auto Zoom by Content",
"dxDiagram-commandAutoZoomByWidth": "Auto Zoom by Width",
"dxDiagram-commandSimpleView": "Simple View",
"dxDiagram-commandCut": "Cut",
"dxDiagram-commandCopy": "Copy",
"dxDiagram-commandPaste": "Paste",
"dxDiagram-commandSelectAll": "Select All",
"dxDiagram-commandDelete": "Delete",
"dxDiagram-commandBringToFront": "Bring to Front",
"dxDiagram-commandSendToBack": "Send to Back",
"dxDiagram-commandLock": "Lock",
"dxDiagram-commandUnlock": "Unlock",
"dxDiagram-commandInsertShapeImage": "Insert Image...",
"dxDiagram-commandEditShapeImage": "Change Image...",
"dxDiagram-commandDeleteShapeImage": "Delete Image",
"dxDiagram-commandLayoutLeftToRight": "Left-to-right",
"dxDiagram-commandLayoutRightToLeft": "Right-to-left",
"dxDiagram-commandLayoutTopToBottom": "Top-to-bottom",
"dxDiagram-commandLayoutBottomToTop": "Bottom-to-top",
"dxDiagram-unitIn": "in",
"dxDiagram-unitCm": "cm",
"dxDiagram-unitPx": "px",
"dxDiagram-dialogButtonOK": "OK",
"dxDiagram-dialogButtonCancel": "Cancel",
"dxDiagram-dialogInsertShapeImageTitle": "Insert Image",
"dxDiagram-dialogEditShapeImageTitle": "Change Image",
"dxDiagram-dialogEditShapeImageSelectButton": "Select image",
"dxDiagram-dialogEditShapeImageLabelText": "or drop file here",
"dxDiagram-uiExport": "Export",
"dxDiagram-uiProperties": "Properties",
"dxDiagram-uiSettings": "Settings",
"dxDiagram-uiShowToolbox": "Show Toolbox",
"dxDiagram-uiSearch": "Search",
"dxDiagram-uiStyle": "Style",
"dxDiagram-uiLayout": "Layout",
"dxDiagram-uiLayoutTree": "Tree",
"dxDiagram-uiLayoutLayered": "Layered",
"dxDiagram-uiDiagram": "Diagram",
"dxDiagram-uiText": "Text",
"dxDiagram-uiObject": "Object",
"dxDiagram-uiConnector": "Connector",
"dxDiagram-uiPage": "Page",
"dxDiagram-shapeText": "Text",
"dxDiagram-shapeRectangle": "Rectangle",
"dxDiagram-shapeEllipse": "Ellipse",
"dxDiagram-shapeCross": "Cross",
"dxDiagram-shapeTriangle": "Triangle",
"dxDiagram-shapeDiamond": "Diamond",
"dxDiagram-shapeHeart": "Heart",
"dxDiagram-shapePentagon": "Pentagon",
"dxDiagram-shapeHexagon": "Hexagon",
"dxDiagram-shapeOctagon": "Octagon",
"dxDiagram-shapeStar": "Star",
"dxDiagram-shapeArrowLeft": "Left Arrow",
"dxDiagram-shapeArrowUp": "Up Arrow",
"dxDiagram-shapeArrowRight": "Right Arrow",
"dxDiagram-shapeArrowDown": "Down Arrow",
"dxDiagram-shapeArrowUpDown": "Up Down Arrow",
"dxDiagram-shapeArrowLeftRight": "Left Right Arrow",
"dxDiagram-shapeProcess": "Process",
"dxDiagram-shapeDecision": "Decision",
"dxDiagram-shapeTerminator": "Terminator",
"dxDiagram-shapePredefinedProcess": "Predefined Process",
"dxDiagram-shapeDocument": "Document",
"dxDiagram-shapeMultipleDocuments": "Multiple Documents",
"dxDiagram-shapeManualInput": "Manual Input",
"dxDiagram-shapePreparation": "Preparation",
"dxDiagram-shapeData": "Data",
"dxDiagram-shapeDatabase": "Database",
"dxDiagram-shapeHardDisk": "Hard Disk",
"dxDiagram-shapeInternalStorage": "Internal Storage",
"dxDiagram-shapePaperTape": "Paper Tape",
"dxDiagram-shapeManualOperation": "Manual Operation",
"dxDiagram-shapeDelay": "Delay",
"dxDiagram-shapeStoredData": "Stored Data",
"dxDiagram-shapeDisplay": "Display",
"dxDiagram-shapeMerge": "Merge",
"dxDiagram-shapeConnector": "Connector",
"dxDiagram-shapeOr": "Or",
"dxDiagram-shapeSummingJunction": "Summing Junction",
"dxDiagram-shapeContainerDefaultText": "Container",
"dxDiagram-shapeVerticalContainer": "Vertical Container",
"dxDiagram-shapeHorizontalContainer": "Horizontal Container",
"dxDiagram-shapeCardDefaultText": "Person's Name",
"dxDiagram-shapeCardWithImageOnLeft": "Card with Image on the Left",
"dxDiagram-shapeCardWithImageOnTop": "Card with Image on the Top",
"dxDiagram-shapeCardWithImageOnRight": "Card with Image on the Right",
"dxGantt-dialogTitle": "Title",
"dxGantt-dialogStartTitle": "Start",
"dxGantt-dialogEndTitle": "End",
"dxGantt-dialogProgressTitle": "Progress",
"dxGantt-dialogResourcesTitle": "Resources",
"dxGantt-dialogResourceManagerTitle": "Resource Manager",
"dxGantt-dialogTaskDetailsTitle": "Task Details",
"dxGantt-dialogEditResourceListHint": "Edit Resource List",
"dxGantt-dialogEditNoResources": "No resources",
"dxGantt-dialogButtonAdd": "Add",
"dxGantt-contextMenuNewTask": "New Task",
"dxGantt-contextMenuNewSubtask": "New Subtask",
"dxGantt-contextMenuDeleteTask": "Delete Task",
"dxGantt-contextMenuDeleteDependency": "Delete Dependency",
"dxGantt-dialogTaskDeleteConfirmation": "Deleting a task also deletes all its dependencies and subtasks. Are you sure you want to delete this task?",
"dxGantt-dialogDependencyDeleteConfirmation": "Are you sure you want to delete the dependency from the task?",
"dxGantt-dialogResourcesDeleteConfirmation": "Deleting a resource also deletes it from tasks to which this resource is assigned. Are you sure you want to delete these resources? Resources: {0}",
"dxGantt-dialogConstraintCriticalViolationMessage": "The task you are attempting to move is linked to a second task by a dependency relation. This change would conflict with dependency rules. How would you like to proceed?",
"dxGantt-dialogConstraintViolationMessage": "The task you are attempting to move is linked to a second task by a dependency relation. How would you like to proceed?",
"dxGantt-dialogCancelOperationMessage": "Cancel the operation",
"dxGantt-dialogDeleteDependencyMessage": "Delete the dependency",
"dxGantt-dialogMoveTaskAndKeepDependencyMessage": "Move the task and keep the dependency",
"dxGantt-dialogConstraintCriticalViolationSeveralTasksMessage": "The task you are attempting to move is linked to another tasks by dependency relations. This change would conflict with dependency rules. How would you like to proceed?",
"dxGantt-dialogConstraintViolationSeveralTasksMessage": "The task you are attempting to move is linked to another tasks by dependency relations. How would you like to proceed?",
"dxGantt-dialogDeleteDependenciesMessage": "Delete the dependencies",
"dxGantt-dialogMoveTaskAndKeepDependenciesMessage": "Move the task and keep the dependencies",
"dxGantt-undo": "Undo",
"dxGantt-redo": "Redo",
"dxGantt-expandAll": "Expand All",
"dxGantt-collapseAll": "Collapse All",
"dxGantt-addNewTask": "Add New Task",
"dxGantt-deleteSelectedTask": "Delete Selected Task",
"dxGantt-zoomIn": "Zoom In",
"dxGantt-zoomOut": "Zoom Out",
"dxGantt-fullScreen": "Full Screen",
"dxGantt-quarter": "Q{0}",
"dxGantt-sortingAscendingText": "Sort Ascending",
"dxGantt-sortingDescendingText": "Sort Descending",
"dxGantt-sortingClearText": "Clear Sorting",
"dxGantt-showResources": "Show Resources",
"dxGantt-showDependencies": "Show Dependencies",
"dxGantt-dialogStartDateValidation": "Start date must be after {0}",
"dxGantt-dialogEndDateValidation": "End date must be after {0}"
}
})
}));
|
cdnjs/cdnjs
|
ajax/libs/devextreme/22.1.1-alpha-22018-0314/js/localization/dx.messages.en.js
|
JavaScript
|
mit
| 38,406
|
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define("Navigo", [], factory);
else if(typeof exports === 'object')
exports["Navigo"] = factory();
else
root["Navigo"] = factory();
})(typeof self !== 'undefined' ? self : this, function() {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ "./src/Q.ts":
/*!******************!*\
!*** ./src/Q.ts ***!
\******************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ Q
/* harmony export */ });
function Q(funcs, c, done) {
var context = c || {};
var idx = 0;
(function next() {
if (!funcs[idx]) {
if (done) {
done(context);
}
return;
}
if (Array.isArray(funcs[idx])) {
funcs.splice.apply(funcs, [idx, 1].concat(funcs[idx][0](context) ? funcs[idx][1] : funcs[idx][2]));
next();
} else {
// console.log(funcs[idx].name + " / " + JSON.stringify(context));
// console.log(funcs[idx].name);
funcs[idx](context, function (moveForward) {
if (typeof moveForward === "undefined" || moveForward === true) {
idx += 1;
next();
} else if (done) {
done(context);
}
});
}
})();
}
Q.if = function (condition, one, two) {
if (!Array.isArray(one)) one = [one];
if (!Array.isArray(two)) two = [two];
return [condition, one, two];
};
/***/ }),
/***/ "./src/constants.ts":
/*!**************************!*\
!*** ./src/constants.ts ***!
\**************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "PARAMETER_REGEXP": () => /* binding */ PARAMETER_REGEXP,
/* harmony export */ "REPLACE_VARIABLE_REGEXP": () => /* binding */ REPLACE_VARIABLE_REGEXP,
/* harmony export */ "WILDCARD_REGEXP": () => /* binding */ WILDCARD_REGEXP,
/* harmony export */ "REPLACE_WILDCARD": () => /* binding */ REPLACE_WILDCARD,
/* harmony export */ "NOT_SURE_REGEXP": () => /* binding */ NOT_SURE_REGEXP,
/* harmony export */ "REPLACE_NOT_SURE": () => /* binding */ REPLACE_NOT_SURE,
/* harmony export */ "START_BY_SLASH_REGEXP": () => /* binding */ START_BY_SLASH_REGEXP,
/* harmony export */ "MATCH_REGEXP_FLAGS": () => /* binding */ MATCH_REGEXP_FLAGS
/* harmony export */ });
var PARAMETER_REGEXP = /([:*])(\w+)/g;
var REPLACE_VARIABLE_REGEXP = "([^/]+)";
var WILDCARD_REGEXP = /\*/g;
var REPLACE_WILDCARD = "?(?:.*)";
var NOT_SURE_REGEXP = /\/\?/g;
var REPLACE_NOT_SURE = "/?([^/]+|)";
var START_BY_SLASH_REGEXP = "(?:/^|^)";
var MATCH_REGEXP_FLAGS = "";
/***/ }),
/***/ "./src/index.ts":
/*!**********************!*\
!*** ./src/index.ts ***!
\**********************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ Navigo
/* harmony export */ });
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils */ "./src/utils.ts");
/* harmony import */ var _Q__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Q */ "./src/Q.ts");
/* harmony import */ var _middlewares_setLocationPath__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./middlewares/setLocationPath */ "./src/middlewares/setLocationPath.ts");
/* harmony import */ var _middlewares_matchPathToRegisteredRoutes__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./middlewares/matchPathToRegisteredRoutes */ "./src/middlewares/matchPathToRegisteredRoutes.ts");
/* harmony import */ var _middlewares_checkForDeprecationMethods__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./middlewares/checkForDeprecationMethods */ "./src/middlewares/checkForDeprecationMethods.ts");
/* harmony import */ var _middlewares_checkForForceOp__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./middlewares/checkForForceOp */ "./src/middlewares/checkForForceOp.ts");
/* harmony import */ var _middlewares_updateBrowserURL__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./middlewares/updateBrowserURL */ "./src/middlewares/updateBrowserURL.ts");
/* harmony import */ var _middlewares_processMatches__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./middlewares/processMatches */ "./src/middlewares/processMatches.ts");
/* harmony import */ var _lifecycles__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./lifecycles */ "./src/lifecycles.ts");
function Navigo(appRoute, resolveOptions) {
var DEFAULT_RESOLVE_OPTIONS = resolveOptions || {
strategy: "ONE",
hash: false,
noMatchWarning: false
};
var self = this;
var root = "/";
var current = null;
var routes = [];
var destroyed = false;
var genericHooks;
var isPushStateAvailable = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.pushStateAvailable)();
var isWindowAvailable = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.windowAvailable)();
if (!appRoute) {
console.warn('Navigo requires a root path in its constructor. If not provided will use "/" as default.');
} else {
root = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(appRoute);
}
function _checkForAHash(url) {
if (url.indexOf("#") >= 0) {
if (DEFAULT_RESOLVE_OPTIONS.hash === true) {
url = url.split("#")[1] || "/";
} else {
url = url.split("#")[0];
}
}
return url;
}
function composePathWithRoot(path) {
return (0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(root + "/" + (0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(path));
}
function createRoute(path, handler, hooks, name) {
path = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.isString)(path) ? composePathWithRoot(path) : path;
return {
name: name || (0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(String(path)),
path: path,
handler: handler,
hooks: (0,_utils__WEBPACK_IMPORTED_MODULE_0__.accumulateHooks)(hooks)
};
} // public APIs
function on(path, handler, hooks) {
var _this = this;
if (typeof path === "object" && !(path instanceof RegExp)) {
Object.keys(path).forEach(function (p) {
if (typeof path[p] === "function") {
_this.on(p, path[p]);
} else {
var _path$p = path[p],
_handler = _path$p.uses,
name = _path$p.as,
_hooks = _path$p.hooks;
routes.push(createRoute(p, _handler, [genericHooks, _hooks], name));
}
});
return this;
} else if (typeof path === "function") {
hooks = handler;
handler = path;
path = root;
}
routes.push(createRoute(path, handler, [genericHooks, hooks]));
return this;
}
function resolve(to, options) {
var context = {
instance: self,
currentLocationPath: to ? (0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(root) + "/" + (0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(to) : undefined,
navigateOptions: {},
resolveOptions: options || DEFAULT_RESOLVE_OPTIONS
};
(0,_Q__WEBPACK_IMPORTED_MODULE_1__.default)([_middlewares_setLocationPath__WEBPACK_IMPORTED_MODULE_2__.default, _middlewares_matchPathToRegisteredRoutes__WEBPACK_IMPORTED_MODULE_3__.default, _Q__WEBPACK_IMPORTED_MODULE_1__.default.if(function (_ref) {
var matches = _ref.matches;
return matches && matches.length > 0;
}, _middlewares_processMatches__WEBPACK_IMPORTED_MODULE_7__.default, _lifecycles__WEBPACK_IMPORTED_MODULE_8__.notFoundLifeCycle)], context);
return context.matches ? context.matches : false;
}
function navigate(to, navigateOptions) {
to = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(root) + "/" + (0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(to);
var context = {
instance: self,
to: to,
navigateOptions: navigateOptions || {},
resolveOptions: navigateOptions && navigateOptions.resolveOptions ? navigateOptions.resolveOptions : DEFAULT_RESOLVE_OPTIONS,
currentLocationPath: _checkForAHash(to)
};
(0,_Q__WEBPACK_IMPORTED_MODULE_1__.default)([_middlewares_checkForDeprecationMethods__WEBPACK_IMPORTED_MODULE_4__.default, _middlewares_checkForForceOp__WEBPACK_IMPORTED_MODULE_5__.default, _middlewares_matchPathToRegisteredRoutes__WEBPACK_IMPORTED_MODULE_3__.default, _Q__WEBPACK_IMPORTED_MODULE_1__.default.if(function (_ref2) {
var matches = _ref2.matches;
return matches && matches.length > 0;
}, _middlewares_processMatches__WEBPACK_IMPORTED_MODULE_7__.default, _lifecycles__WEBPACK_IMPORTED_MODULE_8__.notFoundLifeCycle), _middlewares_updateBrowserURL__WEBPACK_IMPORTED_MODULE_6__.default], context);
}
function navigateByName(name, data, options) {
var url = generate(name, data);
navigate(url, options);
}
function off(what) {
this.routes = routes = routes.filter(function (r) {
if ((0,_utils__WEBPACK_IMPORTED_MODULE_0__.isString)(what)) {
return (0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(r.path) !== (0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(what);
} else if ((0,_utils__WEBPACK_IMPORTED_MODULE_0__.isFunction)(what)) {
return what !== r.handler;
}
return String(r.path) !== String(what);
});
return this;
}
function listen() {
if (isPushStateAvailable) {
this.__popstateListener = function () {
resolve();
};
window.addEventListener("popstate", this.__popstateListener);
}
}
function destroy() {
this.routes = routes = [];
if (isPushStateAvailable) {
window.removeEventListener("popstate", this.__popstateListener);
}
this.destroyed = destroyed = true;
}
function notFound(handler, hooks) {
self._notFoundRoute = createRoute("*", handler, [genericHooks, hooks], "__NOT_FOUND__");
return this;
}
function updatePageLinks() {
if (!isWindowAvailable) return;
findLinks().forEach(function (link) {
if ("false" === link.getAttribute("data-navigo") || "_blank" === link.getAttribute("target")) {
if (link.hasListenerAttached) {
link.removeEventListener("click", link.navigoHandler);
}
return;
}
if (!link.hasListenerAttached) {
link.hasListenerAttached = true;
link.navigoHandler = function (e) {
if ((e.ctrlKey || e.metaKey) && e.target.tagName.toLowerCase() === "a") {
return false;
}
var location = link.getAttribute("href");
if (typeof location === "undefined" || location === null) {
return false;
} // handling absolute paths
if (location.match(/^(http|https)/) && typeof URL !== "undefined") {
try {
var u = new URL(location);
location = u.pathname + u.search;
} catch (err) {}
}
var options = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.parseNavigateOptions)(link.getAttribute("data-navigo-options"));
if (!destroyed) {
e.preventDefault();
e.stopPropagation();
self.navigate((0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(location), options);
}
};
link.addEventListener("click", link.navigoHandler);
}
});
return self;
}
function findLinks() {
if (isWindowAvailable) {
return [].slice.call(document.querySelectorAll("[data-navigo]"));
}
return [];
}
function link(path) {
return "/" + root + "/" + (0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(path);
}
function setGenericHooks(hooks) {
genericHooks = hooks;
return this;
}
function lastResolved() {
return current;
}
function generate(name, data) {
var route = routes.find(function (r) {
return r.name === name;
});
if (route) {
var result = route.path;
if (data) {
for (var key in data) {
result = result.replace(":" + key, data[key]);
}
}
return !result.match(/^\//) ? "/" + result : result;
}
return null;
}
function getLinkPath(link) {
return link.getAttribute("href");
}
function pathToMatchObject(path) {
var _extractGETParameters = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.extractGETParameters)((0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(path)),
url = _extractGETParameters[0],
queryString = _extractGETParameters[1];
var params = queryString === "" ? null : (0,_utils__WEBPACK_IMPORTED_MODULE_0__.parseQuery)(queryString);
var route = createRoute(url, function () {}, [genericHooks], url);
return {
url: url,
queryString: queryString,
route: route,
data: null,
params: params
};
}
function getCurrentLocation() {
return pathToMatchObject((0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)((0,_utils__WEBPACK_IMPORTED_MODULE_0__.getCurrentEnvURL)(root)).replace(new RegExp("^" + root), ""));
}
function directMatchWithRegisteredRoutes(path) {
var context = {
instance: self,
currentLocationPath: path,
navigateOptions: {},
resolveOptions: DEFAULT_RESOLVE_OPTIONS
};
(0,_middlewares_matchPathToRegisteredRoutes__WEBPACK_IMPORTED_MODULE_3__.default)(context, function () {});
return context.matches ? context.matches : false;
}
function directMatchWithLocation(path, currentLocation) {
var context = {
instance: self,
currentLocationPath: currentLocation
};
(0,_middlewares_setLocationPath__WEBPACK_IMPORTED_MODULE_2__.default)(context, function () {});
path = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(path);
var match = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.matchRoute)(context.currentLocationPath, {
name: path,
path: path,
handler: function handler() {},
hooks: {}
});
return match ? match : false;
}
function addHook(type, route, func) {
if (typeof route === "string") {
route = getRoute(route);
}
if (route) {
if (!route.hooks[type]) route.hooks[type] = [];
route.hooks[type].push(func);
return function () {
route.hooks[type] = route.hooks[type].filter(function (f) {
return f !== func;
});
};
} else {
console.warn("Route doesn't exists: " + route);
}
return function () {};
}
function getRoute(nameOrHandler) {
if (typeof nameOrHandler === "string") {
return routes.find(function (r) {
return r.name === composePathWithRoot(nameOrHandler);
});
}
return routes.find(function (r) {
return r.handler === nameOrHandler;
});
}
this.root = root;
this.routes = routes;
this.destroyed = destroyed;
this.current = current;
this.on = on;
this.off = off;
this.resolve = resolve;
this.navigate = navigate;
this.navigateByName = navigateByName;
this.destroy = destroy;
this.notFound = notFound;
this.updatePageLinks = updatePageLinks;
this.link = link;
this.hooks = setGenericHooks;
this.extractGETParameters = function (url) {
return (0,_utils__WEBPACK_IMPORTED_MODULE_0__.extractGETParameters)(_checkForAHash(url));
};
this.lastResolved = lastResolved;
this.generate = generate;
this.getLinkPath = getLinkPath;
this.match = directMatchWithRegisteredRoutes;
this.matchLocation = directMatchWithLocation;
this.getCurrentLocation = getCurrentLocation;
this.addBeforeHook = addHook.bind(this, "before");
this.addAfterHook = addHook.bind(this, "after");
this.addAlreadyHook = addHook.bind(this, "already");
this.addLeaveHook = addHook.bind(this, "leave");
this.getRoute = getRoute;
this._pathToMatchObject = pathToMatchObject;
this._clean = _utils__WEBPACK_IMPORTED_MODULE_0__.clean;
this._checkForAHash = _checkForAHash;
this._setCurrent = function (c) {
return current = self.current = c;
};
listen.call(this);
updatePageLinks.call(this);
}
/***/ }),
/***/ "./src/lifecycles.ts":
/*!***************************!*\
!*** ./src/lifecycles.ts ***!
\***************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "foundLifecycle": () => /* binding */ foundLifecycle,
/* harmony export */ "notFoundLifeCycle": () => /* binding */ notFoundLifeCycle
/* harmony export */ });
/* harmony import */ var _Q__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Q */ "./src/Q.ts");
/* harmony import */ var _middlewares_checkForLeaveHook__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./middlewares/checkForLeaveHook */ "./src/middlewares/checkForLeaveHook.ts");
/* harmony import */ var _middlewares_checkForBeforeHook__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./middlewares/checkForBeforeHook */ "./src/middlewares/checkForBeforeHook.ts");
/* harmony import */ var _middlewares_callHandler__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./middlewares/callHandler */ "./src/middlewares/callHandler.ts");
/* harmony import */ var _middlewares_checkForAfterHook__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./middlewares/checkForAfterHook */ "./src/middlewares/checkForAfterHook.ts");
/* harmony import */ var _middlewares_checkForAlreadyHook__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./middlewares/checkForAlreadyHook */ "./src/middlewares/checkForAlreadyHook.ts");
/* harmony import */ var _middlewares_checkForNotFoundHandler__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./middlewares/checkForNotFoundHandler */ "./src/middlewares/checkForNotFoundHandler.ts");
/* harmony import */ var _middlewares_errorOut__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./middlewares/errorOut */ "./src/middlewares/errorOut.ts");
/* harmony import */ var _middlewares_flushCurrent__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./middlewares/flushCurrent */ "./src/middlewares/flushCurrent.ts");
var foundLifecycle = [_middlewares_checkForAlreadyHook__WEBPACK_IMPORTED_MODULE_5__.default, _middlewares_checkForBeforeHook__WEBPACK_IMPORTED_MODULE_2__.default, _middlewares_callHandler__WEBPACK_IMPORTED_MODULE_3__.default, _middlewares_checkForAfterHook__WEBPACK_IMPORTED_MODULE_4__.default];
var notFoundLifeCycle = [_middlewares_checkForLeaveHook__WEBPACK_IMPORTED_MODULE_1__.default, _middlewares_checkForNotFoundHandler__WEBPACK_IMPORTED_MODULE_6__.default, _Q__WEBPACK_IMPORTED_MODULE_0__.default.if(function (_ref) {
var notFoundHandled = _ref.notFoundHandled;
return notFoundHandled;
}, foundLifecycle, [_middlewares_errorOut__WEBPACK_IMPORTED_MODULE_7__.default]), _middlewares_flushCurrent__WEBPACK_IMPORTED_MODULE_8__.default];
/***/ }),
/***/ "./src/middlewares/callHandler.ts":
/*!****************************************!*\
!*** ./src/middlewares/callHandler.ts ***!
\****************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ callHandler
/* harmony export */ });
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils */ "./src/utils.ts");
function callHandler(context, done) {
if ((0,_utils__WEBPACK_IMPORTED_MODULE_0__.undefinedOrTrue)(context.navigateOptions, "callHandler")) {
context.match.route.handler(context.match);
}
context.instance.updatePageLinks();
done();
}
/***/ }),
/***/ "./src/middlewares/checkForAfterHook.ts":
/*!**********************************************!*\
!*** ./src/middlewares/checkForAfterHook.ts ***!
\**********************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ _checkForAfterHook
/* harmony export */ });
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils */ "./src/utils.ts");
function _checkForAfterHook(context, done) {
if (context.match.route.hooks && context.match.route.hooks.after && (0,_utils__WEBPACK_IMPORTED_MODULE_0__.undefinedOrTrue)(context.navigateOptions, "callHooks")) {
context.match.route.hooks.after.forEach(function (f) {
return f(context.match);
});
}
done();
}
/***/ }),
/***/ "./src/middlewares/checkForAlreadyHook.ts":
/*!************************************************!*\
!*** ./src/middlewares/checkForAlreadyHook.ts ***!
\************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ checkForAlreadyHook
/* harmony export */ });
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils */ "./src/utils.ts");
function checkForAlreadyHook(context, done) {
var current = context.instance.lastResolved();
if (current && current[0] && current[0].route === context.match.route && current[0].url === context.match.url && current[0].queryString === context.match.queryString) {
current.forEach(function (c) {
if (c.route.hooks && c.route.hooks.already) {
if ((0,_utils__WEBPACK_IMPORTED_MODULE_0__.undefinedOrTrue)(context.navigateOptions, "callHooks")) {
c.route.hooks.already.forEach(function (f) {
return f(context.match);
});
}
}
});
done(false);
return;
}
done();
}
/***/ }),
/***/ "./src/middlewares/checkForBeforeHook.ts":
/*!***********************************************!*\
!*** ./src/middlewares/checkForBeforeHook.ts ***!
\***********************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ checkForBeforeHook
/* harmony export */ });
/* harmony import */ var _Q__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Q */ "./src/Q.ts");
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils */ "./src/utils.ts");
function checkForBeforeHook(context, done) {
if (context.match.route.hooks && context.match.route.hooks.before && (0,_utils__WEBPACK_IMPORTED_MODULE_1__.undefinedOrTrue)(context.navigateOptions, "callHooks")) {
(0,_Q__WEBPACK_IMPORTED_MODULE_0__.default)(context.match.route.hooks.before.map(function (f) {
// just so we match the Q interface
return function beforeHookInternal(_, d) {
return f(d, context.match);
};
}).concat([function () {
return done();
}]));
} else {
done();
}
}
/***/ }),
/***/ "./src/middlewares/checkForDeprecationMethods.ts":
/*!*******************************************************!*\
!*** ./src/middlewares/checkForDeprecationMethods.ts ***!
\*******************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ checkForDeprecationMethods
/* harmony export */ });
function checkForDeprecationMethods(context, done) {
if (context.navigateOptions) {
if (typeof context.navigateOptions["shouldResolve"] !== "undefined") {
console.warn("\"shouldResolve\" is deprecated. Please check the documentation.");
}
if (typeof context.navigateOptions["silent"] !== "undefined") {
console.warn("\"silent\" is deprecated. Please check the documentation.");
}
}
done();
}
/***/ }),
/***/ "./src/middlewares/checkForForceOp.ts":
/*!********************************************!*\
!*** ./src/middlewares/checkForForceOp.ts ***!
\********************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ checkForForceOp
/* harmony export */ });
function checkForForceOp(context, done) {
if (context.navigateOptions.force === true) {
context.instance._setCurrent([context.instance._pathToMatchObject(context.to)]);
done(false);
} else {
done();
}
}
/***/ }),
/***/ "./src/middlewares/checkForLeaveHook.ts":
/*!**********************************************!*\
!*** ./src/middlewares/checkForLeaveHook.ts ***!
\**********************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ checkForLeaveHook
/* harmony export */ });
/* harmony import */ var _Q__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Q */ "./src/Q.ts");
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils */ "./src/utils.ts");
function checkForLeaveHook(context, done) {
var instance = context.instance;
if (!instance.lastResolved()) {
done();
return;
}
(0,_Q__WEBPACK_IMPORTED_MODULE_0__.default)(instance.lastResolved().map(function (oldMatch) {
return function (_, leaveLoopDone) {
// no leave hook
if (!oldMatch.route.hooks || !oldMatch.route.hooks.leave) {
leaveLoopDone();
return;
}
var runHook = false;
var newLocationVSOldMatch = context.instance.matchLocation(oldMatch.route.path, context.currentLocationPath);
if (oldMatch.route.path !== "*") {
runHook = !newLocationVSOldMatch;
} else {
var someOfTheLastOnesMatch = context.matches ? context.matches.find(function (match) {
return oldMatch.route.path === match.route.path;
}) : false;
runHook = !someOfTheLastOnesMatch;
}
if ((0,_utils__WEBPACK_IMPORTED_MODULE_1__.undefinedOrTrue)(context.navigateOptions, "callHooks") && runHook) {
(0,_Q__WEBPACK_IMPORTED_MODULE_0__.default)(oldMatch.route.hooks.leave.map(function (f) {
// just so we match the Q interface
return function (_, d) {
return f(d, context.matches && context.matches.length > 0 ? context.matches.length === 1 ? context.matches[0] : context.matches : undefined);
};
}).concat([function () {
return leaveLoopDone();
}]));
return;
} else {
leaveLoopDone();
}
};
}), {}, function () {
return done();
});
}
/***/ }),
/***/ "./src/middlewares/checkForNotFoundHandler.ts":
/*!****************************************************!*\
!*** ./src/middlewares/checkForNotFoundHandler.ts ***!
\****************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ checkForNotFoundHandler
/* harmony export */ });
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils */ "./src/utils.ts");
function checkForNotFoundHandler(context, done) {
var notFoundRoute = context.instance._notFoundRoute;
if (notFoundRoute) {
context.notFoundHandled = true;
var _extractGETParameters = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.extractGETParameters)(context.currentLocationPath),
url = _extractGETParameters[0],
queryString = _extractGETParameters[1];
notFoundRoute.path = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.clean)(url);
var notFoundMatch = {
url: notFoundRoute.path,
queryString: queryString,
data: null,
route: notFoundRoute,
params: queryString !== "" ? (0,_utils__WEBPACK_IMPORTED_MODULE_0__.parseQuery)(queryString) : null
};
context.matches = [notFoundMatch];
context.match = notFoundMatch;
}
done();
}
/***/ }),
/***/ "./src/middlewares/errorOut.ts":
/*!*************************************!*\
!*** ./src/middlewares/errorOut.ts ***!
\*************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ errorOut
/* harmony export */ });
function errorOut(context, done) {
if (!context.resolveOptions || context.resolveOptions.noMatchWarning === false || typeof context.resolveOptions.noMatchWarning === "undefined") console.warn("Navigo: \"" + context.currentLocationPath + "\" didn't match any of the registered routes.");
done();
}
/***/ }),
/***/ "./src/middlewares/flushCurrent.ts":
/*!*****************************************!*\
!*** ./src/middlewares/flushCurrent.ts ***!
\*****************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ flushCurrent
/* harmony export */ });
function flushCurrent(context, done) {
context.instance._setCurrent(null);
done();
}
/***/ }),
/***/ "./src/middlewares/matchPathToRegisteredRoutes.ts":
/*!********************************************************!*\
!*** ./src/middlewares/matchPathToRegisteredRoutes.ts ***!
\********************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ matchPathToRegisteredRoutes
/* harmony export */ });
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils */ "./src/utils.ts");
function matchPathToRegisteredRoutes(context, done) {
for (var i = 0; i < context.instance.routes.length; i++) {
var route = context.instance.routes[i];
var match = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.matchRoute)(context.currentLocationPath, route);
if (match) {
if (!context.matches) context.matches = [];
context.matches.push(match);
if (context.resolveOptions.strategy === "ONE") {
done();
return;
}
}
}
done();
}
/***/ }),
/***/ "./src/middlewares/processMatches.ts":
/*!*******************************************!*\
!*** ./src/middlewares/processMatches.ts ***!
\*******************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ processMatches
/* harmony export */ });
/* harmony import */ var _Q__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Q */ "./src/Q.ts");
/* harmony import */ var _lifecycles__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../lifecycles */ "./src/lifecycles.ts");
/* harmony import */ var _updateState__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./updateState */ "./src/middlewares/updateState.ts");
/* harmony import */ var _checkForLeaveHook__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./checkForLeaveHook */ "./src/middlewares/checkForLeaveHook.ts");
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function processMatches(context, done) {
var idx = 0;
function nextMatch() {
if (idx === context.matches.length) {
(0,_updateState__WEBPACK_IMPORTED_MODULE_2__.default)(context, done);
return;
}
(0,_Q__WEBPACK_IMPORTED_MODULE_0__.default)(_lifecycles__WEBPACK_IMPORTED_MODULE_1__.foundLifecycle, _extends({}, context, {
match: context.matches[idx]
}), function end() {
idx += 1;
nextMatch();
});
}
(0,_checkForLeaveHook__WEBPACK_IMPORTED_MODULE_3__.default)(context, nextMatch);
}
/***/ }),
/***/ "./src/middlewares/setLocationPath.ts":
/*!********************************************!*\
!*** ./src/middlewares/setLocationPath.ts ***!
\********************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ _setLocationPath
/* harmony export */ });
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils */ "./src/utils.ts");
function _setLocationPath(context, done) {
if (typeof context.currentLocationPath === "undefined") {
context.currentLocationPath = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.getCurrentEnvURL)(context.instance.root);
}
context.currentLocationPath = context.instance._checkForAHash(context.currentLocationPath);
done();
}
/***/ }),
/***/ "./src/middlewares/updateBrowserURL.ts":
/*!*********************************************!*\
!*** ./src/middlewares/updateBrowserURL.ts ***!
\*********************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ updateBrowserURL
/* harmony export */ });
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils */ "./src/utils.ts");
var isWindowAvailable = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.windowAvailable)();
var isPushStateAvailable = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.pushStateAvailable)();
function updateBrowserURL(context, done) {
if ((0,_utils__WEBPACK_IMPORTED_MODULE_0__.undefinedOrTrue)(context.navigateOptions, "updateBrowserURL")) {
var value = ("/" + context.to).replace(/\/\//g, "/"); // making sure that we don't have two slashes
var isItUsingHash = isWindowAvailable && context.resolveOptions && context.resolveOptions.hash === true;
if (isPushStateAvailable) {
history[context.navigateOptions.historyAPIMethod || "pushState"](context.navigateOptions.stateObj || {}, context.navigateOptions.title || "", isItUsingHash ? "#" + value : value); // This is to solve a nasty bug where the page doesn't scroll to the anchor.
// We set a microtask to update the hash only.
if (location && location.hash) {
setTimeout(function () {
var tmp = location.hash;
location.hash = "";
location.hash = tmp;
}, 1);
}
} else if (isWindowAvailable) {
window.location.href = context.to;
}
}
done();
}
/***/ }),
/***/ "./src/middlewares/updateState.ts":
/*!****************************************!*\
!*** ./src/middlewares/updateState.ts ***!
\****************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "default": () => /* binding */ callHandler
/* harmony export */ });
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils */ "./src/utils.ts");
function callHandler(context, done) {
if ((0,_utils__WEBPACK_IMPORTED_MODULE_0__.undefinedOrTrue)(context.navigateOptions, "updateState")) {
context.instance._setCurrent(context.matches);
}
done();
}
/***/ }),
/***/ "./src/utils.ts":
/*!**********************!*\
!*** ./src/utils.ts ***!
\**********************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "getCurrentEnvURL": () => /* binding */ getCurrentEnvURL,
/* harmony export */ "clean": () => /* binding */ clean,
/* harmony export */ "isString": () => /* binding */ isString,
/* harmony export */ "isFunction": () => /* binding */ isFunction,
/* harmony export */ "regExpResultToParams": () => /* binding */ regExpResultToParams,
/* harmony export */ "extractGETParameters": () => /* binding */ extractGETParameters,
/* harmony export */ "parseQuery": () => /* binding */ parseQuery,
/* harmony export */ "matchRoute": () => /* binding */ matchRoute,
/* harmony export */ "pushStateAvailable": () => /* binding */ pushStateAvailable,
/* harmony export */ "undefinedOrTrue": () => /* binding */ undefinedOrTrue,
/* harmony export */ "parseNavigateOptions": () => /* binding */ parseNavigateOptions,
/* harmony export */ "windowAvailable": () => /* binding */ windowAvailable,
/* harmony export */ "accumulateHooks": () => /* binding */ accumulateHooks
/* harmony export */ });
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./constants */ "./src/constants.ts");
function getCurrentEnvURL(fallback) {
if (fallback === void 0) {
fallback = "/";
}
if (windowAvailable()) {
return location.pathname + location.search + location.hash;
}
return fallback;
}
function clean(s) {
return s.replace(/\/+$/, "").replace(/^\/+/, "");
}
function isString(s) {
return typeof s === "string";
}
function isFunction(s) {
return typeof s === "function";
}
function regExpResultToParams(match, names) {
if (names.length === 0) return null;
if (!match) return null;
return match.slice(1, match.length).reduce(function (params, value, index) {
if (params === null) params = {};
params[names[index]] = decodeURIComponent(value);
return params;
}, null);
}
function extractGETParameters(url) {
var tmp = clean(url).split(/\?(.*)?$/);
return [clean(tmp[0]), tmp.slice(1).join("")];
}
function parseQuery(queryString) {
var query = {};
var pairs = queryString.split("&");
for (var i = 0; i < pairs.length; i++) {
var pair = pairs[i].split("=");
if (pair[0] !== "") {
var key = decodeURIComponent(pair[0]);
if (!query[key]) {
query[key] = decodeURIComponent(pair[1] || "");
} else {
if (!Array.isArray(query[key])) query[key] = [query[key]];
query[key].push(decodeURIComponent(pair[1] || ""));
}
}
}
return query;
}
function matchRoute(currentPath, route) {
var _extractGETParameters = extractGETParameters(clean(currentPath)),
current = _extractGETParameters[0],
GETParams = _extractGETParameters[1];
var params = GETParams === "" ? null : parseQuery(GETParams);
var paramNames = [];
var pattern;
if (isString(route.path)) {
pattern = _constants__WEBPACK_IMPORTED_MODULE_0__.START_BY_SLASH_REGEXP + clean(route.path).replace(_constants__WEBPACK_IMPORTED_MODULE_0__.PARAMETER_REGEXP, function (full, dots, name) {
paramNames.push(name);
return _constants__WEBPACK_IMPORTED_MODULE_0__.REPLACE_VARIABLE_REGEXP;
}).replace(_constants__WEBPACK_IMPORTED_MODULE_0__.WILDCARD_REGEXP, _constants__WEBPACK_IMPORTED_MODULE_0__.REPLACE_WILDCARD).replace(_constants__WEBPACK_IMPORTED_MODULE_0__.NOT_SURE_REGEXP, _constants__WEBPACK_IMPORTED_MODULE_0__.REPLACE_NOT_SURE) + "$";
if (clean(route.path) === "") {
if (clean(current) === "") {
return {
url: current,
queryString: GETParams,
route: route,
data: null,
params: params
};
}
}
} else {
pattern = route.path;
}
var regexp = new RegExp(pattern, _constants__WEBPACK_IMPORTED_MODULE_0__.MATCH_REGEXP_FLAGS);
var match = current.match(regexp); // console.log(current, regexp);
if (match) {
var data = isString(route.path) ? regExpResultToParams(match, paramNames) : match.slice(1);
return {
url: current,
queryString: GETParams,
route: route,
data: data,
params: params
};
}
return false;
}
function pushStateAvailable() {
return !!(typeof window !== "undefined" && window.history && window.history.pushState);
}
function undefinedOrTrue(obj, key) {
return typeof obj[key] === "undefined" || obj[key] === true;
}
function parseNavigateOptions(source) {
if (!source) return {};
var pairs = source.split(",");
var options = {};
var resolveOptions;
pairs.forEach(function (str) {
var temp = str.split(":").map(function (v) {
return v.replace(/(^ +| +$)/g, "");
});
switch (temp[0]) {
case "historyAPIMethod":
options.historyAPIMethod = temp[1];
break;
case "resolveOptionsStrategy":
if (!resolveOptions) resolveOptions = {};
resolveOptions.strategy = temp[1];
break;
case "resolveOptionsHash":
if (!resolveOptions) resolveOptions = {};
resolveOptions.hash = temp[1] === "true";
break;
case "updateBrowserURL":
case "callHandler":
case "updateState":
case "force":
options[temp[0]] = temp[1] === "true";
break;
}
});
if (resolveOptions) {
options.resolveOptions = resolveOptions;
}
return options;
}
function windowAvailable() {
return typeof window !== "undefined";
}
function accumulateHooks(hooks, result) {
if (hooks === void 0) {
hooks = [];
}
if (result === void 0) {
result = {};
}
hooks.filter(function (h) {
return h;
}).forEach(function (h) {
["before", "after", "already", "leave"].forEach(function (type) {
if (h[type]) {
if (!result[type]) result[type] = [];
result[type].push(h[type]);
}
});
});
return result;
}
/***/ })
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ if(__webpack_module_cache__[moduleId]) {
/******/ return __webpack_module_cache__[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop)
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
/******/ // module exports must be returned from runtime so entry inlining is disabled
/******/ // startup
/******/ // Load entry module and return exports
/******/ return __webpack_require__("./src/index.ts");
/******/ })()
.default;
});
//# sourceMappingURL=navigo.js.map
|
cdnjs/cdnjs
|
ajax/libs/navigo/8.7.0/navigo.js
|
JavaScript
|
mit
| 45,534
|
import{B as e}from"./index-5cf9ee19.js";export default class extends e{constructor(e){super(e);const t=document.documentElement,o=e=>{this.setMod("active",e)},n=e=>{"webkitUserSelect"in t.style?t.style.webkitUserSelect=e?"":"none":t.style.userSelect=e?"":"none"};this.on("click",(t=>{o(!1),e.nuDisabled||(t.stopPropagation(),this.tap(t))})),this.on("keydown",(t=>{e.nuDisabled||"Enter"!==t.key&&" "!==t.key||(t.stopPropagation(),t.preventDefault(),o(!0))})),this.on("keyup",(t=>{e.nuDisabled||"Enter"!==t.key&&" "!==t.key||(t.stopPropagation(),t.preventDefault(),this.tap(t),o(!1))})),this.on("blur",(()=>o(!1))),this.on(["mousedown","touchstart"],(t=>{e.nuDisabled||(t.stopPropagation(),o(!0),"mousedown"===t.type&&(n(!1),window.addEventListener("mouseup",(function e(){n(!0),window.removeEventListener("mouseup",e)}))))})),this.on(["mouseleave","mouseup","touchend"],(e=>{o(!1)}))}tap(e){const t=this.host.NuAction;t&&t.tap(e)}}
|
cdnjs/cdnjs
|
ajax/libs/numl/1.1.1/active-5fb22ccb.js
|
JavaScript
|
mit
| 931
|
import{W as t,d as e,s,b as i}from"./index-19c813a5.js";import n from"./menu-29457b97.js";const o=n.prototype;export default class extends t{static get params(){return{input:!0,provideValue:!0,itemRole:"radio",contextValue:!0}}init(){this.props.disabled=t=>{const{host:n}=this,o=i(t);return e(n,"[nu-action]").forEach(t=>{s(t,"disabled",o)}),o},super.init(),this._items=[],null==this.value&&this.setValue("0"),this.setContext("radiogroup",this),this.on("keydown",this.onKeyDown.bind(this))}addItem(t){o.addItem.call(this,t)}removeItem(t){o.removeItem.call(this,t)}setCurrent(t){o.setCurrent.call(this,t)}getItemsInOrder(){return o.getItemsInOrder.call(this,"[nu-action]","NuAction")}onKeyDown(t){o.onKeyDown.call(this,t)}}
|
cdnjs/cdnjs
|
ajax/libs/numl/1.0.0-beta.2/radiogroup-b2fe1f81.js
|
JavaScript
|
mit
| 723
|
/**
* @version : 17.8.0 - Bridge.NET
* @author : Object.NET, Inc. http://bridge.net/
* @copyright : Copyright 2008-2019 Object.NET, Inc. http://object.net/
* @license : See license.txt and https://github.com/bridgedotnet/Bridge/blob/master/LICENSE.md
*/
Bridge.assembly("Bridge", function ($asm, globals) {
"use strict";
Bridge.define("Bridge.Console", {
statics: {
fields: {
BODY_WRAPPER_ID: null,
CONSOLE_MESSAGES_ID: null,
position: null,
instance$1: null
},
props: {
instance: {
get: function () {
if (Bridge.Console.instance$1 == null) {
Bridge.Console.instance$1 = new Bridge.Console();
}
return Bridge.Console.instance$1;
}
}
},
ctors: {
init: function () {
this.BODY_WRAPPER_ID = "bridge-body-wrapper";
this.CONSOLE_MESSAGES_ID = "bridge-console-messages";
this.position = "horizontal";
}
},
methods: {
initConsoleFunctions: function () {
var wl = System.Console.WriteLine;
var w = System.Console.Write;
var clr = System.Console.Clear;
var debug = System.Diagnostics.Debug.writeln;
var con = Bridge.global.console;
if (wl) {
System.Console.WriteLine = function (value) {
wl(value);
Bridge.Console.log(value, true);
}
}
if (w) {
System.Console.Write = function (value) {
w(value);
Bridge.Console.log(value, false);
}
}
if (clr) {
System.Console.Clear = function () {
clr();
Bridge.Console.clear();
}
}
if (debug) {
System.Diagnostics.Debug.writeln = function (value) {
debug(value);
Bridge.Console.debug(value);
}
}
if (con && con.error) {
var err = con.error;
con.error = function (msg) {
err.apply(con, arguments);
Bridge.Console.error(msg);
}
}
if (Bridge.isDefined(Bridge.global.window)) {
Bridge.global.window.addEventListener("error", function (e) {
Bridge.Console.error(System.Exception.create(e));
});
}
},
logBase: function (value, newLine, messageType) {
var $t;
if (newLine === void 0) { newLine = true; }
if (messageType === void 0) { messageType = 0; }
var self = Bridge.Console.instance;
var v = "";
if (value != null) {
var hasToString = value.ToString !== undefined;
v = (value.toString == { }.toString && !hasToString) ? JSON.stringify(value, null, 2) : hasToString ? value.ToString() : value.toString();
}
if (self.bufferedOutput != null) {
self.bufferedOutput = (self.bufferedOutput || "") + (v || "");
if (newLine) {
self.bufferedOutput = (self.bufferedOutput || "") + ("\n" || "");
}
return;
}
Bridge.Console.show();
if (self.isNewLine || self.currentMessageElement == null) {
var m = self.buildConsoleMessage(v, messageType);
self.consoleMessages.appendChild(m);
self.currentMessageElement = m;
} else {
var m1 = Bridge.unbox(self.currentMessageElement);
($t = m1.lastChild).innerHTML = ($t.innerHTML || "") + (v || "");
}
self.isNewLine = newLine;
},
error: function (value) {
Bridge.Console.logBase(value, true, 2);
},
debug: function (value) {
Bridge.Console.logBase(value, true, 1);
},
log: function (value, newLine) {
if (newLine === void 0) { newLine = true; }
Bridge.Console.logBase(value, newLine);
},
clear: function () {
var self = Bridge.Console.instance$1;
if (self == null) {
return;
}
var m = self.consoleMessages;
if (m != null) {
while (m.firstChild != null) {
m.removeChild(m.firstChild);
}
self.currentMessageElement = null;
}
if (self.bufferedOutput != null) {
self.bufferedOutput = "";
}
self.isNewLine = false;
},
hide: function () {
if (Bridge.Console.instance$1 == null) {
return;
}
var self = Bridge.Console.instance;
if (self.hidden) {
return;
}
self.close();
},
show: function () {
var self = Bridge.Console.instance;
if (!self.hidden) {
return;
}
self.init(true);
},
toggle: function () {
if (Bridge.Console.instance.hidden) {
Bridge.Console.show();
} else {
Bridge.Console.hide();
}
}
}
},
fields: {
svgNS: null,
consoleHeight: null,
consoleHeaderHeight: null,
tooltip: null,
consoleWrap: null,
consoleMessages: null,
bridgeIcon: null,
bridgeIconPath: null,
bridgeConsoleLabel: null,
closeBtn: null,
closeIcon: null,
closeIconPath: null,
consoleHeader: null,
consoleBody: null,
hidden: false,
isNewLine: false,
currentMessageElement: null,
bufferedOutput: null
},
ctors: {
init: function () {
this.svgNS = "http://www.w3.org/2000/svg";
this.consoleHeight = "300px";
this.consoleHeaderHeight = "35px";
this.hidden = true;
this.isNewLine = false;
},
ctor: function () {
this.$initialize();
this.init();
}
},
methods: {
init: function (reinit) {
if (reinit === void 0) { reinit = false; }
this.hidden = false;
var consoleWrapStyles = Bridge.fn.bind(this, $asm.$.Bridge.Console.f1)(new (System.Collections.Generic.Dictionary$2(System.String,System.String)).ctor());
var consoleHeaderStyles = $asm.$.Bridge.Console.f2(new (System.Collections.Generic.Dictionary$2(System.String,System.String)).ctor());
var consoleBodyStyles = $asm.$.Bridge.Console.f3(new (System.Collections.Generic.Dictionary$2(System.String,System.String)).ctor());
this.bridgeIcon = this.bridgeIcon || document.createElementNS(this.svgNS, "svg");
var items = Bridge.fn.bind(this, $asm.$.Bridge.Console.f4)(new (System.Collections.Generic.Dictionary$2(System.String,System.String)).ctor());
this.setAttributes(this.bridgeIcon, items);
this.bridgeIconPath = this.bridgeIconPath || document.createElementNS(this.svgNS, "path");
var items2 = new (System.Collections.Generic.Dictionary$2(System.String,System.String)).ctor();
items2.setItem("d", "M19 14.4h2.2V9.6L19 7.1v7.3zm4.3-2.5v2.5h2.2l-2.2-2.5zm-8.5 2.5H17V4.8l-2.2-2.5v12.1zM0 14.4h3l7.5-8.5v8.5h2.2V0L0 14.4z");
items2.setItem("fill", "#555");
this.setAttributes(this.bridgeIconPath, items2);
this.bridgeConsoleLabel = this.bridgeConsoleLabel || document.createElement("span");
this.bridgeConsoleLabel.innerHTML = "Bridge Console";
this.closeBtn = this.closeBtn || document.createElement("span");
this.closeBtn.setAttribute("style", "position: relative;display: inline-block;float: right;cursor: pointer");
this.closeIcon = this.closeIcon || document.createElementNS(this.svgNS, "svg");
var items3 = Bridge.fn.bind(this, $asm.$.Bridge.Console.f5)(new (System.Collections.Generic.Dictionary$2(System.String,System.String)).ctor());
this.setAttributes(this.closeIcon, items3);
this.closeIconPath = this.closeIconPath || document.createElementNS(this.svgNS, "path");
var items4 = $asm.$.Bridge.Console.f6(new (System.Collections.Generic.Dictionary$2(System.String,System.String)).ctor());
this.setAttributes(this.closeIconPath, items4);
this.tooltip = this.tooltip || document.createElement("div");
this.tooltip.innerHTML = "Refresh page to open Bridge Console";
this.tooltip.setAttribute("style", "position: absolute;right: 30px;top: -6px;white-space: nowrap;padding: 7px;border-radius: 3px;background-color: rgba(0, 0, 0, 0.75);color: #eee;text-align: center;visibility: hidden;opacity: 0;-webkit-transition: all 0.25s ease-in-out;transition: all 0.25s ease-in-out;z-index: 1;");
Bridge.Console.position = "horizontal";
if (Bridge.referenceEquals(Bridge.Console.position, "horizontal")) {
this.wrapBodyContent();
consoleWrapStyles.setItem("right", "0");
consoleHeaderStyles.setItem("border-top", "1px solid #a3a3a3");
consoleBodyStyles.setItem("height", this.consoleHeight);
} else if (Bridge.referenceEquals(Bridge.Console.position, "vertical")) {
var consoleWidth = "400px";
document.body.style.marginLeft = consoleWidth;
consoleWrapStyles.setItem("top", "0");
consoleWrapStyles.setItem("width", consoleWidth);
consoleWrapStyles.setItem("border-right", "1px solid #a3a3a3");
consoleBodyStyles.setItem("height", "100%");
}
this.consoleWrap = this.consoleWrap || document.createElement("div");
this.consoleWrap.setAttribute("style", this.obj2Css(consoleWrapStyles));
this.consoleHeader = this.consoleHeader || document.createElement("div");
this.consoleHeader.setAttribute("style", this.obj2Css(consoleHeaderStyles));
this.consoleBody = this.consoleBody || document.createElement("div");
this.consoleBody.setAttribute("style", this.obj2Css(consoleBodyStyles));
this.consoleMessages = this.consoleMessages || document.createElement("ul");
var cm = this.consoleMessages;
cm.id = Bridge.Console.CONSOLE_MESSAGES_ID;
cm.setAttribute("style", "margin: 0;padding: 0;list-style: none;");
if (!reinit) {
this.bridgeIcon.appendChild(this.bridgeIconPath);
this.closeIcon.appendChild(this.closeIconPath);
this.closeBtn.appendChild(this.closeIcon);
this.closeBtn.appendChild(this.tooltip);
this.consoleHeader.appendChild(this.bridgeIcon);
this.consoleHeader.appendChild(this.bridgeConsoleLabel);
this.consoleHeader.appendChild(this.closeBtn);
this.consoleBody.appendChild(cm);
this.consoleWrap.appendChild(this.consoleHeader);
this.consoleWrap.appendChild(this.consoleBody);
document.body.appendChild(this.consoleWrap);
this.closeBtn.addEventListener("click", Bridge.fn.cacheBind(this, this.close));
this.closeBtn.addEventListener("mouseover", Bridge.fn.cacheBind(this, this.showTooltip));
this.closeBtn.addEventListener("mouseout", Bridge.fn.cacheBind(this, this.hideTooltip));
}
},
showTooltip: function () {
var self = Bridge.Console.instance;
self.tooltip.style.right = "20px";
self.tooltip.style.visibility = "visible";
self.tooltip.style.opacity = "1";
},
hideTooltip: function () {
var self = Bridge.Console.instance;
self.tooltip.style.right = "30px";
self.tooltip.style.opacity = "0";
},
close: function () {
this.hidden = true;
this.consoleWrap.style.display = "none";
if (Bridge.referenceEquals(Bridge.Console.position, "horizontal")) {
this.unwrapBodyContent();
} else if (Bridge.referenceEquals(Bridge.Console.position, "vertical")) {
document.body.removeAttribute("style");
}
},
wrapBodyContent: function () {
if (document.body == null) {
return;
}
var bodyStyle = document.defaultView.getComputedStyle(document.body, null);
var bodyPaddingTop = bodyStyle.paddingTop;
var bodyPaddingRight = bodyStyle.paddingRight;
var bodyPaddingBottom = bodyStyle.paddingBottom;
var bodyPaddingLeft = bodyStyle.paddingLeft;
var bodyMarginTop = bodyStyle.marginTop;
var bodyMarginRight = bodyStyle.marginRight;
var bodyMarginBottom = bodyStyle.marginBottom;
var bodyMarginLeft = bodyStyle.marginLeft;
var div = document.createElement("div");
div.id = Bridge.Console.BODY_WRAPPER_ID;
div.setAttribute("style", "height: calc(100vh - " + (this.consoleHeight || "") + " - " + (this.consoleHeaderHeight || "") + ");" + "margin-top: calc(-1 * " + "(" + (((bodyMarginTop || "") + " + " + (bodyPaddingTop || "")) || "") + "));" + "margin-right: calc(-1 * " + "(" + (((bodyMarginRight || "") + " + " + (bodyPaddingRight || "")) || "") + "));" + "margin-left: calc(-1 * " + "(" + (((bodyMarginLeft || "") + " + " + (bodyPaddingLeft || "")) || "") + "));" + "padding-top: calc(" + (((bodyMarginTop || "") + " + " + (bodyPaddingTop || "")) || "") + ");" + "padding-right: calc(" + (((bodyMarginRight || "") + " + " + (bodyPaddingRight || "")) || "") + ");" + "padding-bottom: calc(" + (((bodyMarginBottom || "") + " + " + (bodyPaddingBottom || "")) || "") + ");" + "padding-left: calc(" + (((bodyMarginLeft || "") + " + " + (bodyPaddingLeft || "")) || "") + ");" + "overflow-x: auto;" + "box-sizing: border-box !important;");
while (document.body.firstChild != null) {
div.appendChild(document.body.firstChild);
}
document.body.appendChild(div);
},
unwrapBodyContent: function () {
var bridgeBodyWrap = document.getElementById(Bridge.Console.BODY_WRAPPER_ID);
if (bridgeBodyWrap == null) {
return;
}
while (bridgeBodyWrap.firstChild != null) {
document.body.insertBefore(bridgeBodyWrap.firstChild, bridgeBodyWrap);
}
document.body.removeChild(bridgeBodyWrap);
},
buildConsoleMessage: function (message, messageType) {
var messageItem = document.createElement("li");
messageItem.setAttribute("style", "padding:5px 10px;border-bottom:1px solid #f0f0f0;position:relative;");
var messageIcon = document.createElementNS(this.svgNS, "svg");
var items5 = Bridge.fn.bind(this, $asm.$.Bridge.Console.f7)(new (System.Collections.Generic.Dictionary$2(System.String,System.String)).ctor());
this.setAttributes(messageIcon, items5);
var color = "#555";
if (messageType === 2) {
color = "#d65050";
} else if (messageType === 1) {
color = "#1800FF";
}
var messageIconPath = document.createElementNS(this.svgNS, "path");
var items6 = new (System.Collections.Generic.Dictionary$2(System.String,System.String)).ctor();
items6.setItem("d", "M3.8 3.5L.7 6.6s-.1.1-.2.1-.1 0-.2-.1l-.2-.3C0 6.2 0 6.2 0 6.1c0 0 0-.1.1-.1l2.6-2.6L.1.7C0 .7 0 .6 0 .6 0 .5 0 .5.1.4L.4.1c0-.1.1-.1.2-.1s.1 0 .2.1l3.1 3.1s.1.1.1.2-.1.1-.2.1z");
items6.setItem("fill", color);
this.setAttributes(messageIconPath, items6);
messageIcon.appendChild(messageIconPath);
var messageContainer = document.createElement("div");
messageContainer.innerText = message;
messageContainer.setAttribute("style", "color:" + (color || "") + ";white-space:pre;margin-left:12px;line-height:1.4;min-height:18px;");
messageItem.appendChild(messageIcon);
messageItem.appendChild(messageContainer);
return messageItem;
},
setAttributes: function (el, attrs) {
var $t;
$t = Bridge.getEnumerator(attrs);
try {
while ($t.moveNext()) {
var item = $t.Current;
el.setAttribute(item.key, item.value);
}
} finally {
if (Bridge.is($t, System.IDisposable)) {
$t.System$IDisposable$Dispose();
}
}
},
obj2Css: function (obj) {
var $t;
var str = "";
$t = Bridge.getEnumerator(obj);
try {
while ($t.moveNext()) {
var item = $t.Current;
str = (str || "") + (((item.key.toLowerCase() || "") + ":" + (item.value || "") + ";") || "");
}
} finally {
if (Bridge.is($t, System.IDisposable)) {
$t.System$IDisposable$Dispose();
}
}
return str;
}
}
});
Bridge.ns("Bridge.Console", $asm.$);
Bridge.apply($asm.$.Bridge.Console, {
f1: function (_o1) {
_o1.add("position", "fixed");
_o1.add("left", "0");
_o1.add("bottom", "0");
_o1.add("padding-top", this.consoleHeaderHeight);
_o1.add("background-color", "#fff");
_o1.add("font", "normal normal normal 13px/1 sans-serif");
_o1.add("color", "#555");
return _o1;
},
f2: function (_o2) {
_o2.add("position", "absolute");
_o2.add("top", "0");
_o2.add("left", "0");
_o2.add("right", "0");
_o2.add("height", "35px");
_o2.add("padding", "9px 15px 7px 10px");
_o2.add("border-bottom", "1px solid #ccc");
_o2.add("background-color", "#f3f3f3");
_o2.add("box-sizing", "border-box");
return _o2;
},
f3: function (_o3) {
_o3.add("overflow-x", "auto");
_o3.add("font-family", "Menlo, Monaco, Consolas, 'Courier New', monospace");
return _o3;
},
f4: function (_o4) {
_o4.add("xmlns", this.svgNS);
_o4.add("width", "25.5");
_o4.add("height", "14.4");
_o4.add("viewBox", "0 0 25.5 14.4");
_o4.add("style", "margin: 0 3px 3px 0;vertical-align:middle;");
return _o4;
},
f5: function (_o5) {
_o5.add("xmlns", this.svgNS);
_o5.add("width", "11.4");
_o5.add("height", "11.4");
_o5.add("viewBox", "0 0 11.4 11.4");
_o5.add("style", "vertical-align: middle;");
return _o5;
},
f6: function (_o6) {
_o6.add("d", "M11.4 1.4L10 0 5.7 4.3 1.4 0 0 1.4l4.3 4.3L0 10l1.4 1.4 4.3-4.3 4.3 4.3 1.4-1.4-4.3-4.3");
_o6.add("fill", "#555");
return _o6;
},
f7: function (_o1) {
_o1.add("xmlns", this.svgNS);
_o1.add("width", "3.9");
_o1.add("height", "6.7");
_o1.add("viewBox", "0 0 3.9 6.7");
_o1.add("style", "vertical-align:middle;position: absolute;top: 10.5px;");
return _o1;
}
});
Bridge.init(function () { Bridge.Console.initConsoleFunctions(); });
});
|
cdnjs/cdnjs
|
ajax/libs/Bridge.NET/17.8.0/bridge.console.js
|
JavaScript
|
mit
| 22,264
|
/*!
* Native JavaScript for Bootstrap Modal v3.0.15-alpha2 (https://thednp.github.io/bootstrap.native/)
* Copyright 2015-2021 © dnp_theme
* Licensed under MIT (https://github.com/thednp/bootstrap.native/blob/master/LICENSE)
*/
var addEventListener = 'addEventListener';
var removeEventListener = 'removeEventListener';
var supportPassive = (function () {
var result = false;
try {
var opts = Object.defineProperty({}, 'passive', {
get: function get() {
result = true;
return result;
},
});
document[addEventListener]('DOMContentLoaded', function wrap() {
document[removeEventListener]('DOMContentLoaded', wrap, opts);
}, opts);
} catch (e) {
throw Error('Passive events are not supported');
}
return result;
})();
// general event options
var passiveHandler = supportPassive ? { passive: true } : false;
var transitionEndEvent = 'webkitTransition' in document.head.style ? 'webkitTransitionEnd' : 'transitionend';
var supportTransition = 'webkitTransition' in document.head.style || 'transition' in document.head.style;
var transitionDuration = 'webkitTransition' in document.head.style ? 'webkitTransitionDuration' : 'transitionDuration';
var transitionProperty = 'webkitTransition' in document.head.style ? 'webkitTransitionProperty' : 'transitionProperty';
function getElementTransitionDuration(element) {
var computedStyle = getComputedStyle(element);
var propertyValue = computedStyle[transitionProperty];
var durationValue = computedStyle[transitionDuration];
var durationScale = durationValue.includes('ms') ? 1 : 1000;
var duration = supportTransition && propertyValue && propertyValue !== 'none'
? parseFloat(durationValue) * durationScale : 0;
return !Number.isNaN(duration) ? duration : 0;
}
function emulateTransitionEnd(element, handler) {
var called = 0;
var endEvent = new Event(transitionEndEvent);
var duration = getElementTransitionDuration(element);
if (duration) {
element.addEventListener(transitionEndEvent, function transitionEndWrapper(e) {
if (e.target === element) {
handler.apply(element, [e]);
element.removeEventListener(transitionEndEvent, transitionEndWrapper);
called = 1;
}
});
setTimeout(function () {
if (!called) { element.dispatchEvent(endEvent); }
}, duration + 17);
} else {
handler.apply(element, [endEvent]);
}
}
function queryElement(selector, parent) {
var lookUp = parent && parent instanceof Element ? parent : document;
return selector instanceof Element ? selector : lookUp.querySelector(selector);
}
function reflow(element) {
return element.offsetHeight;
}
function bootstrapCustomEvent(eventType, componentName, eventProperties) {
var OriginalCustomEvent = new CustomEvent((eventType + ".bs." + componentName), { cancelable: true });
if (typeof eventProperties !== 'undefined') {
Object.keys(eventProperties).forEach(function (key) {
Object.defineProperty(OriginalCustomEvent, key, {
value: eventProperties[key],
});
});
}
return OriginalCustomEvent;
}
function dispatchCustomEvent(customEvent) {
if (this) { this.dispatchEvent(customEvent); }
}
function setFocus(element) {
element.focus();
}
/* Native JavaScript for Bootstrap 4 | Modal
-------------------------------------------- */
// MODAL DEFINITION
// ================
function Modal(elem, opsInput) { // element can be the modal/triggering button
var element;
// set options
var options = opsInput || {};
// bind, modal
var self = this;
var modal;
// custom events
var showCustomEvent;
var shownCustomEvent;
var hideCustomEvent;
var hiddenCustomEvent;
// event targets and other
var relatedTarget = null;
var scrollBarWidth;
var overlay;
var overlayDelay;
// also find fixed-top / fixed-bottom items
var fixedItems;
var ops = {};
// private methods
function setScrollbar() {
var bodyClassList = document.body.classList;
var openModal = bodyClassList.contains('modal-open');
var bodyPad = parseInt(getComputedStyle(document.body).paddingRight, 10);
var docClientHeight = document.documentElement.clientHeight;
var docScrollHeight = document.documentElement.scrollHeight;
var bodyClientHeight = document.body.clientHeight;
var bodyScrollHeight = document.body.scrollHeight;
var bodyOverflow = docClientHeight !== docScrollHeight
|| bodyClientHeight !== bodyScrollHeight;
var modalOverflow = modal.clientHeight !== modal.scrollHeight;
scrollBarWidth = measureScrollbar();
modal.style.paddingRight = !modalOverflow && scrollBarWidth ? (scrollBarWidth + "px") : '';
document.body.style.paddingRight = modalOverflow || bodyOverflow
? ((bodyPad + (openModal ? 0 : scrollBarWidth)) + "px") : '';
if (fixedItems.length) {
fixedItems.forEach(function (fixed) {
var itemPad = getComputedStyle(fixed).paddingRight;
fixed.style.paddingRight = modalOverflow || bodyOverflow
? ((parseInt(itemPad, 10) + (openModal ? 0 : scrollBarWidth)) + "px")
: ((parseInt(itemPad, 10)) + "px");
});
}
}
function resetScrollbar() {
document.body.style.paddingRight = '';
modal.style.paddingRight = '';
if (fixedItems.length) {
fixedItems.forEach(function (fixed) {
fixed.style.paddingRight = '';
});
}
}
function measureScrollbar() {
var scrollDiv = document.createElement('div');
scrollDiv.className = 'modal-scrollbar-measure'; // this is here to stay
document.body.appendChild(scrollDiv);
var widthValue = scrollDiv.offsetWidth - scrollDiv.clientWidth;
document.body.removeChild(scrollDiv);
return widthValue;
}
function createOverlay() {
var newOverlay = document.createElement('div');
overlay = queryElement('.modal-backdrop');
if (overlay === null) {
newOverlay.setAttribute('class', ("modal-backdrop" + (ops.animation ? ' fade' : '')));
overlay = newOverlay;
document.body.appendChild(overlay);
}
return overlay;
}
function removeOverlay() {
overlay = queryElement('.modal-backdrop');
if (overlay && !document.getElementsByClassName('modal show')[0]) {
document.body.removeChild(overlay); overlay = null;
}
if (overlay === null) {
document.body.classList.remove('modal-open');
resetScrollbar();
}
}
function toggleEvents(add) {
var action = add ? 'addEventListener' : 'removeEventListener';
window[action]('resize', self.update, passiveHandler);
modal[action]('click', dismissHandler, false);
document[action]('keydown', keyHandler, false);
}
// triggers
function beforeShow() {
modal.style.display = 'block';
setScrollbar();
if (!document.getElementsByClassName('modal show')[0]) { document.body.classList.add('modal-open'); }
modal.classList.add('show');
modal.setAttribute('aria-hidden', false);
if (modal.classList.contains('fade')) { emulateTransitionEnd(modal, triggerShow); }
else { triggerShow(); }
}
function triggerShow() {
setFocus(modal);
modal.isAnimating = false;
toggleEvents(1);
shownCustomEvent = bootstrapCustomEvent('shown', 'modal', { relatedTarget: relatedTarget });
dispatchCustomEvent.call(modal, shownCustomEvent);
}
function triggerHide(force) {
modal.style.display = '';
if (element) { setFocus(element); }
overlay = queryElement('.modal-backdrop');
// force can also be the transitionEvent object, we wanna make sure it's not
if (force !== 1 && overlay && overlay.classList.contains('show') && !document.getElementsByClassName('modal show')[0]) {
overlay.classList.remove('show');
emulateTransitionEnd(overlay, removeOverlay);
} else {
removeOverlay();
}
toggleEvents();
modal.isAnimating = false;
hiddenCustomEvent = bootstrapCustomEvent('hidden', 'modal');
dispatchCustomEvent.call(modal, hiddenCustomEvent);
}
// handlers
function clickHandler(e) {
if (modal.isAnimating) { return; }
var clickTarget = e.target;
var modalID = "#" + (modal.getAttribute('id'));
var targetAttrValue = clickTarget.getAttribute('data-target') || clickTarget.getAttribute('href');
var elemAttrValue = element.getAttribute('data-target') || element.getAttribute('href');
if (!modal.classList.contains('show')
&& ((clickTarget === element && targetAttrValue === modalID)
|| (element.contains(clickTarget) && elemAttrValue === modalID))) {
modal.modalTrigger = element;
relatedTarget = element;
self.show();
e.preventDefault();
}
}
function keyHandler(ref) {
var which = ref.which;
if (!modal.isAnimating && ops.keyboard && which === 27 && modal.classList.contains('show')) {
self.hide();
}
}
function dismissHandler(e) {
if (modal.isAnimating) { return; }
var clickTarget = e.target;
var hasData = clickTarget.getAttribute('data-dismiss') === 'modal';
var parentWithData = clickTarget.closest('[data-dismiss="modal"]');
if (modal.classList.contains('show') && (parentWithData || hasData
|| (clickTarget === modal && ops.backdrop !== 'static'))) {
self.hide(); relatedTarget = null;
e.preventDefault();
}
}
// public methods
self.toggle = function () {
if (modal.classList.contains('show')) { self.hide(); } else { self.show(); }
};
self.show = function () {
if (modal.classList.contains('show') && !!modal.isAnimating) { return; }
showCustomEvent = bootstrapCustomEvent('show', 'modal', { relatedTarget: relatedTarget });
dispatchCustomEvent.call(modal, showCustomEvent);
if (showCustomEvent.defaultPrevented) { return; }
modal.isAnimating = true;
// we elegantly hide any opened modal
var currentOpen = document.getElementsByClassName('modal show')[0];
if (currentOpen && currentOpen !== modal) {
if (currentOpen.modalTrigger) { currentOpen.modalTrigger.Modal.hide(); }
if (currentOpen.Modal) { currentOpen.Modal.hide(); }
}
if (ops.backdrop) { overlay = createOverlay(); }
if (overlay && !currentOpen && !overlay.classList.contains('show')) {
reflow(overlay);
overlayDelay = getElementTransitionDuration(overlay);
overlay.classList.add('show');
}
if (!currentOpen) { setTimeout(beforeShow, overlay && overlayDelay ? overlayDelay : 0); }
else { beforeShow(); }
};
self.hide = function (force) {
if (!modal.classList.contains('show')) { return; }
hideCustomEvent = bootstrapCustomEvent('hide', 'modal');
dispatchCustomEvent.call(modal, hideCustomEvent);
if (hideCustomEvent.defaultPrevented) { return; }
modal.isAnimating = true;
modal.classList.remove('show');
modal.setAttribute('aria-hidden', true);
if (modal.classList.contains('fade') && force !== 1) { emulateTransitionEnd(modal, triggerHide); }
else { triggerHide(); }
};
self.setContent = function (content) {
queryElement('.modal-content', modal).innerHTML = content;
};
self.update = function () {
if (modal.classList.contains('show')) {
setScrollbar();
}
};
self.dispose = function () {
self.hide(1);
if (element) { element.removeEventListener('click', clickHandler, false); delete element.Modal; } else { delete modal.Modal; }
};
// init
// the modal (both JavaScript / DATA API init) / triggering button element (DATA API)
element = queryElement(elem);
// determine modal, triggering element
var checkModal = queryElement(element.getAttribute('data-target') || element.getAttribute('href'));
modal = element.classList.contains('modal') ? element : checkModal;
// set fixed items
fixedItems = Array.from(document.getElementsByClassName('fixed-top'))
.concat(Array.from(document.getElementsByClassName('fixed-bottom')));
if (element.classList.contains('modal')) { element = null; } // modal is now independent of it's triggering element
// reset on re-init
if (element && element.Modal) { element.Modal.dispose(); }
if (modal && modal.Modal) { modal.Modal.dispose(); }
// set options
ops.keyboard = !(options.keyboard === false || modal.getAttribute('data-keyboard') === 'false');
ops.backdrop = options.backdrop === 'static' || modal.getAttribute('data-backdrop') === 'static' ? 'static' : true;
ops.backdrop = options.backdrop === false || modal.getAttribute('data-backdrop') === 'false' ? false : ops.backdrop;
ops.animation = !!modal.classList.contains('fade');
ops.content = options.content; // JavaScript only
// set an initial state of the modal
modal.isAnimating = false;
// prevent adding event handlers over and over
// modal is independent of a triggering element
if (element && !element.Modal) {
element.addEventListener('click', clickHandler, false);
}
if (ops.content) {
self.setContent(ops.content.trim());
}
// set associations
if (element) {
modal.modalTrigger = element;
element.Modal = self;
} else {
modal.Modal = self;
}
}
export default Modal;
|
cdnjs/cdnjs
|
ajax/libs/bootstrap.native/3.0.15-alpha2/components/modal-native.esm.js
|
JavaScript
|
mit
| 13,172
|
/*!
* @alifd/next@1.23.0 (https://fusion.design)
* Copyright 2018-present Alibaba Group,
* Licensed under MIT (https://github.com/alibaba-fusion/next/blob/master/LICENSE)
*/
@charset "UTF-8";
/* stylelint-disable-next-line */
/**
* 尺寸 基础尺寸
* 命名能在语义的前提下简单就尽量简单, 这里可以是 size-2x, space-2x, size-base ...
* 不过可以在语义的前提下做的更精简一些, 于是用了s2, s1等
* 可用变量: `$s1 - $s8`
* @example scss - 使用
* .element {
* padding: $s1 !default;
* }
*
* @example css - CSS 输出
* .element {
* padding: 4px !default;
* }
*/
.next-sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
top: 0;
margin: -1px; }
@-webkit-keyframes fadeIn {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@keyframes fadeIn {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-100px);
-ms-transform: translateY(-100px);
transform: translateY(-100px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-100px);
-ms-transform: translateY(-100px);
transform: translateY(-100px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
@-webkit-keyframes fadeInDownSmall {
0% {
opacity: 0;
-webkit-transform: translateY(-8px);
-ms-transform: translateY(-8px);
transform: translateY(-8px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
@keyframes fadeInDownSmall {
0% {
opacity: 0;
-webkit-transform: translateY(-8px);
-ms-transform: translateY(-8px);
transform: translateY(-8px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(24px);
-ms-transform: translateY(24px);
transform: translateY(24px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(24px);
-ms-transform: translateY(24px);
transform: translateY(24px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
@-webkit-keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }
@keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px); } }
@keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px); } }
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px); } }
@keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px); } }
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px); } }
@keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px); } }
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-24px);
-ms-transform: translateY(-24px);
transform: translateY(-24px); } }
@keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-24px);
-ms-transform: translateY(-24px);
transform: translateY(-24px); } }
@-webkit-keyframes fadeOutUpSmall {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-8px);
-ms-transform: translateY(-8px);
transform: translateY(-8px); } }
@keyframes fadeOutUpSmall {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-8px);
-ms-transform: translateY(-8px);
transform: translateY(-8px); } }
@-webkit-keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px); } }
@keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px); } }
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px); } }
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px); } }
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px); } }
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px); } }
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px); } }
@keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px); } }
@-webkit-keyframes slideInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
transform: translateY(-100%); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
@keyframes slideInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
transform: translateY(-100%); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
@-webkit-keyframes slideInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
transform: translateX(-100%); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
@keyframes slideInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
transform: translateX(-100%); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
@-webkit-keyframes slideInRight {
0% {
opacity: 0;
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
transform: translateX(100%); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
@keyframes slideInRight {
0% {
opacity: 0;
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
transform: translateX(100%); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
@-webkit-keyframes slideInUp {
0% {
opacity: 0;
-webkit-transform: translateY(100%);
-ms-transform: translateY(100%);
transform: translateY(100%); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
@keyframes slideInUp {
0% {
opacity: 0;
-webkit-transform: translateY(100%);
-ms-transform: translateY(100%);
transform: translateY(100%); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
@-webkit-keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
-ms-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3); }
50% {
opacity: 1; } }
@keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
-ms-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3); }
50% {
opacity: 1; } }
@-webkit-keyframes zoomOut {
0% {
opacity: 1; }
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
-ms-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3); }
100% {
opacity: 0; } }
@keyframes zoomOut {
0% {
opacity: 1; }
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
-ms-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3); }
100% {
opacity: 0; } }
@-webkit-keyframes zoomInBig {
0% {
opacity: 0;
-webkit-transform: scale(0.9);
-ms-transform: scale(0.9);
transform: scale(0.9); }
100% {
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); } }
@keyframes zoomInBig {
0% {
opacity: 0;
-webkit-transform: scale(0.9);
-ms-transform: scale(0.9);
transform: scale(0.9); }
100% {
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); } }
@-webkit-keyframes zoomOutBig {
0% {
opacity: 1; }
100% {
opacity: 0;
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
transform: scale(0.8); } }
@keyframes zoomOutBig {
0% {
opacity: 1; }
100% {
opacity: 0;
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
transform: scale(0.8); } }
@-webkit-keyframes expandInDown {
0% {
opacity: 0;
-webkit-transform: scaleY(0.6);
-ms-transform: scaleY(0.6);
transform: scaleY(0.6);
-webkit-transform-origin: left top 0;
-ms-transform-origin: left top 0;
transform-origin: left top 0; }
100% {
opacity: 1;
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transform-origin: left top 0;
-ms-transform-origin: left top 0;
transform-origin: left top 0; } }
@keyframes expandInDown {
0% {
opacity: 0;
-webkit-transform: scaleY(0.6);
-ms-transform: scaleY(0.6);
transform: scaleY(0.6);
-webkit-transform-origin: left top 0;
-ms-transform-origin: left top 0;
transform-origin: left top 0; }
100% {
opacity: 1;
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transform-origin: left top 0;
-ms-transform-origin: left top 0;
transform-origin: left top 0; } }
@-webkit-keyframes expandInUp {
0% {
opacity: 0;
-webkit-transform: scaleY(0.6);
-ms-transform: scaleY(0.6);
transform: scaleY(0.6);
-webkit-transform-origin: left bottom 0;
-ms-transform-origin: left bottom 0;
transform-origin: left bottom 0; }
100% {
opacity: 1;
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transform-origin: left bottom 0;
-ms-transform-origin: left bottom 0;
transform-origin: left bottom 0; } }
@keyframes expandInUp {
0% {
opacity: 0;
-webkit-transform: scaleY(0.6);
-ms-transform: scaleY(0.6);
transform: scaleY(0.6);
-webkit-transform-origin: left bottom 0;
-ms-transform-origin: left bottom 0;
transform-origin: left bottom 0; }
100% {
opacity: 1;
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transform-origin: left bottom 0;
-ms-transform-origin: left bottom 0;
transform-origin: left bottom 0; } }
@-webkit-keyframes expandInWithFade {
0% {
opacity: 0; }
40% {
opacity: .1; }
50% {
opacity: .9; }
100% {
opacity: 1; } }
@keyframes expandInWithFade {
0% {
opacity: 0; }
40% {
opacity: .1; }
50% {
opacity: .9; }
100% {
opacity: 1; } }
@-webkit-keyframes expandOutUp {
0% {
opacity: 1;
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transform-origin: left top 0;
-ms-transform-origin: left top 0;
transform-origin: left top 0; }
100% {
opacity: 0;
-webkit-transform: scaleY(0.6);
-ms-transform: scaleY(0.6);
transform: scaleY(0.6);
-webkit-transform-origin: left top 0;
-ms-transform-origin: left top 0;
transform-origin: left top 0; } }
@keyframes expandOutUp {
0% {
opacity: 1;
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transform-origin: left top 0;
-ms-transform-origin: left top 0;
transform-origin: left top 0; }
100% {
opacity: 0;
-webkit-transform: scaleY(0.6);
-ms-transform: scaleY(0.6);
transform: scaleY(0.6);
-webkit-transform-origin: left top 0;
-ms-transform-origin: left top 0;
transform-origin: left top 0; } }
@-webkit-keyframes expandOutDown {
0% {
opacity: 1;
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transform-origin: left bottom 0;
-ms-transform-origin: left bottom 0;
transform-origin: left bottom 0; }
100% {
opacity: 0;
-webkit-transform: scaleY(0.6);
-ms-transform: scaleY(0.6);
transform: scaleY(0.6);
-webkit-transform-origin: left bottom 0;
-ms-transform-origin: left bottom 0;
transform-origin: left bottom 0; } }
@keyframes expandOutDown {
0% {
opacity: 1;
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transform-origin: left bottom 0;
-ms-transform-origin: left bottom 0;
transform-origin: left bottom 0; }
100% {
opacity: 0;
-webkit-transform: scaleY(0.6);
-ms-transform: scaleY(0.6);
transform: scaleY(0.6);
-webkit-transform-origin: left bottom 0;
-ms-transform-origin: left bottom 0;
transform-origin: left bottom 0; } }
@-webkit-keyframes expandOutWithFade {
0% {
opacity: 1; }
70% {
opacity: 0; }
100% {
opacity: 0; } }
@keyframes expandOutWithFade {
0% {
opacity: 1; }
70% {
opacity: 0; }
100% {
opacity: 0; } }
@-webkit-keyframes pulse {
from {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); }
20% {
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2); }
to {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); } }
@keyframes pulse {
from {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); }
20% {
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2); }
to {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); } }
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 300ms;
animation-duration: 300ms;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.35s;
animation-duration: 0.35s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 250ms;
animation-duration: 250ms;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 250ms;
animation-duration: 250ms;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 250ms;
animation-duration: 250ms;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 250ms;
animation-duration: 250ms;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.35s;
animation-duration: 0.35s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.35s;
animation-duration: 0.35s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.35s;
animation-duration: 0.35s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.35s;
animation-duration: 0.35s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.expandInDown {
-webkit-animation-name: expandInDown;
animation-name: expandInDown;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.expandOutUp {
-webkit-animation-name: expandOutUp;
animation-name: expandOutUp;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.15s;
animation-duration: 0.15s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.expandInUp {
-webkit-animation-name: expandInUp;
animation-name: expandInUp;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.expandOutDown {
-webkit-animation-name: expandOutDown;
animation-name: expandOutDown;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.15s;
animation-duration: 0.15s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.fadeInDownSmall {
-webkit-animation-name: fadeInDownSmall;
animation-name: fadeInDownSmall;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.fadeOutUpSmall {
-webkit-animation-name: fadeOutUpSmall;
animation-name: fadeOutUpSmall;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 250ms;
animation-duration: 250ms;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.zoomInBig {
-webkit-animation-name: zoomInBig;
animation-name: zoomInBig;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.2s;
animation-duration: 0.2s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.zoomOutBig {
-webkit-animation-name: zoomOutBig;
animation-name: zoomOutBig;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.2s;
animation-duration: 0.2s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.expand-enter {
overflow: hidden; }
.expand-enter-active {
-webkit-transition: all .3s ease-out;
transition: all .3s ease-out; }
.expand-enter-active > * {
-webkit-animation-name: expandInWithFade;
animation-name: expandInWithFade;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.2s;
animation-duration: 0.2s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.expand-leave {
overflow: hidden; }
.expand-leave-active {
-webkit-transition: all .2s ease-out;
transition: all .2s ease-out; }
.expand-leave-active > * {
-webkit-animation-name: expandOutWithFade;
animation-name: expandOutWithFade;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 0.2s;
animation-duration: 0.2s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.next-badge {
-webkit-box-sizing: border-box;
box-sizing: border-box;
/* @include global-font; */
position: relative;
display: inline-block;
vertical-align: middle;
line-height: 1; }
.next-badge *,
.next-badge *:before,
.next-badge *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-badge .next-badge-count {
color: #FFFFFF;
background: #FF3000;
text-align: center;
white-space: nowrap;
border-radius: 8px;
position: absolute;
width: auto;
height: 16px;
min-width: 16px;
padding: 0 4px 0 4px;
font-size: 12px;
line-height: 16px;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
top: -.5em; }
.next-badge .next-badge-count a,
.next-badge .next-badge-count a:hover {
color: #FFFFFF; }
.next-badge .next-badge-dot {
color: #FFFFFF;
background: #FF3000;
text-align: center;
white-space: nowrap;
border-radius: 8px;
position: absolute;
width: 8px;
height: 8px;
min-width: 8px;
padding: 0px;
font-size: 1px;
line-height: 1;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
top: -.5em; }
.next-badge .next-badge-dot a,
.next-badge .next-badge-dot a:hover {
color: #FFFFFF; }
.next-badge .next-badge-custom {
line-height: 1.166667;
white-space: nowrap;
font-size: 12px;
padding-left: 4px;
padding-right: 4px;
border-radius: 3px;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%); }
.next-badge .next-badge-custom > * {
line-height: 1; }
.next-badge .next-badge-custom > i:before,
.next-badge .next-badge-custom > .next-icon:before {
font-size: inherit;
width: auto;
vertical-align: top; }
.next-badge .next-badge-scroll-number {
position: absolute;
top: -4px;
z-index: 10;
overflow: hidden;
-webkit-transform-origin: left center;
-ms-transform-origin: left center;
transform-origin: left center; }
.next-badge-scroll-number-only {
position: relative;
display: inline-block;
transition: transform 100ms linear, -webkit-transform 100ms linear;
min-width: 8px; }
.next-badge-scroll-number-only span {
display: block;
height: 16px;
line-height: 16px;
font-size: 12px; }
.next-badge-not-a-wrapper .next-badge-count,
.next-badge-not-a-wrapper .next-badge-custom {
position: relative;
display: block;
top: auto;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
.next-badge-not-a-wrapper .next-badge-dot {
position: relative;
display: block;
top: auto;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
.next-badge-list-wrapper {
margin-left: 0; }
.next-badge-list-wrapper li {
margin-bottom: 0px;
list-style: none; }
.next-badge[dir="rtl"] .next-badge-custom {
padding-right: 4px;
padding-left: 4px; }
.next-badge[dir="rtl"] .next-badge-scroll-number {
left: 0;
-webkit-transform-origin: right center;
-ms-transform-origin: right center;
transform-origin: right center; }
.next-overlay-wrapper .next-overlay-inner {
z-index: 1001; }
.next-overlay-wrapper .next-overlay-backdrop {
position: fixed;
z-index: 1001;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.2);
-webkit-transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
opacity: 0; }
.next-overlay-wrapper.opened .next-overlay-backdrop {
opacity: 1; }
.next-icon[dir="rtl"]::before {
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg); }
@font-face {
font-family: NextIcon;
src: url("//at.alicdn.com/t/font_515771_xjdbujl2iu.eot");
src: url("//at.alicdn.com/t/font_515771_xjdbujl2iu.eot?#iefix") format("embedded-opentype"), url("//at.alicdn.com/t/font_515771_xjdbujl2iu.woff2") format("woff2"), url("//at.alicdn.com/t/font_515771_xjdbujl2iu.woff") format("woff"), url("//at.alicdn.com/t/font_515771_xjdbujl2iu.ttf") format("truetype"), url("//at.alicdn.com/t/font_515771_xjdbujl2iu.svg#NextIcon") format("svg"); }
.next-icon {
display: inline-block;
font-family: NextIcon;
font-style: normal;
font-weight: normal;
text-transform: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
.next-icon:before {
display: inline-block;
vertical-align: middle;
text-align: center; }
.next-icon-smile:before {
content: "\E65F"; }
.next-icon-cry:before {
content: "\E65D"; }
.next-icon-success:before {
content: "\E60A"; }
.next-icon-warning:before {
content: "\E60B"; }
.next-icon-prompt:before {
content: "\E60C"; }
.next-icon-error:before {
content: "\E60D"; }
.next-icon-help:before {
content: "\E673"; }
.next-icon-clock:before {
content: "\E621"; }
.next-icon-success-filling:before {
content: "\E63A"; }
.next-icon-delete-filling:before {
content: "\E623"; }
.next-icon-favorites-filling:before {
content: "\E60E"; }
.next-icon-add:before {
content: "\E655"; }
.next-icon-minus:before {
content: "\E601"; }
.next-icon-arrow-up:before {
content: "\E625"; }
.next-icon-arrow-down:before {
content: "\E63D"; }
.next-icon-arrow-left:before {
content: "\E61D"; }
.next-icon-arrow-right:before {
content: "\E619"; }
.next-icon-arrow-double-left:before {
content: "\E659"; }
.next-icon-arrow-double-right:before {
content: "\E65E"; }
.next-icon-switch:before {
content: "\E6B3"; }
.next-icon-sorting:before {
content: "\E634"; }
.next-icon-descending:before {
content: "\E61F"; }
.next-icon-ascending:before {
content: "\E61E"; }
.next-icon-select:before {
content: "\E632"; }
.next-icon-semi-select:before {
content: "\E633"; }
.next-icon-search:before {
content: "\E656"; }
.next-icon-close:before {
content: "\E626"; }
.next-icon-ellipsis:before {
content: "\E654"; }
.next-icon-picture:before {
content: "\E631"; }
.next-icon-calendar:before {
content: "\E607"; }
.next-icon-ashbin:before {
content: "\E639"; }
.next-icon-upload:before {
content: "\E7EE"; }
.next-icon-download:before {
content: "\E628"; }
.next-icon-set:before {
content: "\E683"; }
.next-icon-edit:before {
content: "\E63B"; }
.next-icon-refresh:before {
content: "\E677"; }
.next-icon-filter:before {
content: "\E627"; }
.next-icon-attachment:before {
content: "\E665"; }
.next-icon-account:before {
content: "\E608"; }
.next-icon-email:before {
content: "\E605"; }
.next-icon-atm:before {
content: "\E606"; }
.next-icon-loading:before {
content: "\E646";
-webkit-animation: loadingCircle 1s infinite linear;
animation: loadingCircle 1s infinite linear; }
.next-icon-eye:before {
content: "\E611"; }
.next-icon-copy:before {
content: "\E60F"; }
.next-icon-toggle-left:before {
content: "\E602"; }
.next-icon-toggle-right:before {
content: "\E603"; }
.next-icon-eye-close:before {
content: "\E600"; }
.next-icon-unlock:before {
content: "\E615"; }
.next-icon-lock:before {
content: "\E617"; }
.next-icon-exit:before {
content: "\E616"; }
.next-icon-chart-bar:before {
content: "\E612"; }
.next-icon-chart-pie:before {
content: "\E613"; }
.next-icon-form:before {
content: "\E7FB"; }
.next-icon-detail:before {
content: "\E7F8"; }
.next-icon-list:before {
content: "\E7F9"; }
.next-icon-dashboard:before {
content: "\E7FA"; }
@-webkit-keyframes loadingCircle {
0% {
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-transform: rotate(0deg);
transform: rotate(0deg); }
100% {
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-transform: rotate(360deg);
transform: rotate(360deg); } }
@keyframes loadingCircle {
0% {
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-transform: rotate(0deg);
transform: rotate(0deg); }
100% {
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-transform: rotate(360deg);
transform: rotate(360deg); } }
.next-icon.next-xxs:before,
.next-icon.next-xxs .next-icon-remote {
width: 8px;
font-size: 8px;
line-height: inherit; }
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
.next-icon.next-xxs {
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
margin-left: -4px;
margin-right: -4px; }
.next-icon.next-xxs:before {
width: 16px;
font-size: 16px; } }
.next-icon.next-xs:before,
.next-icon.next-xs .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-icon.next-small:before,
.next-icon.next-small .next-icon-remote {
width: 16px;
font-size: 16px;
line-height: inherit; }
.next-icon.next-medium:before,
.next-icon.next-medium .next-icon-remote {
width: 20px;
font-size: 20px;
line-height: inherit; }
.next-icon.next-large:before,
.next-icon.next-large .next-icon-remote {
width: 24px;
font-size: 24px;
line-height: inherit; }
.next-icon.next-xl:before,
.next-icon.next-xl .next-icon-remote {
width: 32px;
font-size: 32px;
line-height: inherit; }
.next-icon.next-xxl:before,
.next-icon.next-xxl .next-icon-remote {
width: 48px;
font-size: 48px;
line-height: inherit; }
.next-icon.next-xxxl:before,
.next-icon.next-xxxl .next-icon-remote {
width: 64px;
font-size: 64px;
line-height: inherit; }
.next-icon.next-inherit:before,
.next-icon.next-inherit .next-icon-remote {
width: inherit;
font-size: inherit;
line-height: inherit; }
.next-icon.next-inherit .next-icon-remote,
.next-icon .next-icon-remote {
width: 1em;
height: 1em;
vertical-align: middle;
fill: currentColor; }
.next-balloon {
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: absolute;
max-width: 300px;
border-style: solid;
border-radius: 3px;
font-size: 12px;
font-weight: normal;
/* stylelint-disable */
word-wrap: break-all;
word-wrap: break-word;
/* stylelint-enable */
z-index: 0;
/* size */
/* 带关闭按钮的右侧padding变大 */ }
.next-balloon *,
.next-balloon *:before,
.next-balloon *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-balloon:focus,
.next-balloon *:focus {
outline: 0; }
.next-balloon-title {
margin-bottom: 8px;
font-size: 16px;
font-weight: bold; }
.next-balloon-title.next-balloon-closable {
padding: 0 40px 0 0; }
.next-balloon-title.next-balloon-closable .next-balloon-close {
top: -1px;
-webkit-transform: translateY(18px);
-ms-transform: translateY(18px);
transform: translateY(18px);
right: 16px; }
.next-balloon-content {
word-break: break-all; }
.next-balloon-primary {
color: #333333;
border-color: #4494F9;
background-color: #E3F2FD;
-webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
border-width: 1px; }
.next-balloon-primary .next-balloon-close {
position: absolute;
top: -1px;
-webkit-transform: translateY(16px);
-ms-transform: translateY(16px);
transform: translateY(16px);
right: 12px;
font-size: 12px;
cursor: pointer;
color: #999999; }
.next-balloon-primary .next-balloon-close .next-icon {
width: 12px;
height: 12px;
line-height: 1em; }
.next-balloon-primary .next-balloon-close .next-icon:before {
width: 12px;
height: 12px;
font-size: 12px;
line-height: 1em; }
.next-balloon-primary .next-balloon-close :hover {
color: #333333; }
.next-balloon-primary:after {
position: absolute;
width: 12px;
height: 12px;
content: '';
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-box-sizing: content-box !important;
box-sizing: content-box !important;
border: 1px solid #4494F9;
background-color: #E3F2FD;
z-index: -1; }
.next-balloon-primary.next-balloon-top:after {
top: -7px;
left: calc(50% - 7px);
border-right: none;
border-bottom: none; }
.next-balloon-primary.next-balloon-right:after {
top: calc(50% - 7px);
right: -7px;
border-left: none;
border-bottom: none; }
.next-balloon-primary.next-balloon-bottom:after {
bottom: -7px;
left: calc(50% - 7px);
border-top: none;
border-left: none; }
.next-balloon-primary.next-balloon-left:after {
top: calc(50% - 7px);
left: -7px;
border-top: none;
border-right: none; }
.next-balloon-primary.next-balloon-left-top:after {
top: 12px;
left: -7px;
border-top: none;
border-right: none; }
.next-balloon-primary.next-balloon-left-bottom:after {
bottom: 12px;
left: -7px;
border-top: none;
border-right: none; }
.next-balloon-primary.next-balloon-right-top:after {
top: 12px;
right: -7px;
border-bottom: none;
border-left: none; }
.next-balloon-primary.next-balloon-right-bottom:after {
right: -7px;
bottom: 12px;
border-bottom: none;
border-left: none; }
.next-balloon-primary.next-balloon-top-left:after {
top: -7px;
left: 12px;
border-right: none;
border-bottom: none; }
.next-balloon-primary.next-balloon-top-right:after {
top: -7px;
right: 12px;
border-right: none;
border-bottom: none; }
.next-balloon-primary.next-balloon-bottom-left:after {
bottom: -7px;
left: 12px;
border-top: none;
border-left: none; }
.next-balloon-primary.next-balloon-bottom-right:after {
right: 12px;
bottom: -7px;
border-top: none;
border-left: none; }
.next-balloon-normal {
color: #333333;
border-color: #DCDEE3;
background-color: #FFFFFF;
-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
border-width: 1px; }
.next-balloon-normal .next-balloon-close {
position: absolute;
top: -1px;
-webkit-transform: translateY(16px);
-ms-transform: translateY(16px);
transform: translateY(16px);
right: 12px;
font-size: 12px;
cursor: pointer;
color: #999999; }
.next-balloon-normal .next-balloon-close .next-icon {
width: 12px;
height: 12px;
line-height: 1em; }
.next-balloon-normal .next-balloon-close .next-icon:before {
width: 12px;
height: 12px;
font-size: 12px;
line-height: 1em; }
.next-balloon-normal .next-balloon-close :hover {
color: #666666; }
.next-balloon-normal:after {
position: absolute;
width: 12px;
height: 12px;
content: '';
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-box-sizing: content-box !important;
box-sizing: content-box !important;
border: 1px solid #DCDEE3;
background-color: #FFFFFF;
z-index: -1; }
.next-balloon-normal.next-balloon-top:after {
top: -7px;
left: calc(50% - 7px);
border-right: none;
border-bottom: none; }
.next-balloon-normal.next-balloon-right:after {
top: calc(50% - 7px);
right: -7px;
border-left: none;
border-bottom: none; }
.next-balloon-normal.next-balloon-bottom:after {
bottom: -7px;
left: calc(50% - 7px);
border-top: none;
border-left: none; }
.next-balloon-normal.next-balloon-left:after {
top: calc(50% - 7px);
left: -7px;
border-top: none;
border-right: none; }
.next-balloon-normal.next-balloon-left-top:after {
top: 12px;
left: -7px;
border-top: none;
border-right: none; }
.next-balloon-normal.next-balloon-left-bottom:after {
bottom: 12px;
left: -7px;
border-top: none;
border-right: none; }
.next-balloon-normal.next-balloon-right-top:after {
top: 12px;
right: -7px;
border-bottom: none;
border-left: none; }
.next-balloon-normal.next-balloon-right-bottom:after {
right: -7px;
bottom: 12px;
border-bottom: none;
border-left: none; }
.next-balloon-normal.next-balloon-top-left:after {
top: -7px;
left: 12px;
border-right: none;
border-bottom: none; }
.next-balloon-normal.next-balloon-top-right:after {
top: -7px;
right: 12px;
border-right: none;
border-bottom: none; }
.next-balloon-normal.next-balloon-bottom-left:after {
bottom: -7px;
left: 12px;
border-top: none;
border-left: none; }
.next-balloon-normal.next-balloon-bottom-right:after {
right: 12px;
bottom: -7px;
border-top: none;
border-left: none; }
.next-balloon.visible {
display: block; }
.next-balloon.hidden {
display: none; }
.next-balloon-medium {
padding: 16px 16px 16px 16px; }
.next-balloon-closable {
padding: 16px 40px 16px 16px; }
.next-balloon-tooltip {
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: absolute;
max-width: 300px;
border-style: solid;
border-radius: 3px;
font-size: 12px;
font-weight: normal;
z-index: 0;
/* stylelint-disable */
word-wrap: break-all;
word-wrap: break-word;
/* stylelint-enable */
color: #333333;
border-color: #DCDEE3;
background-color: #F2F3F7;
-webkit-box-shadow: none;
box-shadow: none;
border-width: 1px;
/* size */ }
.next-balloon-tooltip *,
.next-balloon-tooltip *:before,
.next-balloon-tooltip *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-balloon-tooltip .next-balloon-arrow {
position: absolute;
display: block;
width: 24px;
height: 24px;
overflow: hidden;
background: 0 0;
pointer-events: none; }
.next-balloon-tooltip .next-balloon-arrow .next-balloon-arrow-content {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: block;
width: 12px;
height: 12px;
margin: auto;
background-color: #F2F3F7;
border: 1px solid #DCDEE3;
pointer-events: auto; }
.next-balloon-tooltip-top .next-balloon-arrow {
top: -24px;
left: calc(50% - 12px); }
.next-balloon-tooltip-top .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateY(12px) rotate(45deg);
-ms-transform: translateY(12px) rotate(45deg);
transform: translateY(12px) rotate(45deg); }
.next-balloon-tooltip-right .next-balloon-arrow {
top: calc(50% - 12px);
right: -24px; }
.next-balloon-tooltip-right .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateX(-12px) rotate(45deg);
-ms-transform: translateX(-12px) rotate(45deg);
transform: translateX(-12px) rotate(45deg); }
.next-balloon-tooltip-bottom .next-balloon-arrow {
left: calc(50% - 12px);
bottom: -24px; }
.next-balloon-tooltip-bottom .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateY(-12px) rotate(45deg);
-ms-transform: translateY(-12px) rotate(45deg);
transform: translateY(-12px) rotate(45deg); }
.next-balloon-tooltip-left .next-balloon-arrow {
top: calc(50% - 12px);
left: -24px; }
.next-balloon-tooltip-left .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateX(12px) rotate(45deg);
-ms-transform: translateX(12px) rotate(45deg);
transform: translateX(12px) rotate(45deg); }
.next-balloon-tooltip-left-top .next-balloon-arrow {
top: 6px;
left: -24px; }
.next-balloon-tooltip-left-top .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateX(12px) rotate(45deg);
-ms-transform: translateX(12px) rotate(45deg);
transform: translateX(12px) rotate(45deg); }
.next-balloon-tooltip-left-bottom .next-balloon-arrow {
bottom: 6px;
left: -24px; }
.next-balloon-tooltip-left-bottom .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateX(12px) rotate(45deg);
-ms-transform: translateX(12px) rotate(45deg);
transform: translateX(12px) rotate(45deg); }
.next-balloon-tooltip-right-top .next-balloon-arrow {
top: 6px;
right: -24px; }
.next-balloon-tooltip-right-top .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateX(-12px) rotate(45deg);
-ms-transform: translateX(-12px) rotate(45deg);
transform: translateX(-12px) rotate(45deg); }
.next-balloon-tooltip-right-bottom .next-balloon-arrow {
bottom: 6px;
right: -24px; }
.next-balloon-tooltip-right-bottom .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateX(-12px) rotate(45deg);
-ms-transform: translateX(-12px) rotate(45deg);
transform: translateX(-12px) rotate(45deg); }
.next-balloon-tooltip-top-left .next-balloon-arrow {
left: 6px;
top: -24px; }
.next-balloon-tooltip-top-left .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateY(12px) rotate(45deg);
-ms-transform: translateY(12px) rotate(45deg);
transform: translateY(12px) rotate(45deg); }
.next-balloon-tooltip-top-right .next-balloon-arrow {
right: 6px;
top: -24px; }
.next-balloon-tooltip-top-right .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateY(12px) rotate(45deg);
-ms-transform: translateY(12px) rotate(45deg);
transform: translateY(12px) rotate(45deg); }
.next-balloon-tooltip-bottom-left .next-balloon-arrow {
left: 6px;
bottom: -24px; }
.next-balloon-tooltip-bottom-left .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateY(-12px) rotate(45deg);
-ms-transform: translateY(-12px) rotate(45deg);
transform: translateY(-12px) rotate(45deg); }
.next-balloon-tooltip-bottom-right .next-balloon-arrow {
right: 6px;
bottom: -24px; }
.next-balloon-tooltip-bottom-right .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateY(-12px) rotate(45deg);
-ms-transform: translateY(-12px) rotate(45deg);
transform: translateY(-12px) rotate(45deg); }
.next-balloon-tooltip.visible {
display: block; }
.next-balloon-tooltip.hidden {
display: none; }
.next-balloon-tooltip-medium {
padding: 8px 8px 8px 8px; }
.next-balloon[dir="rtl"] {
/* 带关闭按钮的右侧padding变大 */ }
.next-balloon[dir="rtl"].next-balloon-primary .next-balloon-close {
left: 12px;
right: auto; }
.next-balloon[dir="rtl"].next-balloon-primary.next-balloon-right:after {
left: -7px;
right: auto;
border-right: none;
border-top: none;
border-left: inherit;
border-bottom: inherit; }
.next-balloon[dir="rtl"].next-balloon-primary.next-balloon-left:after {
right: -7px;
left: auto;
border-left: none;
border-bottom: none;
border-right: inherit;
border-top: inherit; }
.next-balloon[dir="rtl"].next-balloon-primary.next-balloon-left-top:after {
right: -7px;
left: auto;
border-left: none;
border-bottom: none;
border-top: inherit;
border-right: inherit; }
.next-balloon[dir="rtl"].next-balloon-primary.next-balloon-left-bottom:after {
right: -7px;
left: auto;
border-left: none;
border-bottom: none;
border-top: inherit;
border-right: inherit; }
.next-balloon[dir="rtl"].next-balloon-primary.next-balloon-right-top:after {
left: -7px;
right: auto;
border-right: none;
border-top: none;
border-bottom: inherit;
border-left: inherit; }
.next-balloon[dir="rtl"].next-balloon-primary.next-balloon-right-bottom:after {
left: -7px;
right: auto;
border-right: none;
border-top: none;
border-bottom: inherit;
border-left: inherit; }
.next-balloon[dir="rtl"].next-balloon-primary.next-balloon-top-left:after {
right: 12px;
left: auto; }
.next-balloon[dir="rtl"].next-balloon-primary.next-balloon-top-right:after {
right: auto;
left: 12px; }
.next-balloon[dir="rtl"].next-balloon-primary.next-balloon-bottom-left:after {
right: 12px;
left: auto; }
.next-balloon[dir="rtl"].next-balloon-primary.next-balloon-bottom-right:after {
left: 12px;
right: auto; }
.next-balloon[dir="rtl"].next-balloon-normal .next-balloon-close {
left: 12px;
right: auto; }
.next-balloon[dir="rtl"].next-balloon-normal.next-balloon-right:after {
left: -7px;
right: auto;
border-right: none;
border-top: none;
border-left: inherit;
border-bottom: inherit; }
.next-balloon[dir="rtl"].next-balloon-normal.next-balloon-left:after {
right: -7px;
left: auto;
border-left: none;
border-bottom: none;
border-right: inherit;
border-top: inherit; }
.next-balloon[dir="rtl"].next-balloon-normal.next-balloon-left-top:after {
right: -7px;
left: auto;
border-left: none;
border-bottom: none;
border-top: inherit;
border-right: inherit; }
.next-balloon[dir="rtl"].next-balloon-normal.next-balloon-left-bottom:after {
right: -7px;
left: auto;
border-left: none;
border-bottom: none;
border-top: inherit;
border-right: inherit; }
.next-balloon[dir="rtl"].next-balloon-normal.next-balloon-right-top:after {
left: -7px;
right: auto;
border-right: none;
border-top: none;
border-bottom: inherit;
border-left: inherit; }
.next-balloon[dir="rtl"].next-balloon-normal.next-balloon-right-bottom:after {
left: -7px;
right: auto;
border-right: none;
border-top: none;
border-bottom: inherit;
border-left: inherit; }
.next-balloon[dir="rtl"].next-balloon-normal.next-balloon-top-left:after {
right: 12px;
left: auto; }
.next-balloon[dir="rtl"].next-balloon-normal.next-balloon-top-right:after {
right: auto;
left: 12px; }
.next-balloon[dir="rtl"].next-balloon-normal.next-balloon-bottom-left:after {
right: 12px;
left: auto; }
.next-balloon[dir="rtl"].next-balloon-normal.next-balloon-bottom-right:after {
left: 12px;
right: auto; }
.next-balloon[dir="rtl"].next-balloon-closable {
padding: 16px 16px 16px 40px; }
.next-balloon-tooltip[dir="rtl"] {
/* size */ }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-right .next-balloon-arrow {
left: -24px;
right: auto; }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-right .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateX(12px) rotate(45deg);
-ms-transform: translateX(12px) rotate(45deg);
transform: translateX(12px) rotate(45deg); }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-left .next-balloon-arrow {
right: -24px;
left: auto; }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-left .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateX(-12px) rotate(45deg);
-ms-transform: translateX(-12px) rotate(45deg);
transform: translateX(-12px) rotate(45deg); }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-left-top .next-balloon-arrow {
right: -24px;
left: auto; }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-left-top .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateX(-12px) rotate(45deg);
-ms-transform: translateX(-12px) rotate(45deg);
transform: translateX(-12px) rotate(45deg); }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-left-bottom .next-balloon-arrow {
right: -24px;
left: auto; }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-left-bottom .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateX(-12px) rotate(45deg);
-ms-transform: translateX(-12px) rotate(45deg);
transform: translateX(-12px) rotate(45deg); }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-right-top .next-balloon-arrow {
left: -24px;
right: auto; }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-right-top .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateX(12px) rotate(45deg);
-ms-transform: translateX(12px) rotate(45deg);
transform: translateX(12px) rotate(45deg); }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-right-bottom .next-balloon-arrow {
left: -24px;
right: auto; }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-right-bottom .next-balloon-arrow .next-balloon-arrow-content {
-webkit-transform: translateX(12px) rotate(45deg);
-ms-transform: translateX(12px) rotate(45deg);
transform: translateX(12px) rotate(45deg); }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-top-left .next-balloon-arrow {
right: 10px;
left: auto; }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-top-right .next-balloon-arrow {
left: 10px;
right: auto; }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-bottom-left .next-balloon-arrow {
right: 10px;
left: auto; }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-bottom-right .next-balloon-arrow {
left: 10px;
right: auto; }
.next-balloon-tooltip[dir="rtl"].next-balloon-tooltip-medium {
padding: 8px 8px 8px 8px; }
/* put your code here */
.next-breadcrumb {
display: block;
margin: 0;
padding: 0;
white-space: nowrap;
height: 16px;
line-height: 16px; }
.next-breadcrumb .next-breadcrumb-item {
display: inline-block; }
.next-breadcrumb .next-breadcrumb-item .next-breadcrumb-text {
display: inline-block;
text-decoration: none;
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
-webkit-transition: all 100ms linear;
transition: all 100ms linear; }
.next-breadcrumb .next-breadcrumb-item .next-breadcrumb-text > b {
font-weight: normal; }
.next-breadcrumb .next-breadcrumb-item .next-breadcrumb-separator {
display: inline-block;
vertical-align: top; }
.next-breadcrumb .next-breadcrumb-text {
height: 16px;
min-width: 16px;
font-size: 12px;
line-height: 16px; }
.next-breadcrumb .next-breadcrumb-separator {
height: 16px;
margin: 0 8px;
font-size: 8px;
line-height: 16px; }
.next-breadcrumb .next-breadcrumb-separator .next-icon:before {
display: block; }
.next-breadcrumb .next-breadcrumb-separator .next-icon:before,
.next-breadcrumb .next-breadcrumb-separator .next-icon .next-icon-remote {
width: 8px;
font-size: 8px;
line-height: inherit; }
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
.next-breadcrumb .next-breadcrumb-separator .next-icon {
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
margin-left: -4px;
margin-right: -4px; }
.next-breadcrumb .next-breadcrumb-separator .next-icon:before {
width: 16px;
font-size: 16px; } }
.next-breadcrumb .next-breadcrumb-text-ellipsis {
font-size: 12px; }
.next-breadcrumb .next-breadcrumb-text {
color: #666666; }
.next-breadcrumb .next-breadcrumb-text > b {
color: #5584FF; }
.next-breadcrumb .next-breadcrumb-text > a {
color: #666666;
text-decoration: none;
text-align: center; }
.next-breadcrumb .next-breadcrumb-text.activated {
color: #333333;
font-weight: normal; }
.next-breadcrumb .next-breadcrumb-text.activated > a {
color: #333333;
font-weight: normal; }
.next-breadcrumb .next-breadcrumb-text-ellipsis {
color: #666666;
cursor: default; }
.next-breadcrumb .next-breadcrumb-separator {
color: #A0A2AD; }
.next-breadcrumb .next-breadcrumb-text:not(.next-breadcrumb-text-ellipsis):hover > a {
color: #5584FF; }
.next-breadcrumb a.next-breadcrumb-text.activated:hover > a {
color: #5584FF; }
.next-breadcrumb a.next-breadcrumb-text:not(.next-breadcrumb-text-ellipsis):hover {
color: #5584FF; }
.next-breadcrumb a.next-breadcrumb-text:not(.next-breadcrumb-text-ellipsis):hover > b {
color: #5584FF; }
.next-breadcrumb a.next-breadcrumb-text.activated:hover {
color: #5584FF;
font-weight: normal; }
.next-breadcrumb-icon-sep::before {
content: "\E619"; }
.next-btn {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-btn *,
.next-btn *:before,
.next-btn *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-btn::-moz-focus-inner {
border: 0;
padding: 0; }
.next-btn, .next-btn:active, .next-btn:focus, .next-btn:hover {
outline: 0; }
@keyframes loadingCircle {
0% {
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-transform: rotate(0deg);
transform: rotate(0deg); }
100% {
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-transform: rotate(360deg);
transform: rotate(360deg); } }
.next-btn {
/* 尺寸维度 */
/* ---------------------------------------- */
/* 普通按钮 */
/* 普通态禁用样式 */
/* 警告按钮 */
/* 文本按钮 */
/* loading */
/* ---------------------------------------- */
/* custom loading */
/* 幽灵按钮 */
/* 组合 */
/* ---------------------------------------- */ }
.next-btn {
position: relative;
display: inline-block;
-webkit-box-shadow: none;
box-shadow: none;
text-decoration: none;
text-align: center;
text-transform: none;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: all 100ms linear;
transition: all 100ms linear;
line-height: 1;
cursor: pointer; }
.next-btn:after {
text-align: center;
position: absolute;
opacity: 0;
visibility: hidden;
-webkit-transition: opacity 100ms linear;
transition: opacity 100ms linear; }
.next-btn::before {
content: '';
display: inline-block;
height: 100%;
width: 0;
vertical-align: middle; }
.next-btn .next-icon {
display: inline-block;
font-size: 0;
vertical-align: middle; }
.next-btn > span,
.next-btn > div {
display: inline-block;
vertical-align: middle; }
.next-btn > .next-btn-helper {
text-decoration: inherit;
display: inline-block;
vertical-align: middle; }
.next-btn.hover, .next-btn:hover {
-webkit-box-shadow: none;
box-shadow: none; }
.next-btn.next-small {
border-radius: 3px;
padding: 0 8px;
height: 20px;
font-size: 12px;
border-width: 1px; }
.next-btn.next-small > .next-btn-icon.next-icon-first {
margin-left: 0;
margin-right: 4px; }
.next-btn.next-small > .next-btn-icon.next-icon-first:before,
.next-btn.next-small > .next-btn-icon.next-icon-first .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn.next-small > .next-btn-icon.next-icon-last {
margin-left: 4px;
margin-right: 0; }
.next-btn.next-small > .next-btn-icon.next-icon-last:before,
.next-btn.next-small > .next-btn-icon.next-icon-last .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn.next-small > .next-btn-icon.next-icon-alone:before,
.next-btn.next-small > .next-btn-icon.next-icon-alone .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn.next-small.next-btn-loading:before {
width: 12px;
height: 12px;
font-size: 12px;
line-height: 12px;
left: 8px;
top: 50%;
text-align: center;
margin-right: 4px; }
.next-btn.next-small.next-btn-loading > .next-icon {
display: none; }
.next-btn.next-small > .next-btn-custom-loading-icon {
opacity: 0;
width: 0; }
.next-btn.next-small > .next-btn-custom-loading-icon.show {
width: 12px;
margin-right: 4px;
opacity: 1;
-webkit-transition: all 100ms linear;
transition: all 100ms linear; }
.next-btn.next-medium {
border-radius: 3px;
padding: 0 12px;
height: 28px;
font-size: 12px;
border-width: 1px; }
.next-btn.next-medium > .next-btn-icon.next-icon-first {
margin-left: 0;
margin-right: 4px; }
.next-btn.next-medium > .next-btn-icon.next-icon-first:before,
.next-btn.next-medium > .next-btn-icon.next-icon-first .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn.next-medium > .next-btn-icon.next-icon-last {
margin-left: 4px;
margin-right: 0; }
.next-btn.next-medium > .next-btn-icon.next-icon-last:before,
.next-btn.next-medium > .next-btn-icon.next-icon-last .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn.next-medium > .next-btn-icon.next-icon-alone:before,
.next-btn.next-medium > .next-btn-icon.next-icon-alone .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn.next-medium.next-btn-loading:before {
width: 12px;
height: 12px;
font-size: 12px;
line-height: 12px;
left: 12px;
top: 50%;
text-align: center;
margin-right: 4px; }
.next-btn.next-medium.next-btn-loading > .next-icon {
display: none; }
.next-btn.next-medium > .next-btn-custom-loading-icon {
opacity: 0;
width: 0; }
.next-btn.next-medium > .next-btn-custom-loading-icon.show {
width: 12px;
margin-right: 4px;
opacity: 1;
-webkit-transition: all 100ms linear;
transition: all 100ms linear; }
.next-btn.next-large {
border-radius: 3px;
padding: 0 16px;
height: 40px;
font-size: 16px;
border-width: 1px; }
.next-btn.next-large > .next-btn-icon.next-icon-first {
margin-left: 0;
margin-right: 4px; }
.next-btn.next-large > .next-btn-icon.next-icon-first:before,
.next-btn.next-large > .next-btn-icon.next-icon-first .next-icon-remote {
width: 16px;
font-size: 16px;
line-height: inherit; }
.next-btn.next-large > .next-btn-icon.next-icon-last {
margin-left: 4px;
margin-right: 0; }
.next-btn.next-large > .next-btn-icon.next-icon-last:before,
.next-btn.next-large > .next-btn-icon.next-icon-last .next-icon-remote {
width: 16px;
font-size: 16px;
line-height: inherit; }
.next-btn.next-large > .next-btn-icon.next-icon-alone:before,
.next-btn.next-large > .next-btn-icon.next-icon-alone .next-icon-remote {
width: 16px;
font-size: 16px;
line-height: inherit; }
.next-btn.next-large.next-btn-loading:before {
width: 16px;
height: 16px;
font-size: 16px;
line-height: 16px;
left: 16px;
top: 50%;
text-align: center;
margin-right: 4px; }
.next-btn.next-large.next-btn-loading > .next-icon {
display: none; }
.next-btn.next-large > .next-btn-custom-loading-icon {
opacity: 0;
width: 0; }
.next-btn.next-large > .next-btn-custom-loading-icon.show {
width: 16px;
margin-right: 4px;
opacity: 1;
-webkit-transition: all 100ms linear;
transition: all 100ms linear; }
.next-btn.next-btn-normal {
border-style: solid;
background: #FFFFFF;
border-color: #C4C6CF; }
.next-btn.next-btn-normal, .next-btn.next-btn-normal:link, .next-btn.next-btn-normal:visited, .next-btn.next-btn-normal.visited {
color: #333333; }
.next-btn.next-btn-normal:focus, .next-btn.next-btn-normal:hover, .next-btn.next-btn-normal.hover {
color: #333333;
background: #F2F3F7;
border-color: #A0A2AD;
text-decoration: none; }
.next-btn.next-btn-normal:active, .next-btn.next-btn-normal.active {
color: #333333;
background: #F2F3F7;
border-color: #A0A2AD;
text-decoration: none; }
.next-btn.next-btn-primary {
border-style: solid;
background: #5584FF;
border-color: transparent; }
.next-btn.next-btn-primary, .next-btn.next-btn-primary:link, .next-btn.next-btn-primary:visited, .next-btn.next-btn-primary.visited {
color: #FFFFFF; }
.next-btn.next-btn-primary:focus, .next-btn.next-btn-primary:hover, .next-btn.next-btn-primary.hover {
color: #FFFFFF;
background: #3E71F7;
border-color: transparent;
text-decoration: none; }
.next-btn.next-btn-primary:active, .next-btn.next-btn-primary.active {
color: #FFFFFF;
background: #3E71F7;
border-color: transparent;
text-decoration: none; }
.next-btn.next-btn-secondary {
border-style: solid;
background: #FFFFFF;
border-color: #5584FF; }
.next-btn.next-btn-secondary, .next-btn.next-btn-secondary:link, .next-btn.next-btn-secondary:visited, .next-btn.next-btn-secondary.visited {
color: #5584FF; }
.next-btn.next-btn-secondary:focus, .next-btn.next-btn-secondary:hover, .next-btn.next-btn-secondary.hover {
color: #FFFFFF;
background: #3E71F7;
border-color: #3E71F7;
text-decoration: none; }
.next-btn.next-btn-secondary:active, .next-btn.next-btn-secondary.active {
color: #FFFFFF;
background: #3E71F7;
border-color: #3E71F7;
text-decoration: none; }
.next-btn.disabled, .next-btn[disabled] {
cursor: not-allowed; }
.next-btn.disabled.next-btn-normal, .next-btn[disabled].next-btn-normal {
background: #F7F8FA;
border-color: #E6E7EB; }
.next-btn.disabled.next-btn-normal, .next-btn.disabled.next-btn-normal:link, .next-btn.disabled.next-btn-normal:visited, .next-btn.disabled.next-btn-normal.visited, .next-btn[disabled].next-btn-normal, .next-btn[disabled].next-btn-normal:link, .next-btn[disabled].next-btn-normal:visited, .next-btn[disabled].next-btn-normal.visited {
color: #CCCCCC; }
.next-btn.disabled.next-btn-normal:focus, .next-btn.disabled.next-btn-normal:hover, .next-btn.disabled.next-btn-normal.hover, .next-btn[disabled].next-btn-normal:focus, .next-btn[disabled].next-btn-normal:hover, .next-btn[disabled].next-btn-normal.hover {
color: #CCCCCC;
background: #F7F8FA;
border-color: #E6E7EB;
text-decoration: none; }
.next-btn.disabled.next-btn-normal:active, .next-btn.disabled.next-btn-normal.active, .next-btn[disabled].next-btn-normal:active, .next-btn[disabled].next-btn-normal.active {
color: #CCCCCC;
background: #F7F8FA;
border-color: #E6E7EB;
text-decoration: none; }
.next-btn.disabled.next-btn-primary, .next-btn[disabled].next-btn-primary {
background: #F7F8FA;
border-color: #E6E7EB; }
.next-btn.disabled.next-btn-primary, .next-btn.disabled.next-btn-primary:link, .next-btn.disabled.next-btn-primary:visited, .next-btn.disabled.next-btn-primary.visited, .next-btn[disabled].next-btn-primary, .next-btn[disabled].next-btn-primary:link, .next-btn[disabled].next-btn-primary:visited, .next-btn[disabled].next-btn-primary.visited {
color: #CCCCCC; }
.next-btn.disabled.next-btn-primary:focus, .next-btn.disabled.next-btn-primary:hover, .next-btn.disabled.next-btn-primary.hover, .next-btn[disabled].next-btn-primary:focus, .next-btn[disabled].next-btn-primary:hover, .next-btn[disabled].next-btn-primary.hover {
color: #CCCCCC;
background: #F7F8FA;
border-color: #E6E7EB;
text-decoration: none; }
.next-btn.disabled.next-btn-primary:active, .next-btn.disabled.next-btn-primary.active, .next-btn[disabled].next-btn-primary:active, .next-btn[disabled].next-btn-primary.active {
color: #CCCCCC;
background: #F7F8FA;
border-color: #E6E7EB;
text-decoration: none; }
.next-btn.disabled.next-btn-secondary, .next-btn[disabled].next-btn-secondary {
background: #F7F8FA;
border-color: #E6E7EB; }
.next-btn.disabled.next-btn-secondary, .next-btn.disabled.next-btn-secondary:link, .next-btn.disabled.next-btn-secondary:visited, .next-btn.disabled.next-btn-secondary.visited, .next-btn[disabled].next-btn-secondary, .next-btn[disabled].next-btn-secondary:link, .next-btn[disabled].next-btn-secondary:visited, .next-btn[disabled].next-btn-secondary.visited {
color: #CCCCCC; }
.next-btn.disabled.next-btn-secondary:focus, .next-btn.disabled.next-btn-secondary:hover, .next-btn.disabled.next-btn-secondary.hover, .next-btn[disabled].next-btn-secondary:focus, .next-btn[disabled].next-btn-secondary:hover, .next-btn[disabled].next-btn-secondary.hover {
color: #CCCCCC;
background: #F7F8FA;
border-color: #E6E7EB;
text-decoration: none; }
.next-btn.disabled.next-btn-secondary:active, .next-btn.disabled.next-btn-secondary.active, .next-btn[disabled].next-btn-secondary:active, .next-btn[disabled].next-btn-secondary.active {
color: #CCCCCC;
background: #F7F8FA;
border-color: #E6E7EB;
text-decoration: none; }
.next-btn-warning {
border-style: solid; }
.next-btn-warning.next-btn-primary {
background: #FF3000;
border-color: #FF3000; }
.next-btn-warning.next-btn-primary, .next-btn-warning.next-btn-primary:link, .next-btn-warning.next-btn-primary:visited, .next-btn-warning.next-btn-primary.visited {
color: #FFFFFF; }
.next-btn-warning.next-btn-primary:focus, .next-btn-warning.next-btn-primary:hover, .next-btn-warning.next-btn-primary.hover {
color: #FFFFFF;
background: #E72B00;
border-color: #E72B00;
text-decoration: none; }
.next-btn-warning.next-btn-primary:active, .next-btn-warning.next-btn-primary.active {
color: #FFFFFF;
background: #E72B00;
border-color: #E72B00;
text-decoration: none; }
.next-btn-warning.next-btn-primary.disabled, .next-btn-warning.next-btn-primary[disabled] {
background: #F7F8FA;
border-color: #DCDEE3; }
.next-btn-warning.next-btn-primary.disabled, .next-btn-warning.next-btn-primary.disabled:link, .next-btn-warning.next-btn-primary.disabled:visited, .next-btn-warning.next-btn-primary.disabled.visited, .next-btn-warning.next-btn-primary[disabled], .next-btn-warning.next-btn-primary[disabled]:link, .next-btn-warning.next-btn-primary[disabled]:visited, .next-btn-warning.next-btn-primary[disabled].visited {
color: #CCCCCC; }
.next-btn-warning.next-btn-primary.disabled:focus, .next-btn-warning.next-btn-primary.disabled:hover, .next-btn-warning.next-btn-primary.disabled.hover, .next-btn-warning.next-btn-primary[disabled]:focus, .next-btn-warning.next-btn-primary[disabled]:hover, .next-btn-warning.next-btn-primary[disabled].hover {
color: #CCCCCC;
background: #F7F8FA;
border-color: #DCDEE3;
text-decoration: none; }
.next-btn-warning.next-btn-primary.disabled:active, .next-btn-warning.next-btn-primary.disabled.active, .next-btn-warning.next-btn-primary[disabled]:active, .next-btn-warning.next-btn-primary[disabled].active {
color: #CCCCCC;
background: #F7F8FA;
border-color: #DCDEE3;
text-decoration: none; }
.next-btn-warning.next-btn-normal {
background: #FFFFFF;
border-color: #FF3000; }
.next-btn-warning.next-btn-normal, .next-btn-warning.next-btn-normal:link, .next-btn-warning.next-btn-normal:visited, .next-btn-warning.next-btn-normal.visited {
color: #FF3000; }
.next-btn-warning.next-btn-normal:focus, .next-btn-warning.next-btn-normal:hover, .next-btn-warning.next-btn-normal.hover {
color: #FFFFFF;
background: #E72B00;
border-color: #E72B00;
text-decoration: none; }
.next-btn-warning.next-btn-normal:active, .next-btn-warning.next-btn-normal.active {
color: #FFFFFF;
background: #E72B00;
border-color: #E72B00;
text-decoration: none; }
.next-btn-warning.next-btn-normal.disabled, .next-btn-warning.next-btn-normal[disabled] {
background: #F7F8FA;
border-color: #E6E7EB; }
.next-btn-warning.next-btn-normal.disabled, .next-btn-warning.next-btn-normal.disabled:link, .next-btn-warning.next-btn-normal.disabled:visited, .next-btn-warning.next-btn-normal.disabled.visited, .next-btn-warning.next-btn-normal[disabled], .next-btn-warning.next-btn-normal[disabled]:link, .next-btn-warning.next-btn-normal[disabled]:visited, .next-btn-warning.next-btn-normal[disabled].visited {
color: #CCCCCC; }
.next-btn-warning.next-btn-normal.disabled:focus, .next-btn-warning.next-btn-normal.disabled:hover, .next-btn-warning.next-btn-normal.disabled.hover, .next-btn-warning.next-btn-normal[disabled]:focus, .next-btn-warning.next-btn-normal[disabled]:hover, .next-btn-warning.next-btn-normal[disabled].hover {
color: #CCCCCC;
background: #F7F8FA;
border-color: #E6E7EB;
text-decoration: none; }
.next-btn-warning.next-btn-normal.disabled:active, .next-btn-warning.next-btn-normal.disabled.active, .next-btn-warning.next-btn-normal[disabled]:active, .next-btn-warning.next-btn-normal[disabled].active {
color: #CCCCCC;
background: #F7F8FA;
border-color: #E6E7EB;
text-decoration: none; }
.next-btn-text {
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text; }
.next-btn-text.hover, .next-btn-text:hover {
-webkit-box-shadow: none;
box-shadow: none; }
.next-btn-text.next-btn-primary {
background: transparent;
border-color: transparent; }
.next-btn-text.next-btn-primary, .next-btn-text.next-btn-primary:link, .next-btn-text.next-btn-primary:visited, .next-btn-text.next-btn-primary.visited {
color: #5584FF; }
.next-btn-text.next-btn-primary:focus, .next-btn-text.next-btn-primary:hover, .next-btn-text.next-btn-primary.hover {
color: #3E71F7;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-btn-text.next-btn-primary:active, .next-btn-text.next-btn-primary.active {
color: #3E71F7;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-btn-text.next-btn-primary.disabled, .next-btn-text.next-btn-primary[disabled] {
background: transparent;
border-color: transparent; }
.next-btn-text.next-btn-primary.disabled, .next-btn-text.next-btn-primary.disabled:link, .next-btn-text.next-btn-primary.disabled:visited, .next-btn-text.next-btn-primary.disabled.visited, .next-btn-text.next-btn-primary[disabled], .next-btn-text.next-btn-primary[disabled]:link, .next-btn-text.next-btn-primary[disabled]:visited, .next-btn-text.next-btn-primary[disabled].visited {
color: #CCCCCC; }
.next-btn-text.next-btn-primary.disabled:focus, .next-btn-text.next-btn-primary.disabled:hover, .next-btn-text.next-btn-primary.disabled.hover, .next-btn-text.next-btn-primary[disabled]:focus, .next-btn-text.next-btn-primary[disabled]:hover, .next-btn-text.next-btn-primary[disabled].hover {
color: #CCCCCC;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-btn-text.next-btn-primary.disabled:active, .next-btn-text.next-btn-primary.disabled.active, .next-btn-text.next-btn-primary[disabled]:active, .next-btn-text.next-btn-primary[disabled].active {
color: #CCCCCC;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-btn-text.next-btn-secondary {
background: transparent;
border-color: transparent; }
.next-btn-text.next-btn-secondary, .next-btn-text.next-btn-secondary:link, .next-btn-text.next-btn-secondary:visited, .next-btn-text.next-btn-secondary.visited {
color: #666666; }
.next-btn-text.next-btn-secondary:focus, .next-btn-text.next-btn-secondary:hover, .next-btn-text.next-btn-secondary.hover {
color: #5584FF;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-btn-text.next-btn-secondary:active, .next-btn-text.next-btn-secondary.active {
color: #5584FF;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-btn-text.next-btn-secondary.disabled, .next-btn-text.next-btn-secondary[disabled] {
background: transparent;
border-color: transparent; }
.next-btn-text.next-btn-secondary.disabled, .next-btn-text.next-btn-secondary.disabled:link, .next-btn-text.next-btn-secondary.disabled:visited, .next-btn-text.next-btn-secondary.disabled.visited, .next-btn-text.next-btn-secondary[disabled], .next-btn-text.next-btn-secondary[disabled]:link, .next-btn-text.next-btn-secondary[disabled]:visited, .next-btn-text.next-btn-secondary[disabled].visited {
color: #CCCCCC; }
.next-btn-text.next-btn-secondary.disabled:focus, .next-btn-text.next-btn-secondary.disabled:hover, .next-btn-text.next-btn-secondary.disabled.hover, .next-btn-text.next-btn-secondary[disabled]:focus, .next-btn-text.next-btn-secondary[disabled]:hover, .next-btn-text.next-btn-secondary[disabled].hover {
color: #CCCCCC;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-btn-text.next-btn-secondary.disabled:active, .next-btn-text.next-btn-secondary.disabled.active, .next-btn-text.next-btn-secondary[disabled]:active, .next-btn-text.next-btn-secondary[disabled].active {
color: #CCCCCC;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-btn-text.next-btn-normal {
background: transparent;
border-color: transparent; }
.next-btn-text.next-btn-normal, .next-btn-text.next-btn-normal:link, .next-btn-text.next-btn-normal:visited, .next-btn-text.next-btn-normal.visited {
color: #333333; }
.next-btn-text.next-btn-normal:focus, .next-btn-text.next-btn-normal:hover, .next-btn-text.next-btn-normal.hover {
color: #5584FF;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-btn-text.next-btn-normal:active, .next-btn-text.next-btn-normal.active {
color: #5584FF;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-btn-text.next-btn-normal.disabled, .next-btn-text.next-btn-normal[disabled] {
background: transparent;
border-color: transparent; }
.next-btn-text.next-btn-normal.disabled, .next-btn-text.next-btn-normal.disabled:link, .next-btn-text.next-btn-normal.disabled:visited, .next-btn-text.next-btn-normal.disabled.visited, .next-btn-text.next-btn-normal[disabled], .next-btn-text.next-btn-normal[disabled]:link, .next-btn-text.next-btn-normal[disabled]:visited, .next-btn-text.next-btn-normal[disabled].visited {
color: #CCCCCC; }
.next-btn-text.next-btn-normal.disabled:focus, .next-btn-text.next-btn-normal.disabled:hover, .next-btn-text.next-btn-normal.disabled.hover, .next-btn-text.next-btn-normal[disabled]:focus, .next-btn-text.next-btn-normal[disabled]:hover, .next-btn-text.next-btn-normal[disabled].hover {
color: #CCCCCC;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-btn-text.next-btn-normal.disabled:active, .next-btn-text.next-btn-normal.disabled.active, .next-btn-text.next-btn-normal[disabled]:active, .next-btn-text.next-btn-normal[disabled].active {
color: #CCCCCC;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-btn-text.next-large {
border-radius: 0;
padding: 0 0px;
height: 24px;
font-size: 14px;
border-width: 0; }
.next-btn-text.next-large > .next-btn-icon.next-icon-first {
margin-left: 0;
margin-right: 4px; }
.next-btn-text.next-large > .next-btn-icon.next-icon-first:before,
.next-btn-text.next-large > .next-btn-icon.next-icon-first .next-icon-remote {
width: 16px;
font-size: 16px;
line-height: inherit; }
.next-btn-text.next-large > .next-btn-icon.next-icon-last {
margin-left: 4px;
margin-right: 0; }
.next-btn-text.next-large > .next-btn-icon.next-icon-last:before,
.next-btn-text.next-large > .next-btn-icon.next-icon-last .next-icon-remote {
width: 16px;
font-size: 16px;
line-height: inherit; }
.next-btn-text.next-large > .next-btn-icon.next-icon-alone:before,
.next-btn-text.next-large > .next-btn-icon.next-icon-alone .next-icon-remote {
width: 16px;
font-size: 16px;
line-height: inherit; }
.next-btn-text.next-large.next-btn-loading:before {
width: 16px;
height: 16px;
font-size: 16px;
line-height: 16px;
left: 0px;
top: 50%;
text-align: center;
margin-right: 4px; }
.next-btn-text.next-large.next-btn-loading > .next-icon {
display: none; }
.next-btn-text.next-large > .next-btn-custom-loading-icon {
opacity: 0;
width: 0; }
.next-btn-text.next-large > .next-btn-custom-loading-icon.show {
width: 16px;
margin-right: 4px;
opacity: 1;
-webkit-transition: all 100ms linear;
transition: all 100ms linear; }
.next-btn-text.next-medium {
border-radius: 0;
padding: 0 0px;
height: 20px;
font-size: 12px;
border-width: 0; }
.next-btn-text.next-medium > .next-btn-icon.next-icon-first {
margin-left: 0;
margin-right: 4px; }
.next-btn-text.next-medium > .next-btn-icon.next-icon-first:before,
.next-btn-text.next-medium > .next-btn-icon.next-icon-first .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn-text.next-medium > .next-btn-icon.next-icon-last {
margin-left: 4px;
margin-right: 0; }
.next-btn-text.next-medium > .next-btn-icon.next-icon-last:before,
.next-btn-text.next-medium > .next-btn-icon.next-icon-last .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn-text.next-medium > .next-btn-icon.next-icon-alone:before,
.next-btn-text.next-medium > .next-btn-icon.next-icon-alone .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn-text.next-medium.next-btn-loading:before {
width: 12px;
height: 12px;
font-size: 12px;
line-height: 12px;
left: 0px;
top: 50%;
text-align: center;
margin-right: 4px; }
.next-btn-text.next-medium.next-btn-loading > .next-icon {
display: none; }
.next-btn-text.next-medium > .next-btn-custom-loading-icon {
opacity: 0;
width: 0; }
.next-btn-text.next-medium > .next-btn-custom-loading-icon.show {
width: 12px;
margin-right: 4px;
opacity: 1;
-webkit-transition: all 100ms linear;
transition: all 100ms linear; }
.next-btn-text.next-small {
border-radius: 0;
padding: 0 0px;
height: 16px;
font-size: 12px;
border-width: 0; }
.next-btn-text.next-small > .next-btn-icon.next-icon-first {
margin-left: 0;
margin-right: 4px; }
.next-btn-text.next-small > .next-btn-icon.next-icon-first:before,
.next-btn-text.next-small > .next-btn-icon.next-icon-first .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn-text.next-small > .next-btn-icon.next-icon-last {
margin-left: 4px;
margin-right: 0; }
.next-btn-text.next-small > .next-btn-icon.next-icon-last:before,
.next-btn-text.next-small > .next-btn-icon.next-icon-last .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn-text.next-small > .next-btn-icon.next-icon-alone:before,
.next-btn-text.next-small > .next-btn-icon.next-icon-alone .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn-text.next-small.next-btn-loading:before {
width: 12px;
height: 12px;
font-size: 12px;
line-height: 12px;
left: 0px;
top: 50%;
text-align: center;
margin-right: 4px; }
.next-btn-text.next-small.next-btn-loading > .next-icon {
display: none; }
.next-btn-text.next-small > .next-btn-custom-loading-icon {
opacity: 0;
width: 0; }
.next-btn-text.next-small > .next-btn-custom-loading-icon.show {
width: 12px;
margin-right: 4px;
opacity: 1;
-webkit-transition: all 100ms linear;
transition: all 100ms linear; }
.next-btn-text.next-btn-loading {
background: transparent;
border-color: transparent; }
.next-btn-text.next-btn-loading, .next-btn-text.next-btn-loading:link, .next-btn-text.next-btn-loading:visited, .next-btn-text.next-btn-loading.visited {
color: #333333; }
.next-btn-text.next-btn-loading:focus, .next-btn-text.next-btn-loading:hover, .next-btn-text.next-btn-loading.hover {
color: #333333;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-btn-text.next-btn-loading:active, .next-btn-text.next-btn-loading.active {
color: #333333;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-btn-loading {
pointer-events: none; }
.next-btn-loading:before {
font-family: NextIcon;
content: "\E646";
opacity: 1;
visibility: visible;
-webkit-animation: loadingCircle 2s infinite linear;
animation: loadingCircle 2s infinite linear; }
.next-btn-loading:after {
content: '';
display: inline-block;
position: static;
height: 100%;
width: 0;
vertical-align: middle; }
.next-btn-custom-loading {
pointer-events: none; }
.next-btn-ghost {
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid; }
.next-btn-ghost.next-btn-dark {
background: rgba(0, 0, 0, 0);
border-color: #FFFFFF; }
.next-btn-ghost.next-btn-dark, .next-btn-ghost.next-btn-dark:link, .next-btn-ghost.next-btn-dark:visited, .next-btn-ghost.next-btn-dark.visited {
color: #FFFFFF; }
.next-btn-ghost.next-btn-dark:focus, .next-btn-ghost.next-btn-dark:hover, .next-btn-ghost.next-btn-dark.hover {
color: #FFFFFF;
background: rgba(255, 255, 255, 0.8);
border-color: #FFFFFF;
text-decoration: none; }
.next-btn-ghost.next-btn-dark:active, .next-btn-ghost.next-btn-dark.active {
color: #FFFFFF;
background: rgba(255, 255, 255, 0.8);
border-color: #FFFFFF;
text-decoration: none; }
.next-btn-ghost.next-btn-dark.disabled, .next-btn-ghost.next-btn-dark[disabled] {
background: transparent;
border-color: rgba(255, 255, 255, 0.4); }
.next-btn-ghost.next-btn-dark.disabled, .next-btn-ghost.next-btn-dark.disabled:link, .next-btn-ghost.next-btn-dark.disabled:visited, .next-btn-ghost.next-btn-dark.disabled.visited, .next-btn-ghost.next-btn-dark[disabled], .next-btn-ghost.next-btn-dark[disabled]:link, .next-btn-ghost.next-btn-dark[disabled]:visited, .next-btn-ghost.next-btn-dark[disabled].visited {
color: rgba(255, 255, 255, 0.4); }
.next-btn-ghost.next-btn-dark.disabled:focus, .next-btn-ghost.next-btn-dark.disabled:hover, .next-btn-ghost.next-btn-dark.disabled.hover, .next-btn-ghost.next-btn-dark[disabled]:focus, .next-btn-ghost.next-btn-dark[disabled]:hover, .next-btn-ghost.next-btn-dark[disabled].hover {
color: rgba(255, 255, 255, 0.4);
background: transparent;
border-color: rgba(255, 255, 255, 0.4);
text-decoration: none; }
.next-btn-ghost.next-btn-dark.disabled:active, .next-btn-ghost.next-btn-dark.disabled.active, .next-btn-ghost.next-btn-dark[disabled]:active, .next-btn-ghost.next-btn-dark[disabled].active {
color: rgba(255, 255, 255, 0.4);
background: transparent;
border-color: rgba(255, 255, 255, 0.4);
text-decoration: none; }
.next-btn-ghost.next-btn-light {
background: rgba(0, 0, 0, 0);
border-color: #333333; }
.next-btn-ghost.next-btn-light, .next-btn-ghost.next-btn-light:link, .next-btn-ghost.next-btn-light:visited, .next-btn-ghost.next-btn-light.visited {
color: #333333; }
.next-btn-ghost.next-btn-light:focus, .next-btn-ghost.next-btn-light:hover, .next-btn-ghost.next-btn-light.hover {
color: #999999;
background: rgba(0, 0, 0, 0.92);
border-color: #333333;
text-decoration: none; }
.next-btn-ghost.next-btn-light:active, .next-btn-ghost.next-btn-light.active {
color: #999999;
background: rgba(0, 0, 0, 0.92);
border-color: #333333;
text-decoration: none; }
.next-btn-ghost.next-btn-light.disabled, .next-btn-ghost.next-btn-light[disabled] {
background: transparent;
border-color: rgba(0, 0, 0, 0.1); }
.next-btn-ghost.next-btn-light.disabled, .next-btn-ghost.next-btn-light.disabled:link, .next-btn-ghost.next-btn-light.disabled:visited, .next-btn-ghost.next-btn-light.disabled.visited, .next-btn-ghost.next-btn-light[disabled], .next-btn-ghost.next-btn-light[disabled]:link, .next-btn-ghost.next-btn-light[disabled]:visited, .next-btn-ghost.next-btn-light[disabled].visited {
color: rgba(0, 0, 0, 0.1); }
.next-btn-ghost.next-btn-light.disabled:focus, .next-btn-ghost.next-btn-light.disabled:hover, .next-btn-ghost.next-btn-light.disabled.hover, .next-btn-ghost.next-btn-light[disabled]:focus, .next-btn-ghost.next-btn-light[disabled]:hover, .next-btn-ghost.next-btn-light[disabled].hover {
color: rgba(0, 0, 0, 0.1);
background: transparent;
border-color: rgba(0, 0, 0, 0.1);
text-decoration: none; }
.next-btn-ghost.next-btn-light.disabled:active, .next-btn-ghost.next-btn-light.disabled.active, .next-btn-ghost.next-btn-light[disabled]:active, .next-btn-ghost.next-btn-light[disabled].active {
color: rgba(0, 0, 0, 0.1);
background: transparent;
border-color: rgba(0, 0, 0, 0.1);
text-decoration: none; }
.next-btn-group {
position: relative;
display: inline-block;
vertical-align: middle; }
.next-btn-group > .next-btn {
position: relative;
float: left;
-webkit-box-shadow: none;
box-shadow: none; }
.next-btn-group > .next-btn:hover, .next-btn-group > .next-btn:focus, .next-btn-group > .next-btn:active, .next-btn-group > .next-btn.active {
z-index: 1; }
.next-btn-group > .next-btn.disabled, .next-btn-group > .next-btn[disabled] {
z-index: 0; }
.next-btn-group .next-btn.next-btn {
margin: 0 0 0 -1px; }
.next-btn-group .next-btn:not(:first-child):not(:last-child) {
border-radius: 0; }
.next-btn-group > .next-btn:first-child {
margin: 0; }
.next-btn-group > .next-btn:first-child:not(:last-child) {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
.next-btn-group > .next-btn:last-child:not(:first-child) {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
.next-btn-group > .next-btn-primary:not(:first-child) {
border-left-color: rgba(255, 255, 255, 0.2); }
.next-btn-group > .next-btn-primary:not(:first-child):hover {
border-left-color: transparent; }
.next-btn-group > .next-btn-primary:not(:first-child).disabled, .next-btn-group > .next-btn-primary:not(:first-child)[disabled] {
border-left-color: #E6E7EB; }
/* 组合 */
/* ---------------------------------------- */
.next-btn-group[dir="rtl"] > .next-btn {
float: right; }
.next-btn-group[dir="rtl"] .next-btn.next-btn {
margin: 0 -1px 0 0; }
.next-btn-group[dir="rtl"] > .next-btn:first-child:not(:last-child) {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
.next-btn-group[dir="rtl"] > .next-btn:last-child:not(:first-child) {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
.next-btn-group[dir="rtl"] > .next-btn-primary:not(:first-child) {
border-right-color: rgba(255, 255, 255, 0.2); }
.next-btn-group[dir="rtl"] > .next-btn-primary:not(:first-child):hover {
border-right-color: transparent; }
.next-btn-group[dir="rtl"] > .next-btn-primary:not(:first-child).disabled, .next-btn-group[dir="rtl"] > .next-btn-primary:not(:first-child)[disabled] {
border-right-color: #E6E7EB; }
/* 尺寸维度 */
/* ---------------------------------------- */
.next-btn.next-small[dir="rtl"] {
border-radius: 3px; }
.next-btn.next-small[dir="rtl"] > .next-btn-icon.next-icon-first {
margin-left: 4px;
margin-right: 0; }
.next-btn.next-small[dir="rtl"] > .next-btn-icon.next-icon-first:before,
.next-btn.next-small[dir="rtl"] > .next-btn-icon.next-icon-first .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn.next-small[dir="rtl"] > .next-btn-icon.next-icon-last {
margin-left: 0;
margin-right: 4px; }
.next-btn.next-small[dir="rtl"] > .next-btn-icon.next-icon-last:before,
.next-btn.next-small[dir="rtl"] > .next-btn-icon.next-icon-last .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn.next-small[dir="rtl"].next-btn-loading {
padding-left: 8px;
padding-right: 24px; }
.next-btn.next-small[dir="rtl"].next-btn-loading:after {
right: 8px;
top: 50%;
margin-right: 0;
margin-left: 4px; }
.next-btn.next-medium[dir="rtl"] {
border-radius: 3px; }
.next-btn.next-medium[dir="rtl"] > .next-btn-icon.next-icon-first {
margin-left: 4px;
margin-right: 0; }
.next-btn.next-medium[dir="rtl"] > .next-btn-icon.next-icon-first:before,
.next-btn.next-medium[dir="rtl"] > .next-btn-icon.next-icon-first .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn.next-medium[dir="rtl"] > .next-btn-icon.next-icon-last {
margin-left: 0;
margin-right: 4px; }
.next-btn.next-medium[dir="rtl"] > .next-btn-icon.next-icon-last:before,
.next-btn.next-medium[dir="rtl"] > .next-btn-icon.next-icon-last .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn.next-medium[dir="rtl"].next-btn-loading {
padding-left: 12px;
padding-right: 28px; }
.next-btn.next-medium[dir="rtl"].next-btn-loading:after {
right: 12px;
top: 50%;
margin-right: 0;
margin-left: 4px; }
.next-btn.next-large[dir="rtl"] {
border-radius: 3px; }
.next-btn.next-large[dir="rtl"] > .next-btn-icon.next-icon-first {
margin-left: 4px;
margin-right: 0; }
.next-btn.next-large[dir="rtl"] > .next-btn-icon.next-icon-first:before,
.next-btn.next-large[dir="rtl"] > .next-btn-icon.next-icon-first .next-icon-remote {
width: 16px;
font-size: 16px;
line-height: inherit; }
.next-btn.next-large[dir="rtl"] > .next-btn-icon.next-icon-last {
margin-left: 0;
margin-right: 4px; }
.next-btn.next-large[dir="rtl"] > .next-btn-icon.next-icon-last:before,
.next-btn.next-large[dir="rtl"] > .next-btn-icon.next-icon-last .next-icon-remote {
width: 16px;
font-size: 16px;
line-height: inherit; }
.next-btn.next-large[dir="rtl"].next-btn-loading {
padding-left: 16px;
padding-right: 36px; }
.next-btn.next-large[dir="rtl"].next-btn-loading:after {
right: 16px;
top: 50%;
margin-right: 0;
margin-left: 4px; }
/* 文本按钮 */
.next-btn-text[dir="rtl"].next-large {
border-radius: 0; }
.next-btn-text[dir="rtl"].next-large > .next-btn-icon.next-icon-first {
margin-left: 4px;
margin-right: 0; }
.next-btn-text[dir="rtl"].next-large > .next-btn-icon.next-icon-first:before,
.next-btn-text[dir="rtl"].next-large > .next-btn-icon.next-icon-first .next-icon-remote {
width: 16px;
font-size: 16px;
line-height: inherit; }
.next-btn-text[dir="rtl"].next-large > .next-btn-icon.next-icon-last {
margin-left: 0;
margin-right: 4px; }
.next-btn-text[dir="rtl"].next-large > .next-btn-icon.next-icon-last:before,
.next-btn-text[dir="rtl"].next-large > .next-btn-icon.next-icon-last .next-icon-remote {
width: 16px;
font-size: 16px;
line-height: inherit; }
.next-btn-text[dir="rtl"].next-large.next-btn-loading {
padding-left: 0px;
padding-right: 20px; }
.next-btn-text[dir="rtl"].next-large.next-btn-loading:after {
right: 0px;
top: 50%;
margin-right: 0;
margin-left: 4px; }
.next-btn-text[dir="rtl"].next-medium {
border-radius: 0; }
.next-btn-text[dir="rtl"].next-medium > .next-btn-icon.next-icon-first {
margin-left: 4px;
margin-right: 0; }
.next-btn-text[dir="rtl"].next-medium > .next-btn-icon.next-icon-first:before,
.next-btn-text[dir="rtl"].next-medium > .next-btn-icon.next-icon-first .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn-text[dir="rtl"].next-medium > .next-btn-icon.next-icon-last {
margin-left: 0;
margin-right: 4px; }
.next-btn-text[dir="rtl"].next-medium > .next-btn-icon.next-icon-last:before,
.next-btn-text[dir="rtl"].next-medium > .next-btn-icon.next-icon-last .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn-text[dir="rtl"].next-medium.next-btn-loading {
padding-left: 0px;
padding-right: 16px; }
.next-btn-text[dir="rtl"].next-medium.next-btn-loading:after {
right: 0px;
top: 50%;
margin-right: 0;
margin-left: 4px; }
.next-btn-text[dir="rtl"].next-small {
border-radius: 0; }
.next-btn-text[dir="rtl"].next-small > .next-btn-icon.next-icon-first {
margin-left: 4px;
margin-right: 0; }
.next-btn-text[dir="rtl"].next-small > .next-btn-icon.next-icon-first:before,
.next-btn-text[dir="rtl"].next-small > .next-btn-icon.next-icon-first .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn-text[dir="rtl"].next-small > .next-btn-icon.next-icon-last {
margin-left: 0;
margin-right: 4px; }
.next-btn-text[dir="rtl"].next-small > .next-btn-icon.next-icon-last:before,
.next-btn-text[dir="rtl"].next-small > .next-btn-icon.next-icon-last .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-btn-text[dir="rtl"].next-small.next-btn-loading {
padding-left: 0px;
padding-right: 16px; }
.next-btn-text[dir="rtl"].next-small.next-btn-loading:after {
right: 0px;
top: 50%;
margin-right: 0;
margin-left: 4px; }
.next-radio-button-large[dir='rtl'] > label:first-child {
margin-left: -1px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
border-top-left-radius: 0;
border-bottom-left-radius: 0; }
.next-radio-button-large[dir='rtl'] > label:last-child {
margin-left: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px; }
.next-radio-button-large[dir='rtl'] .next-radio-label {
height: 38px;
line-height: 38px;
font-size: 16px; }
.next-radio-button-medium[dir='rtl'] > label:first-child {
margin-left: -1px;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px; }
.next-radio-button-medium[dir='rtl'] > label:last-child {
margin-left: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px; }
.next-radio-button-small[dir='rtl'] > label:first-child {
margin-left: -1px;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px; }
.next-radio-button-small[dir='rtl'] > label:last-child {
margin-left: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px; }
.next-radio-wrapper[dir='rtl'] .next-radio-label {
margin-left: 0;
margin-right: 4px; }
.next-radio-group[dir='rtl'] .next-radio-label {
margin-right: 4px;
margin-left: 16px; }
.next-radio-button[dir='rtl'] > label .next-radio-label {
margin: 0; }
.next-radio-wrapper {
outline: 0;
display: inline-block; }
.next-radio-wrapper .next-radio {
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: inline-block;
vertical-align: middle;
position: relative;
line-height: 1; }
.next-radio-wrapper .next-radio *,
.next-radio-wrapper .next-radio *:before,
.next-radio-wrapper .next-radio *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-radio-wrapper .next-radio input[type="radio"] {
opacity: 0;
position: absolute;
vertical-align: middle;
top: 0;
left: 0;
width: 16px;
height: 16px;
margin: 0;
cursor: pointer; }
.next-radio-wrapper .next-radio-inner {
/* 动画待定 */
/* &.mouseDown { */
/* transform: scale3d(.7, .7, .7); */
/* transition: transform .2s linear; */
/* } */
/* &.mouseUp { */
/* transform: scale3d(1, 1, 1); */
/* transition: transform .2s linear; */
/* } */
display: block;
width: 16px;
height: 16px;
background: #FFFFFF;
border-radius: 50%;
border: 1px solid #C4C6CF;
-webkit-transition: all 100ms linear;
transition: all 100ms linear;
-webkit-box-shadow: none;
box-shadow: none; }
.next-radio-wrapper .next-radio-inner:after {
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
position: absolute;
border-radius: 50%;
top: 50%;
margin-top: -2px;
left: 50%;
margin-left: -2px;
background: #FFFFFF;
content: '';
-webkit-transition: all 100ms linear;
transition: all 100ms linear; }
.next-radio-wrapper.checked .next-radio-inner {
border-color: #5584FF;
background: #5584FF; }
.next-radio-wrapper.checked .next-radio-inner:after {
width: 4px;
height: 4px;
font-weight: bold;
background: #FFFFFF;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); }
.next-radio-wrapper.checked:hover .next-radio-inner, .next-radio-wrapper.checked.hovered .next-radio-inner {
border-color: transparent; }
.next-radio-wrapper.disabled input[type="radio"] {
cursor: not-allowed; }
.next-radio-wrapper.disabled .next-radio-inner {
border-color: #E6E7EB;
background: #F7F8FA; }
.next-radio-wrapper.disabled .next-radio-inner:after {
background: #CCCCCC; }
.next-radio-wrapper.disabled .next-radio-inner:hover, .next-radio-wrapper.disabled .next-radio-inner.hovered {
border-color: #E6E7EB; }
.next-radio-wrapper.disabled.checked .next-radio-inner {
border-color: #E6E7EB;
background: #F7F8FA; }
.next-radio-wrapper.disabled.checked .next-radio-inner:after {
background: #CCCCCC; }
.next-radio-wrapper.disabled .next-radio-label {
color: #CCCCCC; }
.next-radio-wrapper:not(.disabled):hover .next-radio-inner, .next-radio-wrapper:not(.disabled).hovered .next-radio-inner {
border-color: #5584FF;
background-color: #DEE8FF; }
.next-radio-wrapper:not(.disabled):hover .next-radio-label, .next-radio-wrapper:not(.disabled).hovered .next-radio-label {
cursor: pointer; }
.next-radio-wrapper.checked:not(.disabled):hover .next-radio-inner, .next-radio-wrapper.checked:not(.disabled).hovered .next-radio-inner {
border-color: transparent;
background: #3E71F7; }
.next-radio-wrapper.checked:not(.disabled):hover .next-radio-inner:after, .next-radio-wrapper.checked:not(.disabled).hovered .next-radio-inner:after {
background: #FFFFFF; }
.next-radio-button .next-radio {
width: 0;
height: 0; }
.next-radio-button input[type="radio"] {
width: 0;
height: 0; }
.next-radio-button > label {
display: inline-block;
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: relative;
z-index: 1;
margin: 0 0 0 -1px;
border: 1px solid #C4C6CF;
background-color: #FFFFFF;
-webkit-transition: all 100ms linear;
transition: all 100ms linear;
vertical-align: middle; }
.next-radio-button > label .next-radio-label {
display: block;
color: #333333;
margin: 0;
-webkit-transition: all 100ms linear;
transition: all 100ms linear; }
.next-radio-button > label:hover, .next-radio-button > label.hovered {
z-index: 10;
border-color: #A0A2AD;
background-color: #F2F3F7; }
.next-radio-button > label:hover .next-radio-label, .next-radio-button > label.hovered .next-radio-label {
color: #333333; }
.next-radio-button > label.checked {
z-index: 11;
border-color: #5584FF;
background-color: #FFFFFF; }
.next-radio-button > label.checked .next-radio-label {
color: #5584FF; }
.next-radio-button > label.disabled {
z-index: 0;
cursor: not-allowed;
border-color: #E6E7EB;
background-color: #F7F8FA; }
.next-radio-button > label.disabled .next-radio-label {
color: #CCCCCC; }
.next-radio-button > label.checked.disabled {
z-index: 0;
border-color: #E6E7EB;
background-color: #F2F3F7; }
.next-radio-button > label.checked.disabled .next-radio-label {
color: #CCCCCC; }
.next-radio-button-large > label {
padding: 0 8px;
height: 40px;
line-height: 40px; }
.next-radio-button-large > label:first-child {
margin-left: 0;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px; }
.next-radio-button-large > label:last-child {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px; }
.next-radio-button-large .next-radio-label {
height: 38px;
line-height: 38px;
font-size: 16px; }
.next-radio-button-medium > label {
padding: 0 8px;
height: 28px;
line-height: 28px; }
.next-radio-button-medium > label:first-child {
margin-left: 0;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px; }
.next-radio-button-medium > label:last-child {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px; }
.next-radio-button-medium .next-radio-label {
height: 26px;
line-height: 26px;
font-size: 12px; }
.next-radio-button-small > label {
padding: 0 8px;
height: 20px;
line-height: 20px; }
.next-radio-button-small > label:first-child {
margin-left: 0;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px; }
.next-radio-button-small > label:last-child {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px; }
.next-radio-button-small .next-radio-label {
height: 18px;
line-height: 18px;
font-size: 12px; }
.next-radio-single-input input[type="radio"] {
opacity: 0;
position: absolute;
top: 0;
left: 0;
margin: 0; }
.next-radio-group {
display: inline-block; }
.next-radio-group .next-radio-wrapper {
/* 表现为radio整体之间多一份间隔,checkbox表现一致 */
margin-right: 12px; }
.next-radio-group .next-radio-wrapper:last-child {
margin-right: 0; }
.next-radio-group .next-radio-label {
color: #333333; }
.next-radio-group.disabled .next-radio-label {
color: #CCCCCC; }
.next-radio-group.next-radio-button .next-radio-wrapper {
margin-right: 0; }
.next-radio-group-ver .next-radio-wrapper {
display: block;
margin-bottom: 8px; }
.next-radio-label {
margin: 0;
margin-left: 4px;
/* 使用已有变量$radio-font-margin-left,配左即两边都有间隔 */
margin-right: 4px;
font-size: 12px;
vertical-align: middle;
line-height: 1;
color: #333333; }
@-moz-document url-prefix() {
.next-radio {
margin-top: -1px; }
@supports ((-webkit-animation: calc(0s)) or (animation: calc(0s))) {
/* firefox 57+ */
.next-radio {
margin-top: -3px; } } }
@-webkit-keyframes fadeInRightForTag {
0% {
opacity: 0;
-webkit-transform: rotate(45deg) translateX(20px);
transform: rotate(45deg) translateX(20px); }
100% {
opacity: 1;
-webkit-transform: rotate(45deg) translateX(0);
transform: rotate(45deg) translateX(0); } }
@keyframes fadeInRightForTag {
0% {
opacity: 0;
-webkit-transform: rotate(45deg) translateX(20px);
transform: rotate(45deg) translateX(20px); }
100% {
opacity: 1;
-webkit-transform: rotate(45deg) translateX(0);
transform: rotate(45deg) translateX(0); } }
.next-tag > .next-tag-body {
overflow: hidden;
text-overflow: ellipsis; }
.next-tag-checkable.next-tag-level-secondary {
color: #333333;
border-color: transparent;
background-color: transparent; }
.next-tag-checkable.next-tag-level-secondary:not(.disabled):not([disabled]):hover, .next-tag-checkable.next-tag-level-secondary:not(.disabled):not([disabled]).hover, .next-tag-checkable.next-tag-level-secondary:not(.disabled):not([disabled]):focus {
color: #5584FF; }
.next-tag-default.next-tag-level-primary {
color: #666666;
border-color: #EBECF0;
background-color: #EBECF0; }
.next-tag-default.next-tag-level-primary:not(.disabled):not([disabled]):hover, .next-tag-default.next-tag-level-primary:not(.disabled):not([disabled]).hover, .next-tag-default.next-tag-level-primary:not(.disabled):not([disabled]):focus {
color: #333333;
border-color: #E2E4E8;
background-color: #E2E4E8; }
.next-tag-default.next-tag-level-primary:not(.disabled):not([disabled]):hover > .next-tag-close-btn, .next-tag-default.next-tag-level-primary:not(.disabled):not([disabled]).hover > .next-tag-close-btn, .next-tag-default.next-tag-level-primary:not(.disabled):not([disabled]):focus > .next-tag-close-btn {
color: #333333; }
.next-tag-default.next-tag-level-primary[disabled], .disabled.next-tag-default.next-tag-level-primary {
color: #CCCCCC;
border-color: #F7F8FA;
background-color: #F7F8FA; }
.next-tag-default.next-tag-level-primary[disabled] > .next-tag-close-btn, .disabled.next-tag-default.next-tag-level-primary > .next-tag-close-btn {
color: #CCCCCC; }
.next-tag-default.next-tag-level-primary > .next-tag-close-btn {
color: #666666; }
.next-tag-closable.next-tag-level-primary {
color: #666666;
border-color: #EBECF0;
background-color: #EBECF0; }
.next-tag-closable.next-tag-level-primary:not(.disabled):not([disabled]):hover, .next-tag-closable.next-tag-level-primary:not(.disabled):not([disabled]).hover, .next-tag-closable.next-tag-level-primary:not(.disabled):not([disabled]):focus {
color: #333333;
border-color: #E2E4E8;
background-color: #E2E4E8; }
.next-tag-closable.next-tag-level-primary:not(.disabled):not([disabled]):hover > .next-tag-close-btn, .next-tag-closable.next-tag-level-primary:not(.disabled):not([disabled]).hover > .next-tag-close-btn, .next-tag-closable.next-tag-level-primary:not(.disabled):not([disabled]):focus > .next-tag-close-btn {
color: #333333; }
.next-tag-closable.next-tag-level-primary[disabled], .disabled.next-tag-closable.next-tag-level-primary {
color: #CCCCCC;
border-color: #F7F8FA;
background-color: #F7F8FA; }
.next-tag-closable.next-tag-level-primary[disabled] > .next-tag-close-btn, .disabled.next-tag-closable.next-tag-level-primary > .next-tag-close-btn {
color: #CCCCCC; }
.next-tag-closable.next-tag-level-primary > .next-tag-close-btn {
color: #666666; }
.next-tag-checkable.next-tag-level-primary {
color: #666666;
border-color: #EBECF0;
background-color: #EBECF0; }
.next-tag-checkable.next-tag-level-primary:not(.disabled):not([disabled]):hover, .next-tag-checkable.next-tag-level-primary:not(.disabled):not([disabled]).hover, .next-tag-checkable.next-tag-level-primary:not(.disabled):not([disabled]):focus {
color: #333333;
border-color: #E2E4E8;
background-color: #E2E4E8; }
.next-tag-checkable.next-tag-level-primary:not(.disabled):not([disabled]):hover > .next-tag-close-btn, .next-tag-checkable.next-tag-level-primary:not(.disabled):not([disabled]).hover > .next-tag-close-btn, .next-tag-checkable.next-tag-level-primary:not(.disabled):not([disabled]):focus > .next-tag-close-btn {
color: #333333; }
.next-tag-checkable.next-tag-level-primary[disabled], .disabled.next-tag-checkable.next-tag-level-primary {
color: #CCCCCC;
border-color: #F7F8FA;
background-color: #F7F8FA; }
.next-tag-checkable.next-tag-level-primary[disabled] > .next-tag-close-btn, .disabled.next-tag-checkable.next-tag-level-primary > .next-tag-close-btn {
color: #CCCCCC; }
.next-tag-checkable.next-tag-level-primary > .next-tag-close-btn {
color: #666666; }
.next-tag-checkable.next-tag-level-primary.checked {
color: #FFFFFF;
border-color: #5584FF;
background-color: #5584FF; }
.next-tag-checkable.next-tag-level-primary.checked:not(.disabled):not([disabled]):hover, .next-tag-checkable.next-tag-level-primary.checked:not(.disabled):not([disabled]).hover, .next-tag-checkable.next-tag-level-primary.checked:not(.disabled):not([disabled]):focus {
color: #FFFFFF;
border-color: #3E71F7;
background-color: #3E71F7; }
.next-tag-checkable.next-tag-level-primary.checked:not(.disabled):not([disabled]):hover > .next-tag-close-btn, .next-tag-checkable.next-tag-level-primary.checked:not(.disabled):not([disabled]).hover > .next-tag-close-btn, .next-tag-checkable.next-tag-level-primary.checked:not(.disabled):not([disabled]):focus > .next-tag-close-btn {
color: #FFFFFF; }
.next-tag-checkable.next-tag-level-primary.checked[disabled], .disabled.next-tag-checkable.next-tag-level-primary.checked {
color: #CCCCCC;
border-color: #F7F8FA;
background-color: #F7F8FA; }
.next-tag-checkable.next-tag-level-primary.checked[disabled] > .next-tag-close-btn, .disabled.next-tag-checkable.next-tag-level-primary.checked > .next-tag-close-btn {
color: #FFFFFF; }
.next-tag-checkable.next-tag-level-primary.checked > .next-tag-close-btn {
color: #FFFFFF; }
.next-tag-default.next-tag-level-normal {
color: #666666;
border-color: #C4C6CF;
background-color: transparent; }
.next-tag-default.next-tag-level-normal:not(.disabled):not([disabled]):hover, .next-tag-default.next-tag-level-normal:not(.disabled):not([disabled]).hover, .next-tag-default.next-tag-level-normal:not(.disabled):not([disabled]):focus {
color: #333333;
border-color: #A0A2AD;
background-color: transparent; }
.next-tag-default.next-tag-level-normal:not(.disabled):not([disabled]):hover > .next-tag-close-btn, .next-tag-default.next-tag-level-normal:not(.disabled):not([disabled]).hover > .next-tag-close-btn, .next-tag-default.next-tag-level-normal:not(.disabled):not([disabled]):focus > .next-tag-close-btn {
color: #333333; }
.next-tag-default.next-tag-level-normal[disabled], .disabled.next-tag-default.next-tag-level-normal {
color: #CCCCCC;
border-color: #E6E7EB;
background-color: #F7F8FA; }
.next-tag-default.next-tag-level-normal[disabled] > .next-tag-close-btn, .disabled.next-tag-default.next-tag-level-normal > .next-tag-close-btn {
color: #CCCCCC; }
.next-tag-default.next-tag-level-normal > .next-tag-close-btn {
color: #666666; }
.next-tag-closable.next-tag-level-normal {
color: #666666;
border-color: #C4C6CF;
background-color: transparent; }
.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]):hover, .next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]).hover, .next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]):focus {
color: #333333;
border-color: #A0A2AD;
background-color: transparent; }
.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]):hover > .next-tag-close-btn, .next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]).hover > .next-tag-close-btn, .next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]):focus > .next-tag-close-btn {
color: #333333; }
.next-tag-closable.next-tag-level-normal[disabled], .disabled.next-tag-closable.next-tag-level-normal {
color: #CCCCCC;
border-color: #E6E7EB;
background-color: transparent; }
.next-tag-closable.next-tag-level-normal[disabled] > .next-tag-close-btn, .disabled.next-tag-closable.next-tag-level-normal > .next-tag-close-btn {
color: #CCCCCC; }
.next-tag-closable.next-tag-level-normal > .next-tag-close-btn {
color: #666666; }
.next-tag-checkable.next-tag-level-normal.checked {
color: #5584FF;
border-color: #5584FF;
background-color: transparent; }
.next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]):hover, .next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]).hover, .next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]):focus {
color: #3E71F7;
border-color: #3E71F7;
background-color: transparent; }
.next-tag-checkable.next-tag-level-secondary.checked {
color: #5584FF;
border-color: #5584FF;
background-color: transparent; }
.next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]):hover, .next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]).hover, .next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]):focus {
color: #3E71F7;
border-color: #3E71F7;
background-color: transparent; }
.next-tag-checkable.next-tag-level-secondary.checked:before {
position: absolute;
content: "";
-webkit-font-smoothing: antialiased;
background-color: #5584FF;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg); }
.next-tag-checkable.next-tag-level-secondary.checked:after {
position: absolute;
font-family: NextIcon;
-webkit-font-smoothing: antialiased;
content: "\E632";
-webkit-transform: scale(0.6);
-ms-transform: scale(0.6);
transform: scale(0.6);
color: #FFFFFF; }
.next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]):hover:before, .next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]).hover:before, .next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]):focus:before {
background-color: #3E71F7; }
.next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]):hover:after, .next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]).hover:after, .next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]):focus:after {
color: #FFFFFF; }
.next-tag-checkable.next-tag-level-secondary.checked[disabled]:before, .next-tag-checkable.next-tag-level-secondary.checked:disabled:before {
background-color: #E6E7EB; }
.next-tag-checkable.next-tag-level-secondary.checked[disabled]:after, .next-tag-checkable.next-tag-level-secondary.checked:disabled:after {
color: #FFFFFF; }
.next-tag-checkable.next-tag-level-normal {
color: #666666;
border-color: #C4C6CF;
background-color: transparent; }
.next-tag-checkable.next-tag-level-normal:not(.disabled):not([disabled]):hover, .next-tag-checkable.next-tag-level-normal:not(.disabled):not([disabled]).hover, .next-tag-checkable.next-tag-level-normal:not(.disabled):not([disabled]):focus {
color: #333333;
border-color: #C4C6CF;
background-color: transparent; }
.next-tag-checkable.next-tag-level-normal[disabled], .disabled.next-tag-checkable.next-tag-level-normal {
color: #CCCCCC;
border-color: #E6E7EB;
background-color: #F7F8FA; }
.next-tag-checkable.next-tag-level-normal.checked:before {
position: absolute;
content: "";
-webkit-font-smoothing: antialiased;
background-color: #5584FF;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg); }
.next-tag-checkable.next-tag-level-normal.checked:after {
position: absolute;
font-family: NextIcon;
-webkit-font-smoothing: antialiased;
content: "\E632";
-webkit-transform: scale(0.6);
-ms-transform: scale(0.6);
transform: scale(0.6);
color: #FFFFFF; }
.next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]):hover:before, .next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]).hover:before, .next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]):focus:before {
background-color: #3E71F7; }
.next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]):hover:after, .next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]).hover:after, .next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]):focus:after {
color: #FFFFFF; }
.next-tag-checkable.next-tag-level-normal.checked[disabled]:before, .next-tag-checkable.next-tag-level-normal.checked:disabled:before {
background-color: #E6E7EB; }
.next-tag-checkable.next-tag-level-normal.checked[disabled]:after, .next-tag-checkable.next-tag-level-normal.checked:disabled:after {
color: #FFFFFF; }
.next-tag-closable.next-tag-level-normal:before {
position: absolute;
content: "";
-webkit-font-smoothing: antialiased;
background-color: #C4C6CF;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg); }
.next-tag-closable.next-tag-level-normal:after {
position: absolute;
font-family: NextIcon;
-webkit-font-smoothing: antialiased;
content: "\E626";
-webkit-transform: scale(0.6);
-ms-transform: scale(0.6);
transform: scale(0.6);
color: #FFFFFF; }
.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]):hover:before, .next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]).hover:before, .next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]):focus:before {
background-color: #A0A2AD; }
.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]):hover:after, .next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]).hover:after, .next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]):focus:after {
color: #FFFFFF; }
.next-tag-closable.next-tag-level-normal[disabled]:before, .next-tag-closable.next-tag-level-normal:disabled:before {
background-color: #E6E7EB; }
.next-tag-closable.next-tag-level-normal[disabled]:after, .next-tag-closable.next-tag-level-normal:disabled:after {
color: #FFFFFF; }
.next- {
/* Animation */
/* ----------- */ }
.next-tag-group .next-tag-medium,
.next-tag-group .next-tag-large {
margin-right: 8px;
margin-bottom: 8px; }
.next-tag-group .next-tag-small {
margin-right: 4px;
margin-bottom: 4px; }
.next-tag {
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: inline-block;
max-width: 100%;
vertical-align: middle;
border-width: 1px;
border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid;
/* 可配置??? */
overflow: hidden;
white-space: nowrap;
-webkit-transition: all 100ms linear;
transition: all 100ms linear;
font-size: 0;
outline: 0;
/* 预设颜色值 */ }
.next-tag *,
.next-tag *:before,
.next-tag *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-tag > .next-tag-body {
position: relative;
display: inline-block;
height: 100%;
text-align: center;
vertical-align: middle;
max-width: 100%;
cursor: default;
/* 用户手动传的 icon 的大小也保持一致? */ }
.next-tag > .next-tag-body > a {
text-decoration: none;
color: inherit; }
.next-tag > .next-tag-body > a:before {
content: " ";
position: absolute;
display: block;
top: 0;
left: 0;
right: 0;
bottom: 0; }
.next-tag > .next-tag-body .next-icon {
line-height: 1;
vertical-align: middle; }
.next-tag > .next-tag-body .next-icon:before {
font-size: inherit; }
.next-tag.next-tag-body-pointer {
cursor: pointer; }
.next-tag[disabled], .next-tag.disabled {
cursor: not-allowed;
pointer-events: none; }
.next-tag-blue {
background-color: #4494F9;
border-color: #4494F9;
color: #FFF; }
.next-tag-blue-inverse {
background-color: rgba(68, 148, 249, 0.25);
border-color: #4494F9;
color: #4494F9; }
.next-tag-green {
background-color: #46BC15;
border-color: #46BC15;
color: #FFF; }
.next-tag-green-inverse {
background-color: rgba(70, 188, 21, 0.25);
border-color: #46BC15;
color: #46BC15; }
.next-tag-orange {
background-color: #FF9300;
border-color: #FF9300;
color: #FFF; }
.next-tag-orange-inverse {
background-color: rgba(255, 147, 0, 0.25);
border-color: #FF9300;
color: #FF9300; }
.next-tag-red {
background-color: #FF3000;
border-color: #FF3000;
color: #FFF; }
.next-tag-red-inverse {
background-color: rgba(255, 48, 0, 0.25);
border-color: #FF3000;
color: #FF3000; }
.next-tag-turquoise {
background-color: #01C1B2;
border-color: #01C1B2;
color: #FFF; }
.next-tag-turquoise-inverse {
background-color: rgba(1, 193, 178, 0.25);
border-color: #01C1B2;
color: #01C1B2; }
.next-tag-yellow {
background-color: #FCCC12;
border-color: #FCCC12;
color: #FFF; }
.next-tag-yellow-inverse {
background-color: rgba(252, 204, 18, 0.25);
border-color: #FCCC12;
color: #FCCC12; }
.next-tag-large {
height: 40px;
padding: 0;
line-height: 38px;
font-size: 0; }
.next-tag-large > .next-tag-body {
font-size: 16px;
padding: 0 16px;
min-width: 48px; }
.next-tag-large.next-tag-closable > .next-tag-body {
padding: 0 0 0 16px;
max-width: calc(100% - 40px); }
.next-tag-large[dir=rtl].next-tag-closable > .next-tag-body {
padding: 0 16px 0 0; }
.next-tag-large.next-tag-closable > .next-tag-close-btn {
margin-left: 12px;
padding-right: 16px; }
.next-tag-large.next-tag-closable > .next-tag-close-btn .next-icon:before,
.next-tag-large.next-tag-closable > .next-tag-close-btn .next-icon .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-tag-large[dir=rtl] > .next-tag-close-btn {
margin-right: 12px;
margin-left: 0;
padding-right: 0;
padding-left: 16px; }
.next-tag-medium {
height: 28px;
padding: 0;
line-height: 26px;
font-size: 0; }
.next-tag-medium > .next-tag-body {
font-size: 14px;
padding: 0 12px;
min-width: 40px; }
.next-tag-medium.next-tag-closable > .next-tag-body {
padding: 0 0 0 12px;
max-width: calc(100% - 28px); }
.next-tag-medium[dir=rtl].next-tag-closable > .next-tag-body {
padding: 0 12px 0 0; }
.next-tag-medium.next-tag-closable > .next-tag-close-btn {
margin-left: 8px;
padding-right: 12px; }
.next-tag-medium.next-tag-closable > .next-tag-close-btn .next-icon:before,
.next-tag-medium.next-tag-closable > .next-tag-close-btn .next-icon .next-icon-remote {
width: 8px;
font-size: 8px;
line-height: inherit; }
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
.next-tag-medium.next-tag-closable > .next-tag-close-btn .next-icon {
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
margin-left: -4px;
margin-right: -4px; }
.next-tag-medium.next-tag-closable > .next-tag-close-btn .next-icon:before {
width: 16px;
font-size: 16px; } }
.next-tag-medium[dir=rtl] > .next-tag-close-btn {
margin-right: 8px;
margin-left: 0;
padding-right: 0;
padding-left: 12px; }
.next-tag-small {
height: 20px;
padding: 0;
line-height: 18px;
font-size: 0; }
.next-tag-small > .next-tag-body {
font-size: 12px;
padding: 0 8px;
min-width: 28px; }
.next-tag-small.next-tag-closable > .next-tag-body {
padding: 0 0 0 8px;
max-width: calc(100% - 24px); }
.next-tag-small[dir=rtl].next-tag-closable > .next-tag-body {
padding: 0 8px 0 0; }
.next-tag-small.next-tag-closable > .next-tag-close-btn {
margin-left: 8px;
padding-right: 8px; }
.next-tag-small.next-tag-closable > .next-tag-close-btn .next-icon:before,
.next-tag-small.next-tag-closable > .next-tag-close-btn .next-icon .next-icon-remote {
width: 8px;
font-size: 8px;
line-height: inherit; }
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
.next-tag-small.next-tag-closable > .next-tag-close-btn .next-icon {
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
margin-left: -4px;
margin-right: -4px; }
.next-tag-small.next-tag-closable > .next-tag-close-btn .next-icon:before {
width: 16px;
font-size: 16px; } }
.next-tag-small[dir=rtl] > .next-tag-close-btn {
margin-right: 8px;
margin-left: 0;
padding-right: 0;
padding-left: 8px; }
.next-tag-default {
cursor: default; }
.next-tag-closable {
position: relative; }
.next-tag-closable > .next-tag-close-btn {
display: inline-block;
vertical-align: middle;
height: 100%;
text-align: center;
cursor: pointer; }
.next-tag-checkable {
cursor: pointer;
position: relative;
border-radius: 3px; }
.next-tag-checkable.checked:before {
-webkit-animation: fadeInRightForTag 0.4s cubic-bezier(0.78, 0.14, 0.15, 0.86);
animation: fadeInRightForTag 0.4s cubic-bezier(0.78, 0.14, 0.15, 0.86); }
.next-tag-checkable.checked:after {
-webkit-animation: zoomIn 0.4s cubic-bezier(0.78, 0.14, 0.15, 0.86);
animation: zoomIn 0.4s cubic-bezier(0.78, 0.14, 0.15, 0.86); }
.next-tag-checkable.next-tag-small:not(.next-tag-level-primary):before {
right: -10px;
bottom: -10px;
width: 20px;
height: 20px; }
.next-tag-checkable.next-tag-small:not(.next-tag-level-primary):after {
font-size: 8px;
line-height: 8px;
right: 0;
bottom: 0; }
.next-tag-checkable.next-tag-medium:not(.next-tag-level-primary):before {
right: -14px;
bottom: -14px;
width: 28px;
height: 28px; }
.next-tag-checkable.next-tag-medium:not(.next-tag-level-primary):after {
font-size: 12px;
line-height: 12px;
right: 0;
bottom: 0; }
.next-tag-checkable.next-tag-large:not(.next-tag-level-primary):before {
right: -18px;
bottom: -18px;
width: 36px;
height: 36px; }
.next-tag-checkable.next-tag-large:not(.next-tag-level-primary):after {
font-size: 16px;
line-height: 16px;
right: 0;
bottom: 0; }
.next-tag-checkable.next-tag-level-secondary[disabled], .next-tag-checkable.next-tag-level-secondary.disabled {
color: #CCCCCC;
border-color: #E6E7EB;
background-color: #F7F8FA; }
.next-tag-zoom-enter, .next-tag-zoom-appear {
-webkit-animation: fadeInLeft 0.4s cubic-bezier(0.78, 0.14, 0.15, 0.86);
animation: fadeInLeft 0.4s cubic-bezier(0.78, 0.14, 0.15, 0.86);
-webkit-animation-fill-mode: both;
animation-fill-mode: both; }
.next-tag-zoom-leave {
-webkit-animation: zoomOut .3s ease-in;
animation: zoomOut .3s ease-in;
-webkit-animation-fill-mode: both;
animation-fill-mode: both; }
.next-checkbox-wrapper[dir="rtl"] {
margin-right: 8px;
margin-left: 0; }
.next-checkbox-wrapper[dir="rtl"]:first-child {
margin-right: 0; }
.next-checkbox-wrapper[dir="rtl"] > .next-checkbox-label {
margin-right: 4px;
margin-left: 0; }
/* stylelint-disable max-nesting-depth */
.next-checkbox-wrapper {
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: inline-block; }
.next-checkbox-wrapper *,
.next-checkbox-wrapper *:before,
.next-checkbox-wrapper *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-checkbox-wrapper .next-checkbox {
display: inline-block;
position: relative;
line-height: 1;
vertical-align: middle; }
.next-checkbox-wrapper input[type="checkbox"] {
opacity: 0;
position: absolute;
top: 0;
left: 0;
width: 16px;
height: 16px;
margin: 0;
cursor: pointer; }
.next-checkbox-wrapper .next-checkbox-inner {
display: block;
width: 16px;
height: 16px;
background: #FFFFFF;
border-radius: 3px;
border: 1px solid #C4C6CF;
-webkit-transition: all 100ms linear;
transition: all 100ms linear;
text-align: left;
/* 防止继承父级 */
-webkit-box-shadow: none;
box-shadow: none; }
.next-checkbox-wrapper .next-checkbox-inner > .next-icon {
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
position: absolute;
top: 0;
opacity: 0;
line-height: 16px;
-webkit-transition: all 100ms linear;
transition: all 100ms linear;
color: #FFFFFF;
left: 4px;
margin-left: 0px; }
.next-checkbox-wrapper .next-checkbox-inner > .next-icon:before,
.next-checkbox-wrapper .next-checkbox-inner > .next-icon .next-icon-remote {
width: 8px;
font-size: 8px;
line-height: inherit; }
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
.next-checkbox-wrapper .next-checkbox-inner > .next-icon {
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
margin-left: -4px;
margin-right: -4px; }
.next-checkbox-wrapper .next-checkbox-inner > .next-icon:before {
width: 16px;
font-size: 16px; } }
.next-checkbox-wrapper .next-checkbox-inner > .next-icon::before {
vertical-align: top;
margin-top: 0; }
.next-checkbox-wrapper .next-checkbox-inner > .next-checkbox-select-icon::before {
content: "\E632"; }
.next-checkbox-wrapper .next-checkbox-inner > .next-checkbox-semi-select-icon::before {
content: "\E633"; }
.next-checkbox-wrapper.checked > .next-checkbox > .next-checkbox-inner, .next-checkbox-wrapper.checked.focused > .next-checkbox > .next-checkbox-inner {
border-color: transparent;
background-color: #5584FF; }
.next-checkbox-wrapper.checked > .next-checkbox > .next-checkbox-inner:hover, .next-checkbox-wrapper.checked > .next-checkbox > .next-checkbox-inner.hovered, .next-checkbox-wrapper.checked.focused > .next-checkbox > .next-checkbox-inner:hover, .next-checkbox-wrapper.checked.focused > .next-checkbox > .next-checkbox-inner.hovered {
border-color: transparent; }
.next-checkbox-wrapper.checked > .next-checkbox > .next-checkbox-inner > .next-icon, .next-checkbox-wrapper.checked.focused > .next-checkbox > .next-checkbox-inner > .next-icon {
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
margin-left: 0px;
/* font-size < 12px的时候进行覆盖。 */ }
.next-checkbox-wrapper.checked > .next-checkbox > .next-checkbox-inner > .next-icon:before,
.next-checkbox-wrapper.checked > .next-checkbox > .next-checkbox-inner > .next-icon .next-icon-remote, .next-checkbox-wrapper.checked.focused > .next-checkbox > .next-checkbox-inner > .next-icon:before,
.next-checkbox-wrapper.checked.focused > .next-checkbox > .next-checkbox-inner > .next-icon .next-icon-remote {
width: 8px;
font-size: 8px;
line-height: inherit; }
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
.next-checkbox-wrapper.checked > .next-checkbox > .next-checkbox-inner > .next-icon, .next-checkbox-wrapper.checked.focused > .next-checkbox > .next-checkbox-inner > .next-icon {
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
margin-left: -4px;
margin-right: -4px; }
.next-checkbox-wrapper.checked > .next-checkbox > .next-checkbox-inner > .next-icon:before, .next-checkbox-wrapper.checked.focused > .next-checkbox > .next-checkbox-inner > .next-icon:before {
width: 16px;
font-size: 16px; } }
.next-checkbox-wrapper.indeterminate > .next-checkbox > .next-checkbox-inner, .next-checkbox-wrapper.indeterminate.focused > .next-checkbox > .next-checkbox-inner {
border-color: transparent;
background-color: #5584FF; }
.next-checkbox-wrapper.indeterminate > .next-checkbox > .next-checkbox-inner:hover, .next-checkbox-wrapper.indeterminate > .next-checkbox > .next-checkbox-inner.hovered, .next-checkbox-wrapper.indeterminate.focused > .next-checkbox > .next-checkbox-inner:hover, .next-checkbox-wrapper.indeterminate.focused > .next-checkbox > .next-checkbox-inner.hovered {
border-color: transparent; }
.next-checkbox-wrapper.indeterminate > .next-checkbox > .next-checkbox-inner > .next-icon, .next-checkbox-wrapper.indeterminate.focused > .next-checkbox > .next-checkbox-inner > .next-icon {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
margin-left: 0px;
/* font-size < 12px的时候进行覆盖。 */ }
.next-checkbox-wrapper.indeterminate > .next-checkbox > .next-checkbox-inner > .next-icon:before,
.next-checkbox-wrapper.indeterminate > .next-checkbox > .next-checkbox-inner > .next-icon .next-icon-remote, .next-checkbox-wrapper.indeterminate.focused > .next-checkbox > .next-checkbox-inner > .next-icon:before,
.next-checkbox-wrapper.indeterminate.focused > .next-checkbox > .next-checkbox-inner > .next-icon .next-icon-remote {
width: 8px;
font-size: 8px;
line-height: inherit; }
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
.next-checkbox-wrapper.indeterminate > .next-checkbox > .next-checkbox-inner > .next-icon, .next-checkbox-wrapper.indeterminate.focused > .next-checkbox > .next-checkbox-inner > .next-icon {
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
margin-left: -4px;
margin-right: -4px; }
.next-checkbox-wrapper.indeterminate > .next-checkbox > .next-checkbox-inner > .next-icon:before, .next-checkbox-wrapper.indeterminate.focused > .next-checkbox > .next-checkbox-inner > .next-icon:before {
width: 16px;
font-size: 16px; } }
.next-checkbox-wrapper:not(.disabled):hover > .next-checkbox > .next-checkbox-inner, .next-checkbox-wrapper.hovered > .next-checkbox > .next-checkbox-inner, .next-checkbox-wrapper.focused > .next-checkbox > .next-checkbox-inner {
border-color: #5584FF;
background-color: #DEE8FF; }
.next-checkbox-wrapper:not(.disabled):hover .next-checkbox-label, .next-checkbox-wrapper.hovered .next-checkbox-label, .next-checkbox-wrapper.focused .next-checkbox-label {
cursor: pointer; }
.next-checkbox-wrapper.indeterminate:not(.disabled):hover > .next-checkbox .next-checkbox-inner, .next-checkbox-wrapper.indeterminate:not(.disabled).hovered > .next-checkbox .next-checkbox-inner, .next-checkbox-wrapper.checked:not(.disabled):hover > .next-checkbox .next-checkbox-inner, .next-checkbox-wrapper.checked:not(.disabled).hovered > .next-checkbox .next-checkbox-inner {
border-color: transparent;
background-color: #3E71F7; }
.next-checkbox-wrapper.indeterminate:not(.disabled):hover > .next-checkbox .next-checkbox-inner > .next-icon, .next-checkbox-wrapper.indeterminate:not(.disabled).hovered > .next-checkbox .next-checkbox-inner > .next-icon, .next-checkbox-wrapper.checked:not(.disabled):hover > .next-checkbox .next-checkbox-inner > .next-icon, .next-checkbox-wrapper.checked:not(.disabled).hovered > .next-checkbox .next-checkbox-inner > .next-icon {
color: #FFFFFF;
opacity: 1; }
.next-checkbox-wrapper.disabled input[type="checkbox"] {
cursor: not-allowed; }
.next-checkbox-wrapper.disabled .next-checkbox-inner {
border-color: #E6E7EB;
background: #F7F8FA; }
.next-checkbox-wrapper.disabled.checked .next-checkbox-inner, .next-checkbox-wrapper.disabled.indeterminate .next-checkbox-inner {
border-color: #E6E7EB;
background: #F7F8FA; }
.next-checkbox-wrapper.disabled.checked .next-checkbox-inner:hover, .next-checkbox-wrapper.disabled.checked .next-checkbox-inner.hovered, .next-checkbox-wrapper.disabled.indeterminate .next-checkbox-inner:hover, .next-checkbox-wrapper.disabled.indeterminate .next-checkbox-inner.hovered {
border-color: #E6E7EB; }
.next-checkbox-wrapper.disabled.checked .next-checkbox-inner > .next-icon, .next-checkbox-wrapper.disabled.indeterminate .next-checkbox-inner > .next-icon {
color: #CCCCCC;
opacity: 1; }
.next-checkbox-wrapper.disabled.checked.focused .next-checkbox-inner {
border-color: #E6E7EB;
background: #F7F8FA; }
.next-checkbox-wrapper.disabled.checked.focused .next-checkbox-inner > .next-icon {
color: #CCCCCC;
opacity: 1; }
.next-checkbox-wrapper.disabled .next-checkbox-label {
color: #CCCCCC;
cursor: not-allowed; }
.next-checkbox-group .next-checkbox-wrapper {
display: inline-block;
margin-right: 12px; }
.next-checkbox-group .next-checkbox-wrapper:last-child {
margin-right: 0; }
.next-checkbox-group-ver .next-checkbox-wrapper {
display: block;
margin-left: 0;
margin-right: 0;
margin-bottom: 8px; }
.next-checkbox-label {
font-size: 12px;
color: #333333;
vertical-align: middle;
margin: 0;
margin-left: 4px;
/* 使用已存margin-left变量 */
margin-right: 4px;
line-height: 1; }
.next-menu[dir="rtl"] .next-menu-item-helper {
float: left; }
.next-menu[dir="rtl"] .next-menu-item .next-checkbox,
.next-menu[dir="rtl"] .next-menu-item .next-radio {
margin-left: 4px;
margin-right: 0; }
.next-menu[dir="rtl"] .next-menu-hoz-right {
float: left; }
.next-menu[dir="rtl"] .next-menu-icon-arrow.next-icon {
left: 10px;
right: auto; }
.next-menu[dir="rtl"] .next-menu-hoz-icon-arrow.next-icon {
left: 6px;
right: auto; }
.next-menu[dir="rtl"] .next-menu-icon-selected.next-icon {
margin-left: 0;
margin-right: -16px; }
.next-menu[dir="rtl"] .next-menu-icon-selected.next-icon:before,
.next-menu[dir="rtl"] .next-menu-icon-selected.next-icon .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-menu[dir="rtl"] .next-menu-icon-selected.next-icon.next-menu-icon-right {
right: auto;
left: 4px; }
.next-menu[dir="rtl"] .next-menu-icon-arrow.next-icon {
left: 10px;
right: auto; }
.next-menu {
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: relative;
min-width: 100px;
margin: 0;
list-style: none;
border: 1px solid #DCDEE3;
border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
background: #FFFFFF;
line-height: 32px;
font-size: 12px;
-webkit-animation-duration: 300ms;
animation-duration: 300ms;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
/* &-popup-content.next-hide { */
/* display: none; */
/* } */ }
.next-menu *,
.next-menu *:before,
.next-menu *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-menu:focus,
.next-menu *:focus {
outline: 0; }
.next-menu-spacing-lr {
padding: 0 0px; }
.next-menu-spacing-lr.next-menu-outside > .next-menu {
height: 100%;
overflow-y: auto; }
.next-menu-spacing-tb {
padding: 0px 0; }
.next-menu.next-ver {
padding: 8px 0px; }
.next-menu.next-ver .next-menu-item {
padding: 0 20px 0 20px; }
.next-menu.next-hoz {
padding: 8px 0px; }
.next-menu.next-hoz .next-menu-item {
padding: 0 20px; }
.next-menu-embeddable,
.next-menu-embeddable .next-menu-item.next-disabled,
.next-menu-embeddable .next-menu-item.next-disabled .next-menu-item-text > a {
background: transparent;
border: none; }
.next-menu-embeddable {
-webkit-box-shadow: none;
box-shadow: none; }
.next-menu-embeddable .next-menu-item-inner {
height: 100%; }
.next-menu-content {
position: relative;
padding: 0;
margin: 0;
list-style: none; }
.next-menu-sub-menu {
padding: 0;
margin: 0;
list-style: none; }
.next-menu-sub-menu.next-expand-enter {
overflow: hidden; }
.next-menu-sub-menu.next-expand-enter-active {
-webkit-transition: height 300ms ease;
transition: height 300ms ease; }
.next-menu-sub-menu.next-expand-leave {
overflow: hidden; }
.next-menu-sub-menu.next-expand-leave-active {
-webkit-transition: height 300ms ease;
transition: height 300ms ease; }
.next-menu-item {
position: relative;
-webkit-transition: background 100ms linear;
transition: background 100ms linear;
color: #333333;
cursor: pointer; }
.next-menu-item-helper {
float: right;
color: #999999;
font-style: normal;
font-size: 12px; }
.next-menu-item .next-checkbox,
.next-menu-item .next-radio {
margin-right: 4px; }
.next-menu-item.next-selected {
color: #333333;
background-color: #FFFFFF; }
.next-menu-item.next-selected .next-menu-icon-arrow {
color: #666666; }
.next-menu-item.next-selected .next-menu-icon-selected {
color: #5584FF; }
.next-menu-item.next-disabled,
.next-menu-item.next-disabled .next-menu-item-text > a {
color: #CCCCCC;
background-color: #FFFFFF;
cursor: not-allowed; }
.next-menu-item.next-disabled .next-menu-icon-arrow,
.next-menu-item.next-disabled .next-menu-item-text > a .next-menu-icon-arrow {
color: #CCCCCC; }
.next-menu-item.next-disabled .next-menu-icon-selected,
.next-menu-item.next-disabled .next-menu-item-text > a .next-menu-icon-selected {
color: #CCCCCC; }
.next-menu-item:not(.next-disabled):hover, .next-menu-item:not(.next-disabled).next-selected:hover, .next-menu-item:not(.next-disabled).next-selected.next-focused:hover, .next-menu-item:not(.next-disabled).next-selected:focus:hover, .next-menu-item:not(.next-disabled).next-focused, .next-menu-item:not(.next-disabled).next-selected.next-focused, .next-menu-item:not(.next-disabled).next-selected:focus {
color: #333333;
background-color: #F2F3F7; }
.next-menu-item:not(.next-disabled):hover .next-menu-icon-arrow, .next-menu-item:not(.next-disabled).next-selected:hover .next-menu-icon-arrow, .next-menu-item:not(.next-disabled).next-selected.next-focused:hover .next-menu-icon-arrow, .next-menu-item:not(.next-disabled).next-selected:focus:hover .next-menu-icon-arrow, .next-menu-item:not(.next-disabled).next-focused .next-menu-icon-arrow, .next-menu-item:not(.next-disabled).next-selected.next-focused .next-menu-icon-arrow, .next-menu-item:not(.next-disabled).next-selected:focus .next-menu-icon-arrow {
color: #333333; }
.next-menu-item:not(.next-disabled):hover .next-menu-icon-selected, .next-menu-item:not(.next-disabled).next-selected:hover .next-menu-icon-selected, .next-menu-item:not(.next-disabled).next-selected.next-focused:hover .next-menu-icon-selected, .next-menu-item:not(.next-disabled).next-selected:focus:hover .next-menu-icon-selected, .next-menu-item:not(.next-disabled).next-focused .next-menu-icon-selected, .next-menu-item:not(.next-disabled).next-selected.next-focused .next-menu-icon-selected, .next-menu-item:not(.next-disabled).next-selected:focus .next-menu-icon-selected {
color: #5584FF; }
.next-menu-item-inner {
height: 32px;
font-size: 12px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal; }
.next-menu-item .next-menu-item-text {
vertical-align: middle; }
.next-menu-item .next-menu-item-text > a {
display: inline-block;
text-decoration: none;
color: #333333; }
.next-menu-item .next-menu-item-text > a::before {
position: absolute;
background-color: transparent;
top: 0;
left: 0;
bottom: 0;
right: 0;
content: ''; }
.next-menu.next-hoz {
padding: 0; }
.next-menu.next-hoz.next-menu-nowrap {
overflow: hidden;
white-space: nowrap; }
.next-menu.next-hoz.next-menu-nowrap .next-menu-more {
text-align: center; }
.next-menu.next-hoz > .next-menu-item,
.next-menu.next-hoz > .next-menu-sub-menu-wrapper,
.next-menu.next-hoz .next-menu-content > .next-menu-item {
display: inline-block;
vertical-align: top; }
.next-menu.next-hoz .next-menu-header,
.next-menu.next-hoz .next-menu-content,
.next-menu.next-hoz .next-menu-footer {
display: inline-block; }
.next-menu-hoz-right {
float: right; }
.next-menu-group-label {
padding: 0 12px;
color: #999999; }
.next-menu-divider {
margin: 8px 12px;
border-bottom: 1px solid #E6E7EB; }
.next-menu .next-menu-icon-selected.next-icon {
position: absolute;
top: 0;
margin-left: -16px; }
.next-menu .next-menu-icon-selected.next-icon:before,
.next-menu .next-menu-icon-selected.next-icon .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-menu .next-menu-icon-selected.next-icon.next-menu-icon-right {
right: 4px; }
.next-menu .next-menu-symbol-icon-selected.next-menu-icon-selected::before {
content: "\E632"; }
.next-menu .next-menu-icon-arrow.next-icon {
position: absolute;
top: 0;
right: 10px;
color: #666666;
-webkit-transition: all 100ms linear;
transition: all 100ms linear; }
.next-menu .next-menu-icon-arrow.next-icon:before,
.next-menu .next-menu-icon-arrow.next-icon .next-icon-remote {
width: 8px;
font-size: 8px;
line-height: inherit; }
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
.next-menu .next-menu-icon-arrow.next-icon {
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
margin-left: -4px;
margin-right: -4px; }
.next-menu .next-menu-icon-arrow.next-icon:before {
width: 16px;
font-size: 16px; } }
.next-menu .next-menu-icon-arrow-down::before {
content: "\E63D"; }
.next-menu .next-menu-icon-arrow-down.next-open {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg); }
.next-menu .next-menu-icon-arrow-down.next-open:before,
.next-menu .next-menu-icon-arrow-down.next-open .next-icon-remote {
width: 8px;
font-size: 8px;
line-height: inherit; }
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
.next-menu .next-menu-icon-arrow-down.next-open {
-webkit-transform: scale(0.5) rotate(180deg);
-ms-transform: scale(0.5) rotate(180deg);
transform: scale(0.5) rotate(180deg);
margin-left: -4px;
margin-right: -4px; }
.next-menu .next-menu-icon-arrow-down.next-open:before {
width: 16px;
font-size: 16px; } }
.next-menu .next-menu-symbol-popupfold::before {
content: "\E619"; }
.next-menu .next-menu-icon-arrow-right.next-open {
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg); }
.next-menu .next-menu-icon-arrow-right.next-open:before,
.next-menu .next-menu-icon-arrow-right.next-open .next-icon-remote {
width: 8px;
font-size: 8px;
line-height: inherit; }
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
.next-menu .next-menu-icon-arrow-right.next-open {
-webkit-transform: scale(0.5) rotate(-90deg);
-ms-transform: scale(0.5) rotate(-90deg);
transform: scale(0.5) rotate(-90deg);
margin-left: -4px;
margin-right: -4px; }
.next-menu .next-menu-icon-arrow-right.next-open:before {
width: 16px;
font-size: 16px; } }
.next-menu .next-menu-hoz-icon-arrow.next-icon {
position: absolute;
top: 0;
right: 6px;
color: #666666;
-webkit-transition: all 100ms linear;
transition: all 100ms linear; }
.next-menu .next-menu-hoz-icon-arrow.next-icon:before,
.next-menu .next-menu-hoz-icon-arrow.next-icon .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-menu .next-menu-hoz-icon-arrow.next-icon::before {
content: "\E63D"; }
.next-menu-unfold-icon::before {
content: ""; }
.next-menu .next-menu-hoz-icon-arrow.next-open {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg); }
.next-menu .next-menu-hoz-icon-arrow.next-open:before,
.next-menu .next-menu-hoz-icon-arrow.next-open .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-menu.next-context {
line-height: 24px; }
.next-menu.next-context .next-menu-item-inner {
height: 24px; }
.next-input {
-webkit-box-sizing: border-box;
box-sizing: border-box;
vertical-align: middle;
display: inline-table;
border-collapse: separate;
font-size: 0;
line-height: 1;
width: 200px;
border-spacing: 0;
-webkit-transition: all 100ms linear;
transition: all 100ms linear;
border: 1px solid #C4C6CF;
background-color: #FFFFFF; }
.next-input *,
.next-input *:before,
.next-input *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-input input {
height: 100%;
/* remove autoFill yellow background */ }
.next-input input[type="reset"], .next-input input[type="submit"] {
-webkit-appearance: button;
cursor: pointer; }
.next-input input::-moz-focus-inner {
border: 0;
padding: 0; }
.next-input input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px #FFFFFF inset;
border-radius: 3px; }
.next-input textarea {
resize: none; }
.next-input input,
.next-input textarea {
width: 100%;
border: none;
outline: none;
padding: 0;
margin: 0;
font-weight: normal;
vertical-align: middle;
background-color: transparent;
color: #333333; }
.next-input input::-ms-clear,
.next-input textarea::-ms-clear {
display: none; }
.next-input.next-small {
height: 20px;
border-radius: 3px; }
.next-input.next-small .next-input-label {
padding-left: 8px;
font-size: 12px; }
.next-input.next-small .next-input-inner {
font-size: 12px; }
.next-input.next-small .next-input-control {
padding-right: 4px; }
.next-input.next-small input {
height: 18px;
line-height: 18px \0;
padding: 0 4px;
font-size: 12px; }
.next-input.next-small input::-webkit-input-placeholder {
font-size: 12px; }
.next-input.next-small input::-moz-placeholder {
font-size: 12px; }
.next-input.next-small input::-ms-input-placeholder {
font-size: 12px; }
.next-input.next-small input::placeholder {
font-size: 12px; }
.next-input.next-small .next-input-text-field {
padding: 0 4px;
font-size: 12px;
height: 18px;
line-height: 18px; }
.next-input.next-small .next-icon:before,
.next-input.next-small .next-icon .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-input.next-small .next-input-control {
border-radius: 0 3px 3px 0; }
.next-input.next-medium {
height: 28px;
border-radius: 3px; }
.next-input.next-medium .next-input-label {
padding-left: 8px;
font-size: 12px; }
.next-input.next-medium .next-input-inner {
font-size: 12px; }
.next-input.next-medium .next-input-control {
padding-right: 8px; }
.next-input.next-medium input {
height: 26px;
line-height: 26px \0;
padding: 0 8px;
font-size: 12px; }
.next-input.next-medium input::-webkit-input-placeholder {
font-size: 12px; }
.next-input.next-medium input::-moz-placeholder {
font-size: 12px; }
.next-input.next-medium input::-ms-input-placeholder {
font-size: 12px; }
.next-input.next-medium input::placeholder {
font-size: 12px; }
.next-input.next-medium .next-input-text-field {
padding: 0 8px;
font-size: 12px;
height: 26px;
line-height: 26px; }
.next-input.next-medium .next-icon:before,
.next-input.next-medium .next-icon .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-input.next-medium .next-input-control {
border-radius: 0 3px 3px 0; }
.next-input.next-large {
height: 40px;
border-radius: 3px; }
.next-input.next-large .next-input-label {
padding-left: 12px;
font-size: 16px; }
.next-input.next-large .next-input-inner {
font-size: 16px; }
.next-input.next-large .next-input-control {
padding-right: 8px; }
.next-input.next-large input {
height: 38px;
line-height: 38px \0;
padding: 0 12px;
font-size: 16px; }
.next-input.next-large input::-webkit-input-placeholder {
font-size: 16px; }
.next-input.next-large input::-moz-placeholder {
font-size: 16px; }
.next-input.next-large input::-ms-input-placeholder {
font-size: 16px; }
.next-input.next-large input::placeholder {
font-size: 16px; }
.next-input.next-large .next-input-text-field {
padding: 0 12px;
font-size: 16px;
height: 38px;
line-height: 38px; }
.next-input.next-large .next-icon:before,
.next-input.next-large .next-icon .next-icon-remote {
width: 16px;
font-size: 16px;
line-height: inherit; }
.next-input.next-large .next-input-control {
border-radius: 0 3px 3px 0; }
.next-input.next-input-textarea {
height: auto;
border-radius: 3px;
font-size: 0; }
.next-input.next-input-textarea textarea {
color: #333333;
padding: 4px 8px;
font-size: 12px;
border-radius: 3px; }
.next-input.next-input-textarea.next-small textarea {
font-size: 12px; }
.next-input.next-input-textarea.next-large textarea {
font-size: 16px; }
.next-input.next-input-textarea .next-input-control {
display: block;
width: auto;
border-radius: 3px; }
.next-input.next-input-textarea .next-input-len {
padding: 0 8px 4px;
display: block;
text-align: right;
width: auto; }
.next-input-hint-wrap {
color: #999999;
position: relative; }
.next-input-hint-wrap .next-input-clear {
opacity: 0;
z-index: 1;
position: absolute; }
.next-input-hint-wrap .next-input-hint {
opacity: 1; }
.next-input .next-input-clear-icon:hover, .next-input .next-icon-eye:hover, .next-input .next-icon-eye-close:hover {
cursor: pointer;
color: #666666; }
.next-input:hover, .next-input.next-focus {
border-color: #A0A2AD;
background-color: #FFFFFF; }
.next-input:hover .next-input-clear, .next-input.next-focus .next-input-clear {
opacity: 1; }
.next-input:hover .next-input-clear + .next-input-hint, .next-input.next-focus .next-input-clear + .next-input-hint {
opacity: 0; }
.next-input .next-input-clear:focus {
opacity: 1; }
.next-input .next-input-clear:focus + .next-input-hint {
opacity: 0; }
.next-input.next-focus {
border-color: #5584FF;
background-color: #FFFFFF;
-webkit-box-shadow: 0 0 0 2px rgba(85, 132, 255, 0.2);
box-shadow: 0 0 0 2px rgba(85, 132, 255, 0.2); }
.next-input.next-warning {
border-color: #FF9300;
background-color: #FFFFFF; }
.next-input.next-warning.next-focus, .next-input.next-warning:hover {
border-color: #FF9300; }
.next-input.next-warning.next-focus {
-webkit-box-shadow: 0 0 0 2px rgba(255, 147, 0, 0.2);
box-shadow: 0 0 0 2px rgba(255, 147, 0, 0.2); }
.next-input.next-error {
border-color: #FF3000;
background-color: #FFFFFF; }
.next-input.next-error.next-focus, .next-input.next-error:hover {
border-color: #FF3000; }
.next-input.next-error.next-focus {
-webkit-box-shadow: 0 0 0 2px rgba(255, 48, 0, 0.2);
box-shadow: 0 0 0 2px rgba(255, 48, 0, 0.2); }
.next-input.next-hidden {
display: none; }
.next-input.next-noborder {
border: none;
-webkit-box-shadow: none;
box-shadow: none; }
.next-input-control .next-input-len {
font-size: 12px;
line-height: 12px;
color: #999999;
display: table-cell;
width: 1px;
vertical-align: bottom; }
.next-input-control .next-input-len.next-error {
color: #FF3000; }
.next-input-control .next-input-len.next-warning {
color: #FF9300; }
.next-input-control > * {
display: table-cell;
width: 1%;
top: 0; }
.next-input-control > *:not(:last-child) {
padding-right: 4px; }
.next-input-control .next-icon {
-webkit-transition: all 100ms linear;
transition: all 100ms linear;
color: #999999; }
.next-input-control .next-input-warning-icon {
color: #FF9300; }
.next-input-control .next-input-warning-icon::before {
content: "\E60B"; }
.next-input-control .next-input-success-icon {
color: #46BC15; }
.next-input-control .next-input-success-icon::before {
content: "\E63A"; }
.next-input-control .next-input-loading-icon {
color: #4494F9; }
.next-input-control .next-input-loading-icon::before {
content: "\E646";
-webkit-animation: loadingCircle 1s infinite linear;
animation: loadingCircle 1s infinite linear; }
.next-input-control .next-input-clear-icon::before {
content: "\E623"; }
.next-input-label {
color: #666666; }
.next-input input::-moz-placeholder,
.next-input textarea::-moz-placeholder {
color: #999999;
opacity: 1; }
.next-input input:-ms-input-placeholder,
.next-input textarea:-ms-input-placeholder {
color: #999999; }
.next-input input::-webkit-input-placeholder,
.next-input textarea::-webkit-input-placeholder {
color: #999999; }
.next-input.next-disabled {
color: #CCCCCC;
border-color: #E6E7EB;
background-color: #F7F8FA;
cursor: not-allowed; }
.next-input.next-disabled:hover {
border-color: #E6E7EB;
background-color: #F7F8FA; }
.next-input.next-disabled input, .next-input.next-disabled textarea {
-webkit-text-fill-color: #CCCCCC;
color: #CCCCCC; }
.next-input.next-disabled input::-moz-placeholder, .next-input.next-disabled textarea::-moz-placeholder {
color: #CCCCCC;
opacity: 1; }
.next-input.next-disabled input:-ms-input-placeholder, .next-input.next-disabled textarea:-ms-input-placeholder {
color: #CCCCCC; }
.next-input.next-disabled input::-webkit-input-placeholder, .next-input.next-disabled textarea::-webkit-input-placeholder {
color: #CCCCCC; }
.next-input.next-disabled .next-input-label {
color: #CCCCCC; }
.next-input.next-disabled .next-input-len {
color: #CCCCCC; }
.next-input.next-disabled .next-input-hint-wrap {
color: #CCCCCC; }
.next-input.next-disabled .next-input-hint-wrap .next-input-clear {
opacity: 0; }
.next-input.next-disabled .next-input-hint-wrap .next-input-hint {
opacity: 1; }
.next-input.next-disabled .next-input-hint-wrap .next-input-clear-icon:hover {
cursor: not-allowed;
color: #CCCCCC; }
.next-input.next-disabled .next-icon {
color: #CCCCCC; }
.next-input-inner, .next-input-control, .next-input-label {
display: table-cell;
width: 1px;
vertical-align: middle;
line-height: 1;
background-color: transparent;
white-space: nowrap; }
.next-input-group {
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: inline-table;
border-collapse: separate;
border-spacing: 0;
line-height: 0;
width: 100%; }
.next-input-group *,
.next-input-group *:before,
.next-input-group *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-input-group-auto-width {
width: 100%;
border-radius: 0 !important; }
.next-input-group > .next-input {
border-radius: 0; }
.next-input-group > .next-input.next-focus {
position: relative;
z-index: 1; }
.next-input-group > .next-input:first-child.next-small {
border-top-left-radius: 3px !important;
border-bottom-left-radius: 3px !important; }
.next-input-group > .next-input:first-child.next-medium {
border-top-left-radius: 3px !important;
border-bottom-left-radius: 3px !important; }
.next-input-group > .next-input:first-child.next-large {
border-top-left-radius: 3px !important;
border-bottom-left-radius: 3px !important; }
.next-input-group > .next-input:last-child.next-small {
border-top-right-radius: 3px !important;
border-bottom-right-radius: 3px !important; }
.next-input-group > .next-input:last-child.next-medium {
border-top-right-radius: 3px !important;
border-bottom-right-radius: 3px !important; }
.next-input-group > .next-input:last-child.next-large {
border-top-right-radius: 3px !important;
border-bottom-right-radius: 3px !important; }
.next-input-group-addon {
width: 1px;
display: table-cell;
vertical-align: middle;
white-space: nowrap;
/* stylelint-disable declaration-no-important */ }
.next-input-group-addon:first-child {
border-bottom-right-radius: 0 !important;
border-top-right-radius: 0 !important; }
.next-input-group-addon:first-child > * {
margin-right: -1px;
border-bottom-right-radius: 0 !important;
border-top-right-radius: 0 !important; }
.next-input-group-addon:first-child > *.next-focus {
position: relative;
z-index: 1; }
.next-input-group-addon:first-child > * > .next-input {
border-bottom-right-radius: 0 !important;
border-top-right-radius: 0 !important; }
.next-input-group-addon:first-child > * > .next-input.next-focus {
position: relative;
z-index: 1; }
.next-input-group-addon:last-child {
border-bottom-left-radius: 0 !important;
border-top-left-radius: 0 !important; }
.next-input-group-addon:last-child > * {
margin-left: -1px;
border-bottom-left-radius: 0 !important;
border-top-left-radius: 0 !important; }
.next-input-group-addon:last-child > * > .next-input {
border-bottom-left-radius: 0 !important;
border-top-left-radius: 0 !important; }
.next-input-group-text {
color: #999999;
background-color: #F2F3F7;
text-align: center;
border: 1px solid #C4C6CF;
padding: 0 8px; }
.next-input-group-text:first-child {
border-right-width: 0; }
.next-input-group-text:last-child {
border-left-width: 0; }
.next-input-group-text.next-disabled {
color: #CCCCCC;
border-color: #E6E7EB;
background-color: #F7F8FA;
cursor: not-allowed; }
.next-input-group-text.next-disabled:hover {
border-color: #E6E7EB;
background-color: #F7F8FA; }
.next-input-group-text.next-small {
font-size: 12px;
border-radius: 3px; }
.next-input-group-text.next-medium {
font-size: 12px;
border-radius: 3px; }
.next-input-group-text.next-large {
font-size: 16px;
border-radius: 3px; }
.next-input[dir="rtl"].next-small .next-input-label {
padding-left: 0;
padding-right: 8px; }
.next-input[dir="rtl"].next-small .next-input-control {
padding-right: 0;
padding-left: 4px; }
.next-input[dir="rtl"].next-medium .next-input-label {
padding-left: 0;
padding-right: 8px; }
.next-input[dir="rtl"].next-medium .next-input-control {
padding-right: 0;
padding-left: 8px; }
.next-input[dir="rtl"].next-large .next-input-label {
padding-left: 0;
padding-right: 12px; }
.next-input[dir="rtl"].next-large .next-input-control {
padding-right: 0;
padding-left: 8px; }
.next-input[dir="rtl"].next-input-textarea .next-input-len {
text-align: left; }
.next-input[dir="rtl"] .next-input-control > *:not(:last-child) {
padding-left: 4px;
padding-right: 0; }
.next-input-group[dir="rtl"] > .next-input:first-child.next-small {
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
border-top-right-radius: 3px !important;
border-bottom-right-radius: 3px !important; }
.next-input-group[dir="rtl"] > .next-input:first-child.next-medium {
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
border-top-right-radius: 3px !important;
border-bottom-right-radius: 3px !important; }
.next-input-group[dir="rtl"] > .next-input:first-child.next-large {
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
border-top-right-radius: 3px !important;
border-bottom-right-radius: 3px !important; }
.next-input-group[dir="rtl"] > .next-input:last-child.next-small {
border-top-left-radius: 3px !important;
border-bottom-left-radius: 3px !important;
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important; }
.next-input-group[dir="rtl"] > .next-input:last-child.next-medium {
border-top-left-radius: 3px !important;
border-bottom-left-radius: 3px !important;
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important; }
.next-input-group[dir="rtl"] > .next-input:last-child.next-large {
border-top-left-radius: 3px !important;
border-bottom-left-radius: 3px !important;
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important; }
.next-input-group[dir="rtl"] .next-input-group-addon {
/* stylelint-disable declaration-no-important */ }
.next-input-group[dir="rtl"] .next-input-group-addon:first-child,
.next-input-group[dir="rtl"] .next-input-group-addon:first-child > .next-input,
.next-input-group[dir="rtl"] .next-input-group-addon:first-child > * > .next-input {
border-bottom-left-radius: 0 !important;
border-top-left-radius: 0 !important; }
.next-input-group[dir="rtl"] .next-input-group-addon:first-child.next-small,
.next-input-group[dir="rtl"] .next-input-group-addon:first-child > .next-input.next-small,
.next-input-group[dir="rtl"] .next-input-group-addon:first-child > * > .next-input.next-small {
border-bottom-right-radius: 3px !important;
border-top-right-radius: 3px !important; }
.next-input-group[dir="rtl"] .next-input-group-addon:first-child.next-medium,
.next-input-group[dir="rtl"] .next-input-group-addon:first-child > .next-input.next-medium,
.next-input-group[dir="rtl"] .next-input-group-addon:first-child > * > .next-input.next-medium {
border-bottom-right-radius: 3px !important;
border-top-right-radius: 3px !important; }
.next-input-group[dir="rtl"] .next-input-group-addon:first-child.next-large,
.next-input-group[dir="rtl"] .next-input-group-addon:first-child > .next-input.next-large,
.next-input-group[dir="rtl"] .next-input-group-addon:first-child > * > .next-input.next-large {
border-bottom-right-radius: 3px !important;
border-top-right-radius: 3px !important; }
.next-input-group[dir="rtl"] .next-input-group-addon:first-child > * {
margin-left: -1px;
border-bottom-left-radius: 0 !important;
border-top-left-radius: 0 !important; }
.next-input-group[dir="rtl"] .next-input-group-addon:last-child,
.next-input-group[dir="rtl"] .next-input-group-addon:last-child > .next-input,
.next-input-group[dir="rtl"] .next-input-group-addon:last-child > * > .next-input {
border-bottom-right-radius: 0 !important;
border-top-right-radius: 0 !important; }
.next-input-group[dir="rtl"] .next-input-group-addon:last-child.next-small,
.next-input-group[dir="rtl"] .next-input-group-addon:last-child > .next-input.next-small,
.next-input-group[dir="rtl"] .next-input-group-addon:last-child > * > .next-input.next-small {
border-bottom-left-radius: 3px !important;
border-top-left-radius: 3px !important; }
.next-input-group[dir="rtl"] .next-input-group-addon:last-child.next-medium,
.next-input-group[dir="rtl"] .next-input-group-addon:last-child > .next-input.next-medium,
.next-input-group[dir="rtl"] .next-input-group-addon:last-child > * > .next-input.next-medium {
border-bottom-left-radius: 3px !important;
border-top-left-radius: 3px !important; }
.next-input-group[dir="rtl"] .next-input-group-addon:last-child.next-large,
.next-input-group[dir="rtl"] .next-input-group-addon:last-child > .next-input.next-large,
.next-input-group[dir="rtl"] .next-input-group-addon:last-child > * > .next-input.next-large {
border-bottom-left-radius: 3px !important;
border-top-left-radius: 3px !important; }
.next-input-group[dir="rtl"] .next-input-group-addon:last-child > * {
margin-right: -1px;
border-bottom-right-radius: 0 !important;
border-top-right-radius: 0 !important; }
.next-input-group[dir="rtl"] .next-input-group-text:first-child {
border-right-width: 1px;
border-left: 0; }
.next-input-group[dir="rtl"] .next-input-group-text:last-child {
border-left-width: 1px;
border-right: 0; }
.next-select {
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: inline-block;
font-size: 0;
vertical-align: middle;
/* Select trigger */
/* 在搜索框未激活时,将 input 的 color 置为透明 */
/* ISSUE: 在 IE11 中,<input readonly/> 仍然会显示光标, 要隐藏掉 */
/*
&.next-no-search {
.next-select-trigger-search input {
color: $color-transparent;
}
}
*/
/* 弹层 */
/* 全选按钮 */
/* -------------- IE polyfill -------------- */
/* 根据最新的数据,在中国,PC 端的 IE9 份额为 2%, */
/* 所以不应该因为 IE9 而不使用 flex,而是应该做降级 polyfill */
/* @see http://gs.statcounter.com/ */
/* IE10、IE11 虽然支持 flex,但还是会有各种各样奇奇怪怪的问题 */ }
.next-select *,
.next-select *:before,
.next-select *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-select-trigger {
min-width: 100px;
outline: 0;
-webkit-transition: all 100ms linear;
transition: all 100ms linear; }
.next-select-trigger .next-input-label {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto; }
.next-select-trigger .next-select-values {
display: block;
width: 100%;
-webkit-box-flex: 1;
-ms-flex: 1 1 0px;
flex: 1 1 0;
overflow: hidden; }
.next-select-trigger .next-select-values > em {
font-style: inherit; }
.next-select-trigger .next-select-values input {
padding-left: 0;
padding-right: 0; }
.next-select-trigger .next-input-control {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto; }
.next-select-trigger .next-input-control > * {
display: inline-block;
width: auto; }
.next-select-trigger .next-input-control > .next-select-arrow {
padding-right: 0; }
.next-select-trigger .next-input.next-disabled em {
color: #CCCCCC; }
.next-select-trigger .next-input.next-disabled .next-select-arrow {
cursor: not-allowed; }
.next-select-trigger .next-select-clear {
display: none; }
.next-select-trigger.next-has-clear:hover .next-select-clear {
display: inline-block; }
.next-select-trigger.next-has-clear:hover .next-select-arrow {
display: none; }
.next-select .next-select-inner {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
min-width: 100px;
outline: 0;
color: #333333; }
.next-select .next-select-inner .next-tag {
line-height: 1;
margin-right: 4px;
margin-bottom: 3px;
padding-left: 0px;
padding-right: 0px; }
.next-select .next-select-inner .next-input-inner {
width: auto; }
.next-select-trigger-search {
position: relative;
display: inline-block;
vertical-align: top;
overflow: hidden;
width: 100%;
max-width: 100%; }
.next-select-trigger-search > input, .next-select-trigger-search > span {
display: block;
font-size: inherit;
font-family: inherit;
letter-spacing: inherit;
white-space: nowrap;
overflow: hidden; }
.next-select-trigger-search input {
position: absolute;
background-color: transparent;
width: 100%;
height: 100% !important;
z-index: 1;
left: 0;
border: 0;
outline: 0;
margin: 0;
padding: 0;
cursor: inherit; }
.next-select-trigger-search > span {
position: relative;
visibility: hidden;
white-space: pre;
max-width: 100%;
/* 在 table 布局中,100% 并没有什么x用 */
z-index: -1; }
.next-select-single {
/* 搜索框激活时,展开后不显示值,只显示搜索框 */
/* 搜索框未激活,或者menu未展开,如果有值,则不显示搜索(placeholder) */ }
.next-select-single.next-no-search {
cursor: pointer; }
.next-select-single.next-has-search.next-active .next-select-values > em {
display: none; }
.next-select-single.next-no-search .next-select-values > em + .next-select-trigger-search, .next-select-single.next-inactive .next-select-values > em + .next-select-trigger-search {
width: 1px;
opacity: 0;
/* stylelint-disable */
filter: alpha(opacity=0);
/* for IE 9 */
/* stylelint-enable */ }
.next-select-single .next-select-values {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center; }
.next-select-single .next-select-values > em {
vertical-align: middle;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; }
.next-select-multiple .next-select-compact {
position: relative;
white-space: nowrap; }
.next-select-multiple .next-select-compact .next-select-trigger-search {
width: auto; }
.next-select-multiple .next-select-compact .next-select-tag-compact {
position: absolute;
top: 0;
right: 0;
z-index: 1;
padding: 0 4px 0 16px;
color: #333333;
background: linear-gradient(90deg, transparent, #FFFFFF 10px); }
.next-select-multiple .next-disabled .next-select-tag-compact {
background: linear-gradient(90deg, transparent, #F7F8FA 10px); }
.next-select-multiple, .next-select-tag {
/* 如果有值,则搜索框变为1px */ }
.next-select-multiple .next-select-values, .next-select-tag .next-select-values {
/* Tag 有 3px 的 margin-bottom,所以包裹 Tag 的容器要作一下处理 */
margin-bottom: -3px;
height: auto !important; }
.next-select-multiple .next-select-trigger-search, .next-select-tag .next-select-trigger-search {
margin-bottom: 3px; }
.next-select-multiple .next-tag + .next-select-trigger-search, .next-select-tag .next-tag + .next-select-trigger-search {
width: auto;
min-width: 1px;
/* 保留一个光标的宽度 */ }
.next-select-multiple .next-input, .next-select-tag .next-input {
height: auto;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: start; }
.next-select-multiple.next-small .next-select-values, .next-select-tag.next-small .next-select-values {
min-height: 18px;
padding-top: 2px;
padding-bottom: 2px;
line-height: 14px; }
.next-select-multiple.next-small .next-select-values-compact, .next-select-tag.next-small .next-select-values-compact {
height: 20px !important; }
.next-select-multiple.next-small .next-tag, .next-select-tag.next-small .next-tag {
border: 0;
padding-top: 0px;
padding-bottom: 0px;
height: 14px; }
.next-select-multiple.next-small .next-tag .next-tag-body, .next-select-multiple.next-small .next-tag .next-tag-close-btn, .next-select-tag.next-small .next-tag .next-tag-body, .next-select-tag.next-small .next-tag .next-tag-close-btn {
line-height: 14px; }
.next-select-multiple.next-small .next-tag-body, .next-select-tag.next-small .next-tag-body {
line-height: 14px; }
.next-select-multiple.next-small .next-input-label, .next-select-multiple.next-small .next-input-control, .next-select-multiple.next-small .next-select-tag-compact, .next-select-tag.next-small .next-input-label, .next-select-tag.next-small .next-input-control, .next-select-tag.next-small .next-select-tag-compact {
line-height: 18px; }
.next-select-multiple.next-medium .next-select-values, .next-select-tag.next-medium .next-select-values {
min-height: 26px;
padding-top: 3px;
padding-bottom: 3px;
line-height: 20px; }
.next-select-multiple.next-medium .next-select-values-compact, .next-select-tag.next-medium .next-select-values-compact {
height: 28px !important; }
.next-select-multiple.next-medium .next-tag, .next-select-tag.next-medium .next-tag {
padding-top: 1px;
padding-bottom: 1px;
height: 20px; }
.next-select-multiple.next-medium .next-tag .next-tag-body, .next-select-multiple.next-medium .next-tag .next-tag-close-btn, .next-select-tag.next-medium .next-tag .next-tag-body, .next-select-tag.next-medium .next-tag .next-tag-close-btn {
line-height: 18px; }
.next-select-multiple.next-medium .next-input-label, .next-select-multiple.next-medium .next-input-control, .next-select-multiple.next-medium .next-select-tag-compact, .next-select-tag.next-medium .next-input-label, .next-select-tag.next-medium .next-input-control, .next-select-tag.next-medium .next-select-tag-compact {
line-height: 26px; }
.next-select-multiple.next-large .next-select-values, .next-select-tag.next-large .next-select-values {
min-height: 38px;
padding-top: 7px;
padding-bottom: 7px;
line-height: 24px; }
.next-select-multiple.next-large .next-select-values-compact, .next-select-tag.next-large .next-select-values-compact {
height: 40px !important; }
.next-select-multiple.next-large .next-tag, .next-select-tag.next-large .next-tag {
padding-top: 3px;
padding-bottom: 3px;
height: 24px; }
.next-select-multiple.next-large .next-tag .next-tag-body, .next-select-multiple.next-large .next-tag .next-tag-close-btn, .next-select-tag.next-large .next-tag .next-tag-body, .next-select-tag.next-large .next-tag .next-tag-close-btn {
line-height: 18px; }
.next-select-multiple.next-large .next-input-label, .next-select-multiple.next-large .next-input-control, .next-select-multiple.next-large .next-select-tag-compact, .next-select-tag.next-large .next-input-label, .next-select-tag.next-large .next-input-control, .next-select-tag.next-large .next-select-tag-compact {
line-height: 38px; }
.next-select-auto-complete {
width: 160px; }
.next-select-auto-complete .next-input {
width: 100%;
/* table-cell 下 margin 无效 */ }
.next-select-auto-complete .next-input .next-input-hint-wrap {
padding-right: 1px; }
.next-select-auto-complete .next-input .next-select-arrow {
padding-left: 0; }
.next-select.next-active .next-select-arrow .next-icon-arrow-down {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg); }
.next-select .next-select-unfold-icon::before {
content: ""; }
.next-select-symbol-fold::before {
content: "\E63D"; }
.next-select-arrow {
cursor: pointer;
width: auto !important;
text-align: center;
-webkit-transition: all 100ms linear;
transition: all 100ms linear;
/* transform-origin: center 41.8%; // icon 图像中心 */ }
.next-select-popup-wrap {
-webkit-animation-duration: 300ms;
animation-duration: 300ms;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
padding: 0px 0; }
.next-select-spacing-tb {
padding: 0px 0; }
.next-select-menu-wrapper {
max-height: 260px;
overflow: auto;
border: 1px solid #DCDEE3;
border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none; }
.next-select-menu-wrapper .next-select-menu {
max-height: none;
border: none; }
.next-select-menu {
max-height: 260px;
overflow: auto;
/* autoComplete 没有选项时 menu 不显示 */ }
.next-select-menu .next-select-menu-empty-content {
padding-left: 8px;
padding-right: 8px;
color: #999999; }
.next-select-menu.next-select-auto-complete-menu.next-select-menu-empty {
display: none; }
.next-select-menu .next-menu-item-text .next-icon {
vertical-align: middle; }
.next-select-all {
display: block;
cursor: pointer;
padding: 0 8px;
margin: 0 12px 8px;
border-bottom: 1px solid #DCDEE3; }
.next-select-all:hover {
color: #3E71F7; }
.next-select-all .next-menu-icon-selected.next-icon {
display: inline-block !important;
top: initial;
color: #5584FF; }
.next-select-highlight {
color: #5584FF;
font-size: 12px; }
.next-select-in-ie.next-select-trigger .next-select-values {
/* 在 table 布局中,overflow: hidden 会导致负的 margin 失效 */
overflow: visible; }
.next-select-in-ie.next-select-trigger .next-input-control, .next-select-in-ie.next-select-trigger .next-input-label {
width: 1px; }
.next-select-in-ie.next-select-trigger .next-input-control > * {
display: table-cell;
width: 1%; }
.next-select-in-ie.next-select-trigger .next-select-arrow {
display: table-cell; }
.next-select-in-ie.next-select-trigger .next-select-clear {
display: none; }
.next-select-in-ie.next-select-trigger.next-select-multiple .next-select-inner, .next-select-in-ie.next-select-trigger.next-select-tag .next-select-inner {
vertical-align: top; }
.next-select-in-ie.next-select-trigger .next-select-inner {
display: inline-table; }
.next-select-in-ie.next-select-trigger.next-select-single .next-select-values {
display: inline-table; }
.next-select-in-ie.next-select-trigger.next-select-single .next-input.next-small .next-select-values {
line-height: 20px; }
.next-select-in-ie.next-select-trigger.next-select-single .next-input.next-medium .next-select-values {
line-height: 28px; }
.next-select-in-ie.next-select-trigger.next-select-single .next-input.next-large .next-select-values {
line-height: 40px; }
.next-select-in-ie.next-select-trigger .next-select-trigger-search > span {
max-width: 100px; }
.next-select-in-ie.next-select-trigger.next-select-single {
/* 搜索框未激活,或者menu未展开,如果有值,则不显示搜索(placeholder) */ }
.next-select-in-ie.next-select-trigger.next-select-single.next-select-in-ie-fixwidth .next-select-values {
position: relative; }
.next-select-in-ie.next-select-trigger.next-select-single.next-select-in-ie-fixwidth .next-select-values > em {
position: absolute;
display: inline-block;
height: 100%;
line-height: 1;
vertical-align: middle;
overflow: hidden;
left: 4px;
right: 0;
top: 30%; }
.next-select-in-ie.next-select-trigger.next-select-single.next-no-search .next-select-values > em + .next-select-trigger-search, .next-select-in-ie.next-select-trigger.next-select-single.next-inactive .next-select-values > em + .next-select-trigger-search {
/* stylelint-disable */
filter: alpha(opacity=0);
/* for IE 9 */
/* stylelint-enable */
font-size: 0; }
.next-select-in-ie.next-select-trigger.next-no-search .next-select-trigger-search input {
color: inherit; }
@media screen and (-webkit-min-device-pixel-ratio: 0) {
.next-select-multiple .next-select-compact .next-select-tag-compact {
background: linear-gradient(90deg, rgba(255, 255, 255, 0), #FFFFFF 10px); }
.next-select-multiple .next-disabled .next-select-tag-compact {
background: linear-gradient(90deg, rgba(255, 255, 255, 0), #F7F8FA 10px); } }
.next-select.next-select-multiple[dir='rtl'] .next-select-compact .next-select-tag-compact {
left: 0;
right: auto;
padding: 0 16px 0 4px;
background: linear-gradient(270deg, rgba(255, 255, 255, 0), #FFFFFF 10px); }
.next-calendar {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-calendar *,
.next-calendar *:before,
.next-calendar *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-calendar table {
border-collapse: collapse;
border-spacing: 0; }
.next-calendar td,
.next-calendar th {
padding: 0; }
@-webkit-keyframes cellZoomIn {
0% {
-webkit-transform: scale(0.5);
transform: scale(0.5); }
100% {
-webkit-transform: scale(1);
transform: scale(1); } }
@keyframes cellZoomIn {
0% {
-webkit-transform: scale(0.5);
transform: scale(0.5); }
100% {
-webkit-transform: scale(1);
transform: scale(1); } }
@-webkit-keyframes cellHover {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@keyframes cellHover {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@-webkit-keyframes enterToLeft {
0% {
-webkit-transform: translate(-40%);
transform: translate(-40%);
opacity: 0; }
50% {
opacity: .6; }
100% {
opacity: 1;
-webkit-transform: translate(0%);
transform: translate(0%); } }
@keyframes enterToLeft {
0% {
-webkit-transform: translate(-40%);
transform: translate(-40%);
opacity: 0; }
50% {
opacity: .6; }
100% {
opacity: 1;
-webkit-transform: translate(0%);
transform: translate(0%); } }
@-webkit-keyframes enterToRight {
0% {
-webkit-transform: translate(40%);
transform: translate(40%);
opacity: 0; }
50% {
opacity: .6; }
100% {
opacity: 1;
-webkit-transform: translate(0%);
transform: translate(0%); } }
@keyframes enterToRight {
0% {
-webkit-transform: translate(40%);
transform: translate(40%);
opacity: 0; }
50% {
opacity: .6; }
100% {
opacity: 1;
-webkit-transform: translate(0%);
transform: translate(0%); } }
.next-calendar-fullscreen .next-calendar-header, .next-calendar-card .next-calendar-header {
text-align: right; }
.next-calendar-fullscreen .next-calendar-header .next-select, .next-calendar-card .next-calendar-header .next-select {
margin-right: 4px;
vertical-align: top; }
.next-calendar-fullscreen .next-calendar-header .next-menu, .next-calendar-card .next-calendar-header .next-menu {
text-align: left; }
.next-calendar-fullscreen .next-calendar-header {
margin-bottom: 8px; }
.next-calendar-card .next-calendar-header {
margin-bottom: 8px; }
.next-calendar-panel-header {
position: relative;
background: #5584FF;
margin-bottom: 8px;
border-bottom: 1px solid transparent; }
.next-calendar-panel-header-left, .next-calendar-panel-header-right, .next-calendar-panel-header-full {
height: 32px;
line-height: 32px; }
.next-calendar-panel-header-left .next-calendar-btn, .next-calendar-panel-header-right .next-calendar-btn, .next-calendar-panel-header-full .next-calendar-btn {
vertical-align: top;
font-weight: bold;
margin: 0 4px;
background: transparent;
border-color: transparent; }
.next-calendar-panel-header-left .next-calendar-btn, .next-calendar-panel-header-left .next-calendar-btn:link, .next-calendar-panel-header-left .next-calendar-btn:visited, .next-calendar-panel-header-left .next-calendar-btn.visited, .next-calendar-panel-header-right .next-calendar-btn, .next-calendar-panel-header-right .next-calendar-btn:link, .next-calendar-panel-header-right .next-calendar-btn:visited, .next-calendar-panel-header-right .next-calendar-btn.visited, .next-calendar-panel-header-full .next-calendar-btn, .next-calendar-panel-header-full .next-calendar-btn:link, .next-calendar-panel-header-full .next-calendar-btn:visited, .next-calendar-panel-header-full .next-calendar-btn.visited {
color: #FFFFFF; }
.next-calendar-panel-header-left .next-calendar-btn:focus, .next-calendar-panel-header-left .next-calendar-btn:hover, .next-calendar-panel-header-left .next-calendar-btn.hover, .next-calendar-panel-header-right .next-calendar-btn:focus, .next-calendar-panel-header-right .next-calendar-btn:hover, .next-calendar-panel-header-right .next-calendar-btn.hover, .next-calendar-panel-header-full .next-calendar-btn:focus, .next-calendar-panel-header-full .next-calendar-btn:hover, .next-calendar-panel-header-full .next-calendar-btn.hover {
color: #FFFFFF;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-calendar-panel-header-left .next-calendar-btn:active, .next-calendar-panel-header-left .next-calendar-btn.active, .next-calendar-panel-header-right .next-calendar-btn:active, .next-calendar-panel-header-right .next-calendar-btn.active, .next-calendar-panel-header-full .next-calendar-btn:active, .next-calendar-panel-header-full .next-calendar-btn.active {
color: #FFFFFF;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-calendar-panel-header-left, .next-calendar-panel-header-right {
display: inline-block;
width: 50%;
text-align: center; }
.next-calendar-panel-header-full {
width: 100%;
text-align: center; }
.next-calendar-panel-menu {
max-height: 210px;
overflow: auto;
text-align: left; }
.next-calendar-btn {
cursor: pointer;
padding: 0;
margin: 0;
border: 0;
background: transparent;
outline: none;
height: 100%; }
.next-calendar-btn > .next-icon.next-icon:before,
.next-calendar-btn > .next-icon.next-icon .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-calendar-btn .next-icon {
margin-left: 4px; }
.next-calendar-btn-prev-year, .next-calendar-btn-prev-month, .next-calendar-btn-prev-decade, .next-calendar-btn-next-month, .next-calendar-btn-next-year, .next-calendar-btn-next-decade {
position: absolute;
top: 0;
background: transparent;
border-color: transparent; }
.next-calendar-btn-prev-year, .next-calendar-btn-prev-year:link, .next-calendar-btn-prev-year:visited, .next-calendar-btn-prev-year.visited, .next-calendar-btn-prev-month, .next-calendar-btn-prev-month:link, .next-calendar-btn-prev-month:visited, .next-calendar-btn-prev-month.visited, .next-calendar-btn-prev-decade, .next-calendar-btn-prev-decade:link, .next-calendar-btn-prev-decade:visited, .next-calendar-btn-prev-decade.visited, .next-calendar-btn-next-month, .next-calendar-btn-next-month:link, .next-calendar-btn-next-month:visited, .next-calendar-btn-next-month.visited, .next-calendar-btn-next-year, .next-calendar-btn-next-year:link, .next-calendar-btn-next-year:visited, .next-calendar-btn-next-year.visited, .next-calendar-btn-next-decade, .next-calendar-btn-next-decade:link, .next-calendar-btn-next-decade:visited, .next-calendar-btn-next-decade.visited {
color: #FFFFFF; }
.next-calendar-btn-prev-year:focus, .next-calendar-btn-prev-year:hover, .next-calendar-btn-prev-year.hover, .next-calendar-btn-prev-month:focus, .next-calendar-btn-prev-month:hover, .next-calendar-btn-prev-month.hover, .next-calendar-btn-prev-decade:focus, .next-calendar-btn-prev-decade:hover, .next-calendar-btn-prev-decade.hover, .next-calendar-btn-next-month:focus, .next-calendar-btn-next-month:hover, .next-calendar-btn-next-month.hover, .next-calendar-btn-next-year:focus, .next-calendar-btn-next-year:hover, .next-calendar-btn-next-year.hover, .next-calendar-btn-next-decade:focus, .next-calendar-btn-next-decade:hover, .next-calendar-btn-next-decade.hover {
color: #FFFFFF;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-calendar-btn-prev-year:active, .next-calendar-btn-prev-year.active, .next-calendar-btn-prev-month:active, .next-calendar-btn-prev-month.active, .next-calendar-btn-prev-decade:active, .next-calendar-btn-prev-decade.active, .next-calendar-btn-next-month:active, .next-calendar-btn-next-month.active, .next-calendar-btn-next-year:active, .next-calendar-btn-next-year.active, .next-calendar-btn-next-decade:active, .next-calendar-btn-next-decade.active {
color: #FFFFFF;
background: transparent;
border-color: transparent;
text-decoration: none; }
.next-calendar-btn-prev-decade, .next-calendar-btn-prev-year {
left: 8px; }
.next-calendar-btn-prev-month {
left: 28px; }
.next-calendar-btn-next-month {
right: 28px; }
.next-calendar-btn-next-year, .next-calendar-btn-next-decade {
right: 8px; }
.next-calendar-fullscreen .next-calendar-th {
text-align: right;
color: #333333;
font-size: 16px;
font-weight: bold;
padding-right: 12px;
padding-bottom: 4px; }
.next-calendar-fullscreen .next-calendar-cell {
font-size: 14px; }
.next-calendar-fullscreen .next-calendar-cell.next-selected .next-calendar-date,
.next-calendar-fullscreen .next-calendar-cell.next-selected .next-calendar-month {
font-weight: bold;
background: #DEE8FF;
color: #5584FF;
border-color: #5584FF; }
.next-calendar-fullscreen .next-calendar-cell.next-disabled .next-calendar-date,
.next-calendar-fullscreen .next-calendar-cell.next-disabled .next-calendar-month {
cursor: not-allowed;
background: #F7F8FA;
color: #CCCCCC;
border-color: #E6E7EB; }
.next-calendar-fullscreen .next-calendar-date, .next-calendar-fullscreen .next-calendar-month {
text-align: right;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin: 0px 4px;
padding: 4px 8px;
min-height: 80px;
border-top: 2px solid;
-webkit-transition: background 100ms linear;
transition: background 100ms linear;
background: #FFFFFF;
color: #333333;
border-color: #DCDEE3; }
.next-calendar-fullscreen .next-calendar-date:hover, .next-calendar-fullscreen .next-calendar-month:hover {
background: #DEE8FF;
color: #5584FF;
border-color: #5584FF; }
.next-calendar-fullscreen .next-calendar-cell-prev-month .next-calendar-date, .next-calendar-fullscreen .next-calendar-cell-next-month .next-calendar-date {
background: transparent;
color: #CCCCCC;
border-color: transparent; }
.next-calendar-fullscreen .next-calendar-cell-current .next-calendar-date,
.next-calendar-fullscreen .next-calendar-cell-current .next-calendar-month {
font-weight: bold;
background: #FFFFFF;
color: #5584FF;
border-color: #5584FF; }
.next-calendar-card .next-calendar-th,
.next-calendar-panel .next-calendar-th,
.next-calendar-range .next-calendar-th {
text-align: center;
color: #999999;
font-size: 12px;
font-weight: normal; }
.next-calendar-card .next-calendar-cell,
.next-calendar-panel .next-calendar-cell,
.next-calendar-range .next-calendar-cell {
text-align: center;
font-size: 12px; }
.next-calendar-card .next-calendar-cell.next-selected .next-calendar-date,
.next-calendar-card .next-calendar-cell.next-selected .next-calendar-month,
.next-calendar-card .next-calendar-cell.next-selected .next-calendar-year,
.next-calendar-panel .next-calendar-cell.next-selected .next-calendar-date,
.next-calendar-panel .next-calendar-cell.next-selected .next-calendar-month,
.next-calendar-panel .next-calendar-cell.next-selected .next-calendar-year,
.next-calendar-range .next-calendar-cell.next-selected .next-calendar-date,
.next-calendar-range .next-calendar-cell.next-selected .next-calendar-month,
.next-calendar-range .next-calendar-cell.next-selected .next-calendar-year {
-webkit-animation: cellZoomIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
animation: cellZoomIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
font-weight: bold;
background: #5584FF;
color: #FFFFFF;
border-color: #5584FF; }
.next-calendar-card .next-calendar-cell.next-disabled .next-calendar-date,
.next-calendar-card .next-calendar-cell.next-disabled .next-calendar-month,
.next-calendar-card .next-calendar-cell.next-disabled .next-calendar-year,
.next-calendar-panel .next-calendar-cell.next-disabled .next-calendar-date,
.next-calendar-panel .next-calendar-cell.next-disabled .next-calendar-month,
.next-calendar-panel .next-calendar-cell.next-disabled .next-calendar-year,
.next-calendar-range .next-calendar-cell.next-disabled .next-calendar-date,
.next-calendar-range .next-calendar-cell.next-disabled .next-calendar-month,
.next-calendar-range .next-calendar-cell.next-disabled .next-calendar-year {
cursor: not-allowed;
background: #F7F8FA;
color: #CCCCCC;
border-color: #F7F8FA; }
.next-calendar-card .next-calendar-cell.next-inrange .next-calendar-date,
.next-calendar-panel .next-calendar-cell.next-inrange .next-calendar-date,
.next-calendar-range .next-calendar-cell.next-inrange .next-calendar-date {
background: #DEE8FF;
color: #5584FF;
border-color: #DEE8FF; }
.next-calendar-card .next-calendar-date, .next-calendar-card .next-calendar-month, .next-calendar-card .next-calendar-year,
.next-calendar-panel .next-calendar-date,
.next-calendar-panel .next-calendar-month,
.next-calendar-panel .next-calendar-year,
.next-calendar-range .next-calendar-date,
.next-calendar-range .next-calendar-month,
.next-calendar-range .next-calendar-year {
text-align: center;
border: 1px solid;
background: #FFFFFF;
color: #666666;
border-color: #FFFFFF; }
.next-calendar-card .next-calendar-date:hover, .next-calendar-card .next-calendar-month:hover, .next-calendar-card .next-calendar-year:hover,
.next-calendar-panel .next-calendar-date:hover,
.next-calendar-panel .next-calendar-month:hover,
.next-calendar-panel .next-calendar-year:hover,
.next-calendar-range .next-calendar-date:hover,
.next-calendar-range .next-calendar-month:hover,
.next-calendar-range .next-calendar-year:hover {
cursor: pointer; }
.next-calendar-card .next-calendar-date:hover, .next-calendar-card .next-calendar-month:hover, .next-calendar-card .next-calendar-year:hover,
.next-calendar-panel .next-calendar-date:hover,
.next-calendar-panel .next-calendar-month:hover,
.next-calendar-panel .next-calendar-year:hover,
.next-calendar-range .next-calendar-date:hover,
.next-calendar-range .next-calendar-month:hover,
.next-calendar-range .next-calendar-year:hover {
background: #DEE8FF;
color: #5584FF;
border-color: #DEE8FF; }
.next-calendar-card .next-calendar-date,
.next-calendar-panel .next-calendar-date,
.next-calendar-range .next-calendar-date {
width: 24px;
height: 24px;
line-height: 22px;
margin: 4px auto;
border-radius: 3px; }
.next-calendar-card .next-calendar-month,
.next-calendar-panel .next-calendar-month,
.next-calendar-range .next-calendar-month {
width: 60px;
height: 24px;
line-height: 22px;
margin: 8px auto;
border-radius: 3px; }
.next-calendar-card .next-calendar-year,
.next-calendar-panel .next-calendar-year,
.next-calendar-range .next-calendar-year {
width: 48px;
height: 24px;
line-height: 22px;
margin: 8px auto;
border-radius: 3px; }
.next-calendar-card .next-calendar-cell-prev-month .next-calendar-date,
.next-calendar-panel .next-calendar-cell-prev-month .next-calendar-date,
.next-calendar-range .next-calendar-cell-prev-month .next-calendar-date {
background: #FFFFFF;
color: #CCCCCC;
border-color: #FFFFFF; }
.next-calendar-card .next-calendar-cell-next-month .next-calendar-date,
.next-calendar-panel .next-calendar-cell-next-month .next-calendar-date,
.next-calendar-range .next-calendar-cell-next-month .next-calendar-date {
background: #FFFFFF;
color: #CCCCCC;
border-color: #FFFFFF; }
.next-calendar-card .next-calendar-cell-current .next-calendar-date,
.next-calendar-card .next-calendar-cell-current .next-calendar-month,
.next-calendar-card .next-calendar-cell-current .next-calendar-year,
.next-calendar-panel .next-calendar-cell-current .next-calendar-date,
.next-calendar-panel .next-calendar-cell-current .next-calendar-month,
.next-calendar-panel .next-calendar-cell-current .next-calendar-year,
.next-calendar-range .next-calendar-cell-current .next-calendar-date,
.next-calendar-range .next-calendar-cell-current .next-calendar-month,
.next-calendar-range .next-calendar-cell-current .next-calendar-year {
font-weight: bold;
background: #FFFFFF;
color: #5584FF;
border-color: transparent; }
.next-calendar-panel.next-calendar-week .next-calendar-tbody tr {
cursor: pointer; }
.next-calendar-panel.next-calendar-week .next-calendar-tbody tr:hover .next-calendar-cell .next-calendar-date {
background: #DEE8FF;
color: #5584FF;
border-color: #DEE8FF; }
.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-cell.next-selected .next-calendar-date {
font-weight: normal;
background: transparent;
border-color: transparent; }
.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-week-active-date {
position: relative;
color: #5584FF; }
.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-week-active-date::before {
content: '';
position: absolute;
left: -1px;
top: -1px;
bottom: -1px;
right: -1px;
border: 1px solid;
background: #DEE8FF;
border-color: #DEE8FF;
border-radius: 3px; }
.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-week-active-date > span {
position: relative; }
.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-week-active-start,
.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-week-active-end {
color: #FFFFFF; }
.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-week-active-start::before,
.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-week-active-end::before {
background: #5584FF;
border-color: #5584FF; }
.next-calendar[dir="rtl"] .next-calendar-header {
text-align: left; }
.next-calendar[dir="rtl"] .next-calendar-header .next-select {
margin-right: 0;
margin-left: 4px; }
.next-calendar[dir="rtl"] .next-calendar-header .next-menu {
text-align: right; }
.next-calendar[dir="rtl"] .next-calendar-btn-prev-decade, .next-calendar[dir="rtl"] .next-calendar-btn-prev-year {
left: auto;
right: 8px; }
.next-calendar[dir="rtl"] .next-calendar-btn-prev-month {
left: auto;
right: 28px; }
.next-calendar[dir="rtl"] .next-calendar-btn-next-month {
right: auto;
left: 28px; }
.next-calendar[dir="rtl"] .next-calendar-btn-next-year, .next-calendar[dir="rtl"] .next-calendar-btn-next-decade {
right: auto;
left: 8px; }
.next-calendar-fullscreen[dir="rtl"] .next-calendar-th {
text-align: left;
padding-left: 12px;
padding-right: 0; }
.next-calendar-fullscreen[dir="rtl"] .next-calendar-date, .next-calendar-fullscreen[dir="rtl"] .next-calendar-month {
text-align: left; }
.next-calendar-range[dir="rtl"] .next-calendar-body-left, .next-calendar-range[dir="rtl"] .next-calendar-body-right {
float: right; }
.next-calendar-range[dir="rtl"] .next-calendar-body-left {
padding-right: 0;
padding-left: 8px; }
.next-calendar-range[dir="rtl"] .next-calendar-body-right {
padding-left: 0;
padding-right: 8px; }
.next-calendar {
/* range calendar */
/* --------------- */ }
.next-calendar-table {
width: 100%;
table-layout: fixed; }
.next-calendar-range .next-calendar-body-left, .next-calendar-range .next-calendar-body-right {
float: left;
width: 50%; }
.next-calendar-range .next-calendar-body-left {
padding-right: 8px; }
.next-calendar-range .next-calendar-body-right {
padding-left: 8px; }
.next-calendar-range .next-calendar-body:after {
visibility: hidden;
display: block;
height: 0;
font-size: 0;
content: ' ';
clear: both; }
.next-calendar-symbol-prev::before {
content: "\E61D"; }
.next-calendar-symbol-next::before {
content: "\E619"; }
.next-calendar-symbol-prev-super::before {
content: "\E659"; }
.next-calendar-symbol-next-super::before {
content: "\E65E"; }
.next-card *,
.next-card *:before,
.next-card *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-card, .next-card:before, .next-card:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-card[dir="rtl"] .next-card-extra {
left: 0;
right: auto; }
.next-card[dir="rtl"] .next-card-title:before {
right: 0;
left: auto; }
.next-card[dir="rtl"] .next-card-subtitle {
float: left;
padding-right: 8px;
padding-left: 0; }
.next-card[dir="rtl"] .next-card-head-show-bullet .next-card-title {
padding-left: 0;
padding-right: 8px; }
.next-card {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-card *,
.next-card *:before,
.next-card *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-card {
min-width: 100px;
border: 1px solid #DCDEE3;
border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
background: #FFFFFF;
overflow: hidden; }
.next-card-head {
background: #FFFFFF;
padding-left: 16px;
padding-right: 16px; }
.next-card-head-show-bullet .next-card-title {
padding-left: 8px; }
.next-card-head-show-bullet .next-card-title:before {
content: '';
display: inline-block;
height: 16px;
width: 3px;
background: #5584FF;
position: absolute;
left: 0;
top: calc(50% - 8px); }
.next-card-head-main {
position: relative;
margin-top: 8px;
margin-bottom: 0px;
height: 40px;
line-height: 40px; }
.next-card-title {
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 80%;
height: 100%;
color: #333333;
font-size: 16px;
font-weight: normal; }
.next-card-subtitle {
font-size: 12px;
color: #666666;
padding-left: 8px; }
.next-card-extra {
position: absolute;
right: 0;
top: 0;
height: 100%;
font-size: 12px;
color: #5584FF; }
.next-card-body {
padding-bottom: 12px;
padding-left: 16px;
padding-right: 16px; }
.next-card-show-divider .next-card-head-main {
border-bottom: 1px solid #E6E7EB; }
.next-card-show-divider .next-card-body {
padding-top: 12px; }
.next-card-hide-divider .next-card-body {
padding-top: 0px; }
.next-card—free {
padding: 0; }
.next-card-content {
overflow: hidden;
-webkit-transition: all 300ms ease;
transition: all 300ms ease;
position: relative; }
.next-card-footer .next-icon {
-webkit-transition: all 100ms linear;
transition: all 100ms linear; }
.next-card-footer .next-icon.expand {
-webkit-transform-origin: 50% 47%;
-ms-transform-origin: 50% 47%;
transform-origin: 50% 47%;
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg); }
.next-card-header {
background: #FFFFFF;
padding: 0 16px;
margin-bottom: 12px;
margin-top: 12px; }
.next-card-media,
.next-card-media > * {
display: block;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
-o-object-fit: cover;
object-fit: cover;
width: 100%; }
.next-card-header-titles {
overflow: hidden; }
.next-card-header-extra {
float: right;
text-align: right; }
.next-card-header-extra .next--btn {
margin-left: 12px;
vertical-align: middle; }
.next-card-header-title {
color: #333333;
font-size: 16px;
font-weight: normal;
line-height: 1.5; }
.next-card-header-subtitle {
font-size: 12px;
color: #666666; }
.next-card-actions {
display: block;
padding-left: 16px;
padding-right: 16px;
padding-top: 12px;
padding-bottom: 12px; }
.next-card-actions .next-btn:not(:last-child) {
margin-right: 12px;
vertical-align: middle; }
.next-card-divider {
border-style: none;
width: 100%;
margin: 0;
position: relative; }
.next-card-divider::before {
content: '';
display: block;
border-bottom: 1px solid #E6E7EB; }
.next-card-divider--inset {
padding: 0 16px; }
.next-card-content-container {
margin-top: 12px;
padding-bottom: 12px;
padding-left: 16px;
padding-right: 16px;
font-size: 12px;
line-height: 1.5;
color: #666666; }
.next-cascader {
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: inline-block;
overflow: auto;
border: 1px solid #DCDEE3;
border-radius: 3px; }
.next-cascader *,
.next-cascader *:before,
.next-cascader *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-cascader-inner:after {
visibility: hidden;
display: block;
height: 0;
font-size: 0;
content: ' ';
clear: both; }
.next-cascader-menu-wrapper {
float: left;
overflow: auto;
width: 100px;
height: 192px;
overflow-x: hidden;
overflow-y: auto; }
.next-cascader-menu-wrapper + .next-cascader-menu-wrapper {
border-left: 1px solid #DCDEE3; }
.next-cascader-menu {
position: relative;
padding: 0;
border: none;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
min-width: auto;
min-height: 100%; }
.next-cascader-menu.next-has-right-border {
border-right: 1px solid #DCDEE3; }
.next-cascader-menu-item.next-expanded {
color: #333333;
background-color: #F2F3F7; }
.next-cascader-menu-icon-right {
position: absolute;
top: 0;
right: 10px;
color: #666666; }
.next-cascader-menu-icon-right:hover {
color: #333333; }
.next-cascader-menu-icon-expand.next-icon:before,
.next-cascader-menu-icon-expand.next-icon .next-icon-remote {
width: 8px;
font-size: 8px;
line-height: inherit; }
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
.next-cascader-menu-icon-expand.next-icon {
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
margin-left: -4px;
margin-right: -4px; }
.next-cascader-menu-icon-expand.next-icon:before {
width: 16px;
font-size: 16px; } }
.next-cascader-menu-icon-loading.next-icon:before,
.next-cascader-menu-icon-loading.next-icon .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-cascader-menu-item.next-expanded .next-cascader-menu-icon-right {
color: #333333; }
.next-cascader-menu-item.next-expanded .next-cascader-menu-icon-loading {
color: #5584FF; }
.next-cascader-filtered-list {
height: 192px;
padding: 0;
border: none;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
overflow: auto; }
.next-cascader-filtered-list .next-menu-item-inner {
overflow: visible; }
.next-cascader-filtered-item em {
color: #5584FF;
font-style: normal; }
.next-cascader[dir="rtl"] .next-cascader-menu-wrapper {
float: right;
border-left: none;
border-right: 1px solid #DCDEE3; }
.next-cascader[dir="rtl"] .next-cascader-menu-wrapper:first-child {
border-right: none; }
.next-cascader[dir="rtl"] .next-cascader-menu.next-has-right-border {
border-right: none;
border-left: 1px solid #DCDEE3; }
.next-cascader[dir="rtl"] .next-cascader-menu-icon-right {
right: auto;
left: 10px; }
.next-cascader-select {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-cascader-select *,
.next-cascader-select *:before,
.next-cascader-select *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-cascader-select-dropdown {
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid #DCDEE3;
border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none; }
.next-cascader-select-dropdown *,
.next-cascader-select-dropdown *:before,
.next-cascader-select-dropdown *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-cascader-select-dropdown .next-cascader {
display: block;
border: none;
-webkit-box-shadow: none;
box-shadow: none; }
.next-cascader-select-not-found {
padding: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
overflow: auto;
color: #999999; }
.next-cascader-select-not-found .next-menu-item:hover {
color: #999999;
/* TODO */
background: #FFFFFF;
cursor: default; }
.next-collapse[dir=rtl] .next-collapse-panel-title {
padding: 8px 28px 8px 0; }
.next-collapse[dir=rtl] .next-collapse-panel-icon {
left: inherit;
right: 12px;
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
margin-left: 0px;
margin-right: 0px; }
.next-collapse[dir=rtl] .next-collapse-panel-icon:before,
.next-collapse[dir=rtl] .next-collapse-panel-icon .next-icon-remote {
width: 8px;
font-size: 8px;
line-height: inherit; }
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
.next-collapse[dir=rtl] .next-collapse-panel-icon {
-webkit-transform: scale(0.5) rotate(180deg);
-ms-transform: scale(0.5) rotate(180deg);
transform: scale(0.5) rotate(180deg);
margin-left: -4px;
margin-right: -4px; }
.next-collapse[dir=rtl] .next-collapse-panel-icon:before {
width: 16px;
font-size: 16px; } }
/* put your code here */
.next-collapse {
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid #DCDEE3;
border-radius: 3px; }
.next-collapse *,
.next-collapse *:before,
.next-collapse *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-collapse:focus,
.next-collapse *:focus {
outline: 0; }
.next-collapse-panel:not(:first-child) {
border-top: 1px solid #DCDEE3; }
.next-collapse .next-collapse-panel-icon {
position: absolute;
color: #333333;
-webkit-transition: -webkit-transform 100ms linear;
transition: -webkit-transform 100ms linear;
transition: transform 100ms linear;
transition: transform 100ms linear, -webkit-transform 100ms linear;
left: 12px;
margin-top: -2px;
margin-left: 0px;
margin-right: 0px; }
.next-collapse .next-collapse-panel-icon:before,
.next-collapse .next-collapse-panel-icon .next-icon-remote {
width: 8px;
font-size: 8px;
line-height: inherit; }
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
.next-collapse .next-collapse-panel-icon {
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
margin-left: -4px;
margin-right: -4px; }
.next-collapse .next-collapse-panel-icon:before {
width: 16px;
font-size: 16px; } }
.next-collapse-panel-title {
position: relative;
line-height: 20px;
background: #F2F3F7;
font-size: 14px;
font-weight: normal;
color: #333333;
cursor: pointer;
padding: 8px 0 8px 28px;
-webkit-transition: background 100ms linear;
transition: background 100ms linear; }
.next-collapse-panel-title:hover {
background: #EBECF0;
color: #333333;
font-weight: normal; }
.next-collapse-panel-title:hover .next-collapse-panel-icon {
color: #333333; }
.next-collapse-panel-content {
height: 0;
padding: 0 16px;
background: #FFFFFF;
font-size: 12px;
color: #666666;
-webkit-transition: all 300ms ease;
transition: all 300ms ease;
opacity: 0; }
.next-collapse-panel-expanded > .next-collapse-panel-content {
display: block;
padding: 12px 16px;
height: auto;
opacity: 1; }
.next-collapse .next-collapse-unfold-icon::before {
content: ""; }
.next-collapse-panel-hidden > .next-collapse-panel-content {
overflow: hidden; }
.next-collapse .next-collapse-panel-icon::before {
content: "\E619"; }
.next-collapse .next-collapse-panel-icon.next-collapse-panel-icon-expanded {
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
margin-left: 0px;
margin-right: 0px; }
.next-collapse .next-collapse-panel-icon.next-collapse-panel-icon-expanded:before,
.next-collapse .next-collapse-panel-icon.next-collapse-panel-icon-expanded .next-icon-remote {
width: 8px;
font-size: 8px;
line-height: inherit; }
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
.next-collapse .next-collapse-panel-icon.next-collapse-panel-icon-expanded {
-webkit-transform: scale(0.5) rotate(90deg);
-ms-transform: scale(0.5) rotate(90deg);
transform: scale(0.5) rotate(90deg);
margin-left: -4px;
margin-right: -4px; }
.next-collapse .next-collapse-panel-icon.next-collapse-panel-icon-expanded:before {
width: 16px;
font-size: 16px; } }
.next-collapse-disabled {
border-color: #E6E7EB; }
.next-collapse-panel-disabled:not(:first-child) {
border-color: #E6E7EB; }
.next-collapse-panel-disabled > .next-collapse-panel-title {
cursor: not-allowed;
color: #CCCCCC;
background: #F2F3F7; }
.next-collapse-panel-disabled .next-collapse-panel-icon {
color: #CCCCCC; }
.next-collapse-panel-disabled .next-collapse-panel-title:hover {
font-weight: normal; }
.next-collapse-panel-disabled .next-collapse-panel-title:hover .next-collapse-panel-icon {
color: #CCCCCC; }
.next-collapse-panel-disabled:hover {
color: #CCCCCC;
background: #F2F3F7; }
.next-time-picker-menu {
float: left;
text-align: center; }
.next-time-picker-menu:not(:last-child) {
border-right: 1px solid #C4C6CF; }
.next-time-picker-menu-title {
cursor: default;
height: 28px;
line-height: 28px;
font-size: 12px;
font-weight: normal;
color: #999999;
background: #FFFFFF; }
.next-time-picker-menu ul {
position: relative;
overflow-y: auto;
list-style: none;
margin: 0;
padding: 0;
font-size: 12px;
height: 196px; }
.next-time-picker-menu-item {
cursor: pointer;
height: 28px;
line-height: 28px;
-webkit-transition: background 100ms linear;
transition: background 100ms linear;
color: #666666;
background: #FFFFFF;
outline: none; }
.next-time-picker-menu-item:hover {
color: #333333;
background: #F2F3F7; }
.next-time-picker-menu-item.next-selected {
font-weight: bold;
color: #666666;
background: #F2F3F7; }
.next-time-picker-menu-item.next-disabled {
cursor: not-allowed;
color: #CCCCCC;
background: #FFFFFF; }
.next-time-picker-panel {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-time-picker-panel *,
.next-time-picker-panel *:before,
.next-time-picker-panel *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-time-picker-panel:after {
visibility: hidden;
display: block;
height: 0;
font-size: 0;
content: ' ';
clear: both; }
.next-time-picker-panel-header {
border-bottom: 1px solid #DCDEE3; }
.next-time-picker-panel-input.next-input {
width: 100%;
padding: 6px;
border-color: transparent;
vertical-align: middle; }
.next-time-picker-panel-col-3 .next-time-picker-menu {
width: 33.33333%; }
.next-time-picker-panel-col-2 .next-time-picker-menu {
width: 50%; }
.next-time-picker-panel-col-1 .next-time-picker-menu {
width: 100%; }
.next-time-picker-body[dir="rtl"] .next-time-picker-menu {
float: right; }
.next-time-picker-body[dir="rtl"] .next-time-picker-menu:not(:last-child) {
border-right: none;
border-left: 1px solid #C4C6CF; }
.next-time-picker {
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: inline-block;
width: 200px; }
.next-time-picker *,
.next-time-picker *:before,
.next-time-picker *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-time-picker-trigger .next-input {
width: 100%; }
.next-time-picker-body {
overflow: hidden;
width: 200px;
border: 1px solid #DCDEE3;
border-radius: 3px;
background: #FFFFFF;
-webkit-box-shadow: none;
box-shadow: none; }
.next-time-picker-symbol-clock-icon::before {
content: "\E621"; }
.next-range-picker-trigger-separator, .next-range-picker-panel-input-separator {
cursor: default;
display: inline-block;
text-align: center;
color: #CCCCCC;
width: 16px;
font-size: 12px;
vertical-align: middle; }
.next-date-picker,
.next-month-picker,
.next-year-picker,
.next-week-picker {
display: inline-block;
width: 200px; }
.next-date-picker-input,
.next-month-picker-input,
.next-year-picker-input,
.next-week-picker-input {
width: 100%; }
.next-date-picker-body,
.next-month-picker-body,
.next-year-picker-body,
.next-week-picker-body {
width: 288px; }
.next-date-picker-panel-input.next-input,
.next-month-picker-panel-input.next-input,
.next-year-picker-panel-input.next-input,
.next-week-picker-panel-input.next-input {
width: 100%;
background: transparent; }
.next-date-picker-body.next-date-picker-body-show-time .next-date-picker-panel-input.next-input {
width: 49%; }
.next-date-picker-body.next-date-picker-body-show-time .next-date-picker-panel-input.next-input:first-child {
margin-right: 2%; }
.next-range-picker {
display: inline-block;
width: 336px; }
.next-range-picker-input {
width: 100%; }
.next-range-picker-trigger {
border: 1px solid #C4C6CF;
background-color: #FFFFFF; }
.next-range-picker-trigger:hover {
border-color: #A0A2AD;
background-color: #FFFFFF; }
.next-range-picker-trigger.next-error {
border-color: #FF3000; }
.next-range-picker-trigger-input.next-input {
height: auto;
width: calc(50% - 8px); }
.next-range-picker.next-disabled .next-range-picker-trigger {
color: #CCCCCC;
border-color: #E6E7EB;
background-color: #F7F8FA;
cursor: not-allowed; }
.next-range-picker.next-disabled .next-range-picker-trigger:hover {
border-color: #E6E7EB;
background-color: #F7F8FA; }
.next-range-picker.next-large .next-range-picker-trigger, .next-range-picker.next-large .next-range-picker-panel-input {
border-radius: 3px; }
.next-range-picker.next-medium .next-range-picker-trigger, .next-range-picker.next-medium .next-range-picker-panel-input {
border-radius: 3px; }
.next-range-picker.next-small .next-range-picker-trigger, .next-range-picker.next-small .next-range-picker-panel-input {
border-radius: 3px; }
.next-range-picker-body {
width: 600px; }
.next-range-picker-panel-input-start-date.next-input, .next-range-picker-panel-input-end-date.next-input {
width: calc(50% - 8px); }
.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-input-start-date, .next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-input-end-date, .next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-input-start-time, .next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-input-end-time {
width: calc(25% - 8px); }
.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-input-start-date {
margin-right: 8px; }
.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-input-end-time {
margin-left: 8px; }
.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-time:after {
visibility: hidden;
display: block;
height: 0;
font-size: 0;
content: ' ';
clear: both; }
.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-time-start, .next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-time-end {
width: 50%;
float: left; }
.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-time-start {
border-right: 1px solid #DCDEE3; }
.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-time-end {
border-left: 1px solid #DCDEE3; }
.next-date-picker-body[dir="rtl"] .next-date-picker-panel-footer {
text-align: left; }
.next-date-picker-body[dir="rtl"] .next-date-picker-panel-footer > .next-btn:not(:last-child) {
margin-right: 0;
margin-left: 16px; }
.next-date-picker-body[dir="rtl"].next-date-picker-body-show-time .next-date-picker-panel-input.next-input:first-child {
margin-left: 2%;
margin-right: 0; }
.next-date-picker-body[dir="rtl"].next-date-picker-body-show-time .next-time-picker-menu {
float: right; }
.next-date-picker-body[dir="rtl"].next-date-picker-body-show-time .next-time-picker-menu:not(:last-child) {
border-right: none;
border-left: 1px solid #C4C6CF; }
.next-range-picker-body[dir="rtl"] .next-range-picker-panel-input {
text-align: right; }
.next-range-picker-body[dir="rtl"] .next-date-picker-panel-footer {
text-align: left; }
.next-range-picker-body[dir="rtl"] .next-date-picker-panel-footer > .next-btn:not(:last-child) {
margin-right: 0;
margin-left: 16px; }
.next-range-picker-body[dir="rtl"].next-range-picker-body-show-time .next-range-picker-panel-input-start-date {
margin-right: 0;
margin-left: 8px; }
.next-range-picker-body[dir="rtl"].next-range-picker-body-show-time .next-range-picker-panel-input-end-time {
margin-left: 0;
margin-right: 8px; }
.next-range-picker-body[dir="rtl"].next-range-picker-body-show-time .next-range-picker-panel-time-start, .next-range-picker-body[dir="rtl"].next-range-picker-body-show-time .next-range-picker-panel-time-end {
float: right; }
.next-range-picker-body[dir="rtl"].next-range-picker-body-show-time .next-range-picker-panel-time-start {
border-right: none;
border-left: 1px solid #DCDEE3; }
.next-range-picker-body[dir="rtl"].next-range-picker-body-show-time .next-range-picker-panel-time-end {
border-left: none;
border-right: 1px solid #DCDEE3; }
.next-range-picker-body[dir="rtl"].next-range-picker-body-show-time .next-time-picker-menu {
float: right; }
.next-range-picker-body[dir="rtl"].next-range-picker-body-show-time .next-time-picker-menu:not(:last-child) {
border-right: none;
border-left: 1px solid #C4C6CF; }
.next-date-picker,
.next-range-picker,
.next-month-picker,
.next-year-picker,
.next-week-picker {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-date-picker *,
.next-date-picker *:before,
.next-date-picker *:after,
.next-range-picker *,
.next-range-picker *:before,
.next-range-picker *:after,
.next-month-picker *,
.next-month-picker *:before,
.next-month-picker *:after,
.next-year-picker *,
.next-year-picker *:before,
.next-year-picker *:after,
.next-week-picker *,
.next-week-picker *:before,
.next-week-picker *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-date-picker-body,
.next-range-picker-body,
.next-month-picker-body,
.next-year-picker-body,
.next-week-picker-body {
border: 1px solid #DCDEE3;
border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
background: #FFFFFF; }
.next-date-picker-panel-header,
.next-range-picker-panel-header,
.next-month-picker-panel-header,
.next-year-picker-panel-header,
.next-week-picker-panel-header {
padding: 6px;
text-align: center; }
.next-date-picker-panel-time,
.next-range-picker-panel-time,
.next-month-picker-panel-time,
.next-year-picker-panel-time,
.next-week-picker-panel-time {
border-top: 1px solid #DCDEE3; }
.next-date-picker-panel-footer,
.next-range-picker-panel-footer,
.next-month-picker-panel-footer,
.next-year-picker-panel-footer,
.next-week-picker-panel-footer {
text-align: right;
padding: 8px 20px;
border-top: 1px solid #DCDEE3; }
.next-date-picker-panel-footer > .next-btn:not(:last-child),
.next-date-picker-panel-tools > .next-btn:not(:last-child),
.next-range-picker-panel-footer > .next-btn:not(:last-child),
.next-range-picker-panel-tools > .next-btn:not(:last-child),
.next-month-picker-panel-footer > .next-btn:not(:last-child),
.next-month-picker-panel-tools > .next-btn:not(:last-child),
.next-year-picker-panel-footer > .next-btn:not(:last-child),
.next-year-picker-panel-tools > .next-btn:not(:last-child),
.next-week-picker-panel-footer > .next-btn:not(:last-child),
.next-week-picker-panel-tools > .next-btn:not(:last-child) {
margin-right: 16px; }
.next-date-picker-panel-tools,
.next-range-picker-panel-tools,
.next-month-picker-panel-tools,
.next-year-picker-panel-tools,
.next-week-picker-panel-tools {
float: left; }
.next-date-picker .next-calendar-panel-header,
.next-range-picker .next-calendar-panel-header,
.next-month-picker .next-calendar-panel-header,
.next-year-picker .next-calendar-panel-header,
.next-week-picker .next-calendar-panel-header {
margin-left: -1px;
margin-right: -1px; }
.next-date-picker .next-input input,
.next-range-picker .next-input input,
.next-month-picker .next-input input,
.next-year-picker .next-input input,
.next-week-picker .next-input input {
vertical-align: baseline; }
.next-date-picker-symbol-calendar-icon::before,
.next-range-picker-symbol-calendar-icon::before,
.next-month-picker-symbol-calendar-icon::before,
.next-year-picker-symbol-calendar-icon::before,
.next-week-picker-symbol-calendar-icon::before {
content: "\E607"; }
.next-range-picker-panel-body .next-calendar {
display: inline-block;
width: 50%; }
.next-message {
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: relative;
display: block;
vertical-align: baseline;
-webkit-animation-duration: 300ms;
animation-duration: 300ms;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out; }
.next-message *,
.next-message *:before,
.next-message *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-message:after {
visibility: hidden;
display: block;
height: 0;
font-size: 0;
content: ' ';
clear: both; }
.next-message .next-message-close {
color: #999999;
font-size: 0;
position: absolute;
cursor: pointer; }
.next-message .next-message-close .next-icon-close {
width: 12px;
height: 12px;
line-height: 1em; }
.next-message .next-message-close .next-icon-close:before {
width: 12px;
height: 12px;
font-size: 12px;
line-height: 1em; }
.next-message .next-message-close:hover {
color: #666666; }
.next-message.next-message-success.next-inline {
background-color: #E4FDDA;
border-color: #E4FDDA;
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid; }
.next-message.next-message-success.next-inline .next-message-title {
color: #333333; }
.next-message.next-message-success.next-inline .next-message-content {
color: #666666; }
.next-message.next-message-success.next-inline .next-message-symbol {
color: #46BC15; }
.next-message.next-message-success.next-inline .next-message-symbol-icon::before {
content: "\E60A"; }
.next-message.next-message-success.next-addon {
background-color: transparent;
border-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid; }
.next-message.next-message-success.next-addon .next-message-title {
color: #333333; }
.next-message.next-message-success.next-addon .next-message-content {
color: #666666; }
.next-message.next-message-success.next-addon .next-message-symbol {
color: #46BC15; }
.next-message.next-message-success.next-addon .next-message-symbol-icon::before {
content: "\E60A"; }
.next-message.next-message-success.next-toast {
background-color: #FFFFFF;
border-color: #FFFFFF;
-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
border-style: solid; }
.next-message.next-message-success.next-toast .next-message-title {
color: #333333; }
.next-message.next-message-success.next-toast .next-message-content {
color: #666666; }
.next-message.next-message-success.next-toast .next-message-symbol {
color: #46BC15; }
.next-message.next-message-success.next-toast .next-message-symbol-icon::before {
content: "\E60A"; }
.next-message.next-message-warning.next-inline {
background-color: #FFF3E0;
border-color: #FFF3E0;
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid; }
.next-message.next-message-warning.next-inline .next-message-title {
color: #333333; }
.next-message.next-message-warning.next-inline .next-message-content {
color: #666666; }
.next-message.next-message-warning.next-inline .next-message-symbol {
color: #FF9300; }
.next-message.next-message-warning.next-inline .next-message-symbol-icon::before {
content: "\E60B"; }
.next-message.next-message-warning.next-addon {
background-color: transparent;
border-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid; }
.next-message.next-message-warning.next-addon .next-message-title {
color: #333333; }
.next-message.next-message-warning.next-addon .next-message-content {
color: #666666; }
.next-message.next-message-warning.next-addon .next-message-symbol {
color: #FF9300; }
.next-message.next-message-warning.next-addon .next-message-symbol-icon::before {
content: "\E60B"; }
.next-message.next-message-warning.next-toast {
background-color: #FFFFFF;
border-color: #FFFFFF;
-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
border-style: solid; }
.next-message.next-message-warning.next-toast .next-message-title {
color: #333333; }
.next-message.next-message-warning.next-toast .next-message-content {
color: #666666; }
.next-message.next-message-warning.next-toast .next-message-symbol {
color: #FF9300; }
.next-message.next-message-warning.next-toast .next-message-symbol-icon::before {
content: "\E60B"; }
.next-message.next-message-error.next-inline {
background-color: #FFECE4;
border-color: #FFECE4;
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid; }
.next-message.next-message-error.next-inline .next-message-title {
color: #333333; }
.next-message.next-message-error.next-inline .next-message-content {
color: #666666; }
.next-message.next-message-error.next-inline .next-message-symbol {
color: #FF3000; }
.next-message.next-message-error.next-inline .next-message-symbol-icon::before {
content: "\E60D"; }
.next-message.next-message-error.next-addon {
background-color: transparent;
border-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid; }
.next-message.next-message-error.next-addon .next-message-title {
color: #333333; }
.next-message.next-message-error.next-addon .next-message-content {
color: #666666; }
.next-message.next-message-error.next-addon .next-message-symbol {
color: #FF3000; }
.next-message.next-message-error.next-addon .next-message-symbol-icon::before {
content: "\E60D"; }
.next-message.next-message-error.next-toast {
background-color: #FFFFFF;
border-color: #FFFFFF;
-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
border-style: solid; }
.next-message.next-message-error.next-toast .next-message-title {
color: #333333; }
.next-message.next-message-error.next-toast .next-message-content {
color: #666666; }
.next-message.next-message-error.next-toast .next-message-symbol {
color: #FF3000; }
.next-message.next-message-error.next-toast .next-message-symbol-icon::before {
content: "\E60D"; }
.next-message.next-message-notice.next-inline {
background-color: #E3F2FD;
border-color: #E3F2FD;
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid; }
.next-message.next-message-notice.next-inline .next-message-title {
color: #333333; }
.next-message.next-message-notice.next-inline .next-message-content {
color: #666666; }
.next-message.next-message-notice.next-inline .next-message-symbol {
color: #4494F9; }
.next-message.next-message-notice.next-inline .next-message-symbol-icon::before {
content: "\E60C"; }
.next-message.next-message-notice.next-addon {
background-color: transparent;
border-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid; }
.next-message.next-message-notice.next-addon .next-message-title {
color: #333333; }
.next-message.next-message-notice.next-addon .next-message-content {
color: #666666; }
.next-message.next-message-notice.next-addon .next-message-symbol {
color: #4494F9; }
.next-message.next-message-notice.next-addon .next-message-symbol-icon::before {
content: "\E60C"; }
.next-message.next-message-notice.next-toast {
background-color: #FFFFFF;
border-color: #FFFFFF;
-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
border-style: solid; }
.next-message.next-message-notice.next-toast .next-message-title {
color: #333333; }
.next-message.next-message-notice.next-toast .next-message-content {
color: #666666; }
.next-message.next-message-notice.next-toast .next-message-symbol {
color: #4494F9; }
.next-message.next-message-notice.next-toast .next-message-symbol-icon::before {
content: "\E60C"; }
.next-message.next-message-help.next-inline {
background-color: #E3FFF8;
border-color: #E3FFF8;
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid; }
.next-message.next-message-help.next-inline .next-message-title {
color: #333333; }
.next-message.next-message-help.next-inline .next-message-content {
color: #666666; }
.next-message.next-message-help.next-inline .next-message-symbol {
color: #01C1B2; }
.next-message.next-message-help.next-inline .next-message-symbol-icon::before {
content: "\E673"; }
.next-message.next-message-help.next-addon {
background-color: transparent;
border-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid; }
.next-message.next-message-help.next-addon .next-message-title {
color: #333333; }
.next-message.next-message-help.next-addon .next-message-content {
color: #666666; }
.next-message.next-message-help.next-addon .next-message-symbol {
color: #01C1B2; }
.next-message.next-message-help.next-addon .next-message-symbol-icon::before {
content: "\E673"; }
.next-message.next-message-help.next-toast {
background-color: #FFFFFF;
border-color: #FFFFFF;
-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
border-style: solid; }
.next-message.next-message-help.next-toast .next-message-title {
color: #333333; }
.next-message.next-message-help.next-toast .next-message-content {
color: #666666; }
.next-message.next-message-help.next-toast .next-message-symbol {
color: #01C1B2; }
.next-message.next-message-help.next-toast .next-message-symbol-icon::before {
content: "\E673"; }
.next-message.next-message-loading.next-inline {
background-color: #FFFFFF;
border-color: #FFFFFF;
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid; }
.next-message.next-message-loading.next-inline .next-message-title {
color: #333333; }
.next-message.next-message-loading.next-inline .next-message-content {
color: #666666; }
.next-message.next-message-loading.next-inline .next-message-symbol {
color: #5584FF; }
.next-message.next-message-loading.next-inline .next-message-symbol-icon::before {
content: "\E646";
-webkit-animation: loadingCircle 1s infinite linear;
animation: loadingCircle 1s infinite linear; }
.next-message.next-message-loading.next-addon {
background-color: transparent;
border-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid; }
.next-message.next-message-loading.next-addon .next-message-title {
color: #333333; }
.next-message.next-message-loading.next-addon .next-message-content {
color: #666666; }
.next-message.next-message-loading.next-addon .next-message-symbol {
color: #5584FF; }
.next-message.next-message-loading.next-addon .next-message-symbol-icon::before {
content: "\E646";
-webkit-animation: loadingCircle 1s infinite linear;
animation: loadingCircle 1s infinite linear; }
.next-message.next-message-loading.next-toast {
background-color: #FFFFFF;
border-color: #FFFFFF;
-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
border-style: solid; }
.next-message.next-message-loading.next-toast .next-message-title {
color: #333333; }
.next-message.next-message-loading.next-toast .next-message-content {
color: #666666; }
.next-message.next-message-loading.next-toast .next-message-symbol {
color: #5584FF; }
.next-message.next-message-loading.next-toast .next-message-symbol-icon::before {
content: "\E646";
-webkit-animation: loadingCircle 1s infinite linear;
animation: loadingCircle 1s infinite linear; }
.next-message.next-medium {
border-width: 1px;
padding: 12px; }
.next-message.next-medium .next-message-symbol {
float: left;
line-height: 16px; }
.next-message.next-medium .next-message-symbol:before,
.next-message.next-medium .next-message-symbol .next-icon-remote {
width: 16px;
font-size: 16px;
line-height: inherit; }
.next-message.next-medium .next-message-title {
padding: 0 20px 0 24px;
font-size: 16px;
line-height: 16px; }
.next-message.next-medium .next-message-content {
margin-top: 8px;
padding: 0 20px 0 24px;
font-size: 12px;
line-height: 12px; }
.next-message.next-medium .next-message-symbol + .next-message-content {
margin-top: 0; }
.next-message.next-medium.next-title-content .next-message-title {
line-height: 16px; }
.next-message.next-medium.next-only-content .next-message-content {
line-height: 16px; }
.next-message.next-medium .next-message-close {
top: 12px;
right: 12px; }
.next-message.next-medium.next-inline {
border-radius: 3px; }
.next-message.next-medium.next-toast {
border-radius: 3px; }
.next-message.next-large {
border-width: 2px;
padding: 16px;
line-height: 18px; }
.next-message.next-large .next-message-symbol {
float: left;
line-height: 24px; }
.next-message.next-large .next-message-symbol:before,
.next-message.next-large .next-message-symbol .next-icon-remote {
width: 24px;
font-size: 24px;
line-height: inherit; }
.next-message.next-large .next-message-title {
padding: 0 20px 0 36px;
font-size: 20px;
line-height: 20px; }
.next-message.next-large .next-message-content {
margin-top: 8px;
padding: 0 20px 0 36px;
font-size: 12px;
line-height: 12px; }
.next-message.next-large .next-message-symbol + .next-message-content {
margin-top: 0; }
.next-message.next-large.next-title-content .next-message-title {
line-height: 24px; }
.next-message.next-large.next-only-content .next-message-content {
line-height: 24px; }
.next-message.next-large .next-message-close {
top: 16px;
right: 16px; }
.next-message.next-large.next-inline {
border-radius: 3px; }
.next-message.next-large.next-toast {
border-radius: 3px; }
.next-message[dir="rtl"] .next-message-symbol {
float: right; }
.next-message[dir="rtl"].next-medium .next-message-title {
padding: 0 24px 0 20px; }
.next-message[dir="rtl"].next-medium .next-message-close {
left: 12px;
right: auto; }
.next-message[dir="rtl"].next-large .next-message-title {
padding: 0 36px 0 20px; }
.next-message[dir="rtl"].next-large .next-message-close {
left: 16px;
right: auto; }
.next-dialog[dir=rtl] {
text-align: right; }
.next-dialog[dir=rtl] .next-dialog-footer.next-align-left {
text-align: right; }
.next-dialog[dir=rtl] .next-dialog-footer.next-align-center {
text-align: center; }
.next-dialog[dir=rtl] .next-dialog-footer.next-align-right {
text-align: left; }
.next-dialog[dir=rtl] .next-dialog-btn + .next-dialog-btn {
margin-right: 4px;
margin-left: 0; }
.next-dialog[dir=rtl] .next-dialog-close {
left: 12px;
right: auto; }
.next-dialog {
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: fixed;
z-index: 1001;
background: #FFFFFF;
border: 1px solid #DCDEE3;
border-radius: 3px;
-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
text-align: left;
overflow: hidden;
max-width: 90%;
/* 让用户自己设置 */
/* &.next-closeable &-header, */
/* &.next-closeable &-body, { */
/* padding-right: $dialog-part-padding-right-closeable; */
/* } */ }
.next-dialog *,
.next-dialog *:before,
.next-dialog *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-dialog-header {
padding: 12px 20px 12px 20px;
border-bottom: 0px solid transparent;
font-size: 16px;
background: transparent;
color: #333333; }
.next-dialog-body {
padding: 20px 20px 20px 20px;
font-size: 12px;
color: #666666; }
.next-dialog-footer {
padding: 12px 20px 12px 20px;
border-top: 0px solid transparent;
background: transparent; }
.next-dialog-footer.next-align-left {
text-align: left; }
.next-dialog-footer.next-align-center {
text-align: center; }
.next-dialog-footer.next-align-right {
text-align: right; }
.next-dialog-footer-fixed-height {
position: absolute;
width: 100%;
bottom: 0; }
.next-dialog-btn + .next-dialog-btn {
margin-left: 4px; }
.next-dialog-close {
position: absolute;
top: 12px;
right: 12px;
width: 16px;
height: 16px;
color: #999999;
cursor: pointer; }
.next-dialog-close:link, .next-dialog-close:visited {
height: 16px;
color: #999999; }
.next-dialog-close:hover {
background: transparent;
color: #333333; }
.next-dialog-close .next-dialog-close-icon.next-icon {
position: absolute;
top: 50%;
left: 50%;
margin-top: -6px;
margin-left: -6px;
width: 12px;
height: 12px;
line-height: 1em; }
.next-dialog-close .next-dialog-close-icon.next-icon:before {
width: 12px;
height: 12px;
font-size: 12px;
line-height: 1em; }
.next-dialog-container {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1001;
padding: 40px;
overflow: auto;
text-align: center;
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-dialog-container:before {
display: inline-block;
vertical-align: middle;
width: 0;
height: 100%;
content: ''; }
.next-dialog-container .next-dialog {
display: inline-block;
position: relative;
vertical-align: middle; }
.next-dialog-quick .next-dialog-body {
padding: 20px 20px 20px 20px; }
.next-dialog .next-dialog-message.next-message {
min-width: 300px;
padding: 0; }
.next-drawer {
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: fixed;
z-index: 1001;
background: #FFFFFF;
border: 1px solid #DCDEE3;
-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
overflow: auto;
-webkit-animation-duration: 300ms;
animation-duration: 300ms;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out; }
.next-drawer *,
.next-drawer *:before,
.next-drawer *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-drawer-right {
height: 100%;
max-width: 80%;
width: 240px; }
.next-drawer-left {
height: 100%;
max-width: 80%;
width: 240px; }
.next-drawer-top {
width: 100%; }
.next-drawer-bottom {
width: 100%; }
.next-drawer-header {
padding: 12px 20px 12px 20px;
border-bottom: 1px solid #DCDEE3;
font-size: 16px;
background: #FFFFFF;
color: #333333; }
.next-drawer-no-title {
padding: 0;
border-bottom: 0; }
.next-drawer-body {
padding: 20px 20px 20px 20px;
font-size: 12px;
color: #666666; }
.next-drawer-close {
position: absolute;
top: 12px;
right: 12px;
width: 16px;
height: 16px;
color: #999999;
cursor: pointer; }
.next-drawer-close:link, .next-drawer-close:visited {
height: 16px;
color: #999999; }
.next-drawer-close:hover {
background: transparent;
color: #333333; }
.next-drawer-close .next-drawer-close-icon.next-icon {
position: absolute;
top: 50%;
left: 50%;
margin-top: -6px;
margin-left: -6px;
width: 12px;
height: 12px;
line-height: 1em; }
.next-drawer-close .next-drawer-close-icon.next-icon:before {
width: 12px;
height: 12px;
font-size: 12px;
line-height: 1em; }
/* stylelint-disable-next-line */
/* Grid System */
/* 根据 Alibaba Base DPL(BASE DPL)设计规范实现 */
/* 栅格系统, 根据不同的屏幕尺寸情况,调整这些区块的排版,将页面划分为若干等宽的列,然后推荐通过等宽列来创建响应式的页面区块。另外,屏幕宽度较大的时候,区块倾向于水平分布,而屏幕宽度较小的时候,区块倾向于竖直堆叠。 */
/* ------------------------------- */
.next-row {
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: -webkit-box;
display: -ms-flexbox;
display: flex; }
.next-row *,
.next-row *:before,
.next-row *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-row.next-row-wrap {
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
@media (min-width: 320px) {
.next-row.next-row-fixed {
width: 320px; } }
@media (min-width: 480px) {
.next-row.next-row-fixed {
width: 480px; } }
@media (min-width: 720px) {
.next-row.next-row-fixed {
width: 720px; } }
@media (min-width: 990px) {
.next-row.next-row-fixed {
width: 990px; } }
@media (min-width: 1200px) {
.next-row.next-row-fixed {
width: 1200px; } }
@media (min-width: 1500px) {
.next-row.next-row-fixed {
width: 1500px; } }
.next-row.next-row-fixed-xxs {
width: 320px; }
.next-row.next-row-fixed-xs {
width: 480px; }
.next-row.next-row-fixed-s {
width: 720px; }
.next-row.next-row-fixed-m {
width: 990px; }
.next-row.next-row-fixed-l {
width: 1200px; }
.next-row.next-row-fixed-xl {
width: 1500px; }
.next-row.next-row-justify-start {
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start; }
.next-row.next-row-justify-end {
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end; }
.next-row.next-row-justify-center {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; }
.next-row.next-row-justify-space-between {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between; }
.next-row.next-row-justify-space-around {
-ms-flex-pack: distribute;
justify-content: space-around; }
.next-row.next-row-align-top {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start; }
.next-row.next-row-align-bottom {
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end; }
.next-row.next-row-align-center {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center; }
.next-row.next-row-align-baseline {
-webkit-box-align: baseline;
-ms-flex-align: baseline;
align-items: baseline; }
.next-row.next-row-align-stretch {
-webkit-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch; }
.next-col {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1; }
.next-col.next-col-top {
-ms-flex-item-align: start;
align-self: flex-start; }
.next-col.next-col-bottom {
-ms-flex-item-align: end;
align-self: flex-end; }
.next-col.next-col-center {
-ms-flex-item-align: center;
align-self: center; }
/* IE9 pack */
@media all and (min-width: 0\0) and (min-resolution: 0.001dpcm) {
.next-row {
display: table;
width: 100%; }
.next-col {
display: table-cell;
vertical-align: top; } }
.next-col-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 4.16667%;
flex: 0 0 4.16667%;
width: 4.16667%;
max-width: 4.16667%; }
.next-col-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
width: 8.33333%;
max-width: 8.33333%; }
.next-col-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 12.5%;
flex: 0 0 12.5%;
width: 12.5%;
max-width: 12.5%; }
.next-col-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
width: 16.66667%;
max-width: 16.66667%; }
.next-col-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20.83333%;
flex: 0 0 20.83333%;
width: 20.83333%;
max-width: 20.83333%; }
.next-col-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
width: 25%;
max-width: 25%; }
.next-col-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 29.16667%;
flex: 0 0 29.16667%;
width: 29.16667%;
max-width: 29.16667%; }
.next-col-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
width: 33.33333%;
max-width: 33.33333%; }
.next-col-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 37.5%;
flex: 0 0 37.5%;
width: 37.5%;
max-width: 37.5%; }
.next-col-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
width: 41.66667%;
max-width: 41.66667%; }
.next-col-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 45.83333%;
flex: 0 0 45.83333%;
width: 45.83333%;
max-width: 45.83333%; }
.next-col-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
width: 50%;
max-width: 50%; }
.next-col-13 {
-webkit-box-flex: 0;
-ms-flex: 0 0 54.16667%;
flex: 0 0 54.16667%;
width: 54.16667%;
max-width: 54.16667%; }
.next-col-14 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
width: 58.33333%;
max-width: 58.33333%; }
.next-col-15 {
-webkit-box-flex: 0;
-ms-flex: 0 0 62.5%;
flex: 0 0 62.5%;
width: 62.5%;
max-width: 62.5%; }
.next-col-16 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
width: 66.66667%;
max-width: 66.66667%; }
.next-col-17 {
-webkit-box-flex: 0;
-ms-flex: 0 0 70.83333%;
flex: 0 0 70.83333%;
width: 70.83333%;
max-width: 70.83333%; }
.next-col-18 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
width: 75%;
max-width: 75%; }
.next-col-19 {
-webkit-box-flex: 0;
-ms-flex: 0 0 79.16667%;
flex: 0 0 79.16667%;
width: 79.16667%;
max-width: 79.16667%; }
.next-col-20 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
width: 83.33333%;
max-width: 83.33333%; }
.next-col-21 {
-webkit-box-flex: 0;
-ms-flex: 0 0 87.5%;
flex: 0 0 87.5%;
width: 87.5%;
max-width: 87.5%; }
.next-col-22 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
width: 91.66667%;
max-width: 91.66667%; }
.next-col-23 {
-webkit-box-flex: 0;
-ms-flex: 0 0 95.83333%;
flex: 0 0 95.83333%;
width: 95.83333%;
max-width: 95.83333%; }
.next-col-24 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
width: 100%;
max-width: 100%; }
@media (min-width: 320px) {
.next-col-xxs-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 4.16667%;
flex: 0 0 4.16667%;
width: 4.16667%;
max-width: 4.16667%; }
.next-col-xxs-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
width: 8.33333%;
max-width: 8.33333%; }
.next-col-xxs-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 12.5%;
flex: 0 0 12.5%;
width: 12.5%;
max-width: 12.5%; }
.next-col-xxs-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
width: 16.66667%;
max-width: 16.66667%; }
.next-col-xxs-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20.83333%;
flex: 0 0 20.83333%;
width: 20.83333%;
max-width: 20.83333%; }
.next-col-xxs-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
width: 25%;
max-width: 25%; }
.next-col-xxs-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 29.16667%;
flex: 0 0 29.16667%;
width: 29.16667%;
max-width: 29.16667%; }
.next-col-xxs-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
width: 33.33333%;
max-width: 33.33333%; }
.next-col-xxs-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 37.5%;
flex: 0 0 37.5%;
width: 37.5%;
max-width: 37.5%; }
.next-col-xxs-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
width: 41.66667%;
max-width: 41.66667%; }
.next-col-xxs-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 45.83333%;
flex: 0 0 45.83333%;
width: 45.83333%;
max-width: 45.83333%; }
.next-col-xxs-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
width: 50%;
max-width: 50%; }
.next-col-xxs-13 {
-webkit-box-flex: 0;
-ms-flex: 0 0 54.16667%;
flex: 0 0 54.16667%;
width: 54.16667%;
max-width: 54.16667%; }
.next-col-xxs-14 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
width: 58.33333%;
max-width: 58.33333%; }
.next-col-xxs-15 {
-webkit-box-flex: 0;
-ms-flex: 0 0 62.5%;
flex: 0 0 62.5%;
width: 62.5%;
max-width: 62.5%; }
.next-col-xxs-16 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
width: 66.66667%;
max-width: 66.66667%; }
.next-col-xxs-17 {
-webkit-box-flex: 0;
-ms-flex: 0 0 70.83333%;
flex: 0 0 70.83333%;
width: 70.83333%;
max-width: 70.83333%; }
.next-col-xxs-18 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
width: 75%;
max-width: 75%; }
.next-col-xxs-19 {
-webkit-box-flex: 0;
-ms-flex: 0 0 79.16667%;
flex: 0 0 79.16667%;
width: 79.16667%;
max-width: 79.16667%; }
.next-col-xxs-20 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
width: 83.33333%;
max-width: 83.33333%; }
.next-col-xxs-21 {
-webkit-box-flex: 0;
-ms-flex: 0 0 87.5%;
flex: 0 0 87.5%;
width: 87.5%;
max-width: 87.5%; }
.next-col-xxs-22 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
width: 91.66667%;
max-width: 91.66667%; }
.next-col-xxs-23 {
-webkit-box-flex: 0;
-ms-flex: 0 0 95.83333%;
flex: 0 0 95.83333%;
width: 95.83333%;
max-width: 95.83333%; }
.next-col-xxs-24 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
width: 100%;
max-width: 100%; } }
@media (min-width: 480px) {
.next-col-xs-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 4.16667%;
flex: 0 0 4.16667%;
width: 4.16667%;
max-width: 4.16667%; }
.next-col-xs-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
width: 8.33333%;
max-width: 8.33333%; }
.next-col-xs-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 12.5%;
flex: 0 0 12.5%;
width: 12.5%;
max-width: 12.5%; }
.next-col-xs-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
width: 16.66667%;
max-width: 16.66667%; }
.next-col-xs-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20.83333%;
flex: 0 0 20.83333%;
width: 20.83333%;
max-width: 20.83333%; }
.next-col-xs-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
width: 25%;
max-width: 25%; }
.next-col-xs-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 29.16667%;
flex: 0 0 29.16667%;
width: 29.16667%;
max-width: 29.16667%; }
.next-col-xs-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
width: 33.33333%;
max-width: 33.33333%; }
.next-col-xs-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 37.5%;
flex: 0 0 37.5%;
width: 37.5%;
max-width: 37.5%; }
.next-col-xs-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
width: 41.66667%;
max-width: 41.66667%; }
.next-col-xs-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 45.83333%;
flex: 0 0 45.83333%;
width: 45.83333%;
max-width: 45.83333%; }
.next-col-xs-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
width: 50%;
max-width: 50%; }
.next-col-xs-13 {
-webkit-box-flex: 0;
-ms-flex: 0 0 54.16667%;
flex: 0 0 54.16667%;
width: 54.16667%;
max-width: 54.16667%; }
.next-col-xs-14 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
width: 58.33333%;
max-width: 58.33333%; }
.next-col-xs-15 {
-webkit-box-flex: 0;
-ms-flex: 0 0 62.5%;
flex: 0 0 62.5%;
width: 62.5%;
max-width: 62.5%; }
.next-col-xs-16 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
width: 66.66667%;
max-width: 66.66667%; }
.next-col-xs-17 {
-webkit-box-flex: 0;
-ms-flex: 0 0 70.83333%;
flex: 0 0 70.83333%;
width: 70.83333%;
max-width: 70.83333%; }
.next-col-xs-18 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
width: 75%;
max-width: 75%; }
.next-col-xs-19 {
-webkit-box-flex: 0;
-ms-flex: 0 0 79.16667%;
flex: 0 0 79.16667%;
width: 79.16667%;
max-width: 79.16667%; }
.next-col-xs-20 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
width: 83.33333%;
max-width: 83.33333%; }
.next-col-xs-21 {
-webkit-box-flex: 0;
-ms-flex: 0 0 87.5%;
flex: 0 0 87.5%;
width: 87.5%;
max-width: 87.5%; }
.next-col-xs-22 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
width: 91.66667%;
max-width: 91.66667%; }
.next-col-xs-23 {
-webkit-box-flex: 0;
-ms-flex: 0 0 95.83333%;
flex: 0 0 95.83333%;
width: 95.83333%;
max-width: 95.83333%; }
.next-col-xs-24 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
width: 100%;
max-width: 100%; } }
@media (min-width: 720px) {
.next-col-s-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 4.16667%;
flex: 0 0 4.16667%;
width: 4.16667%;
max-width: 4.16667%; }
.next-col-s-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
width: 8.33333%;
max-width: 8.33333%; }
.next-col-s-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 12.5%;
flex: 0 0 12.5%;
width: 12.5%;
max-width: 12.5%; }
.next-col-s-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
width: 16.66667%;
max-width: 16.66667%; }
.next-col-s-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20.83333%;
flex: 0 0 20.83333%;
width: 20.83333%;
max-width: 20.83333%; }
.next-col-s-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
width: 25%;
max-width: 25%; }
.next-col-s-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 29.16667%;
flex: 0 0 29.16667%;
width: 29.16667%;
max-width: 29.16667%; }
.next-col-s-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
width: 33.33333%;
max-width: 33.33333%; }
.next-col-s-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 37.5%;
flex: 0 0 37.5%;
width: 37.5%;
max-width: 37.5%; }
.next-col-s-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
width: 41.66667%;
max-width: 41.66667%; }
.next-col-s-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 45.83333%;
flex: 0 0 45.83333%;
width: 45.83333%;
max-width: 45.83333%; }
.next-col-s-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
width: 50%;
max-width: 50%; }
.next-col-s-13 {
-webkit-box-flex: 0;
-ms-flex: 0 0 54.16667%;
flex: 0 0 54.16667%;
width: 54.16667%;
max-width: 54.16667%; }
.next-col-s-14 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
width: 58.33333%;
max-width: 58.33333%; }
.next-col-s-15 {
-webkit-box-flex: 0;
-ms-flex: 0 0 62.5%;
flex: 0 0 62.5%;
width: 62.5%;
max-width: 62.5%; }
.next-col-s-16 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
width: 66.66667%;
max-width: 66.66667%; }
.next-col-s-17 {
-webkit-box-flex: 0;
-ms-flex: 0 0 70.83333%;
flex: 0 0 70.83333%;
width: 70.83333%;
max-width: 70.83333%; }
.next-col-s-18 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
width: 75%;
max-width: 75%; }
.next-col-s-19 {
-webkit-box-flex: 0;
-ms-flex: 0 0 79.16667%;
flex: 0 0 79.16667%;
width: 79.16667%;
max-width: 79.16667%; }
.next-col-s-20 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
width: 83.33333%;
max-width: 83.33333%; }
.next-col-s-21 {
-webkit-box-flex: 0;
-ms-flex: 0 0 87.5%;
flex: 0 0 87.5%;
width: 87.5%;
max-width: 87.5%; }
.next-col-s-22 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
width: 91.66667%;
max-width: 91.66667%; }
.next-col-s-23 {
-webkit-box-flex: 0;
-ms-flex: 0 0 95.83333%;
flex: 0 0 95.83333%;
width: 95.83333%;
max-width: 95.83333%; }
.next-col-s-24 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
width: 100%;
max-width: 100%; } }
@media (min-width: 990px) {
.next-col-m-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 4.16667%;
flex: 0 0 4.16667%;
width: 4.16667%;
max-width: 4.16667%; }
.next-col-m-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
width: 8.33333%;
max-width: 8.33333%; }
.next-col-m-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 12.5%;
flex: 0 0 12.5%;
width: 12.5%;
max-width: 12.5%; }
.next-col-m-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
width: 16.66667%;
max-width: 16.66667%; }
.next-col-m-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20.83333%;
flex: 0 0 20.83333%;
width: 20.83333%;
max-width: 20.83333%; }
.next-col-m-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
width: 25%;
max-width: 25%; }
.next-col-m-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 29.16667%;
flex: 0 0 29.16667%;
width: 29.16667%;
max-width: 29.16667%; }
.next-col-m-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
width: 33.33333%;
max-width: 33.33333%; }
.next-col-m-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 37.5%;
flex: 0 0 37.5%;
width: 37.5%;
max-width: 37.5%; }
.next-col-m-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
width: 41.66667%;
max-width: 41.66667%; }
.next-col-m-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 45.83333%;
flex: 0 0 45.83333%;
width: 45.83333%;
max-width: 45.83333%; }
.next-col-m-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
width: 50%;
max-width: 50%; }
.next-col-m-13 {
-webkit-box-flex: 0;
-ms-flex: 0 0 54.16667%;
flex: 0 0 54.16667%;
width: 54.16667%;
max-width: 54.16667%; }
.next-col-m-14 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
width: 58.33333%;
max-width: 58.33333%; }
.next-col-m-15 {
-webkit-box-flex: 0;
-ms-flex: 0 0 62.5%;
flex: 0 0 62.5%;
width: 62.5%;
max-width: 62.5%; }
.next-col-m-16 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
width: 66.66667%;
max-width: 66.66667%; }
.next-col-m-17 {
-webkit-box-flex: 0;
-ms-flex: 0 0 70.83333%;
flex: 0 0 70.83333%;
width: 70.83333%;
max-width: 70.83333%; }
.next-col-m-18 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
width: 75%;
max-width: 75%; }
.next-col-m-19 {
-webkit-box-flex: 0;
-ms-flex: 0 0 79.16667%;
flex: 0 0 79.16667%;
width: 79.16667%;
max-width: 79.16667%; }
.next-col-m-20 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
width: 83.33333%;
max-width: 83.33333%; }
.next-col-m-21 {
-webkit-box-flex: 0;
-ms-flex: 0 0 87.5%;
flex: 0 0 87.5%;
width: 87.5%;
max-width: 87.5%; }
.next-col-m-22 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
width: 91.66667%;
max-width: 91.66667%; }
.next-col-m-23 {
-webkit-box-flex: 0;
-ms-flex: 0 0 95.83333%;
flex: 0 0 95.83333%;
width: 95.83333%;
max-width: 95.83333%; }
.next-col-m-24 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
width: 100%;
max-width: 100%; } }
@media (min-width: 1200px) {
.next-col-l-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 4.16667%;
flex: 0 0 4.16667%;
width: 4.16667%;
max-width: 4.16667%; }
.next-col-l-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
width: 8.33333%;
max-width: 8.33333%; }
.next-col-l-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 12.5%;
flex: 0 0 12.5%;
width: 12.5%;
max-width: 12.5%; }
.next-col-l-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
width: 16.66667%;
max-width: 16.66667%; }
.next-col-l-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20.83333%;
flex: 0 0 20.83333%;
width: 20.83333%;
max-width: 20.83333%; }
.next-col-l-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
width: 25%;
max-width: 25%; }
.next-col-l-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 29.16667%;
flex: 0 0 29.16667%;
width: 29.16667%;
max-width: 29.16667%; }
.next-col-l-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
width: 33.33333%;
max-width: 33.33333%; }
.next-col-l-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 37.5%;
flex: 0 0 37.5%;
width: 37.5%;
max-width: 37.5%; }
.next-col-l-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
width: 41.66667%;
max-width: 41.66667%; }
.next-col-l-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 45.83333%;
flex: 0 0 45.83333%;
width: 45.83333%;
max-width: 45.83333%; }
.next-col-l-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
width: 50%;
max-width: 50%; }
.next-col-l-13 {
-webkit-box-flex: 0;
-ms-flex: 0 0 54.16667%;
flex: 0 0 54.16667%;
width: 54.16667%;
max-width: 54.16667%; }
.next-col-l-14 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
width: 58.33333%;
max-width: 58.33333%; }
.next-col-l-15 {
-webkit-box-flex: 0;
-ms-flex: 0 0 62.5%;
flex: 0 0 62.5%;
width: 62.5%;
max-width: 62.5%; }
.next-col-l-16 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
width: 66.66667%;
max-width: 66.66667%; }
.next-col-l-17 {
-webkit-box-flex: 0;
-ms-flex: 0 0 70.83333%;
flex: 0 0 70.83333%;
width: 70.83333%;
max-width: 70.83333%; }
.next-col-l-18 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
width: 75%;
max-width: 75%; }
.next-col-l-19 {
-webkit-box-flex: 0;
-ms-flex: 0 0 79.16667%;
flex: 0 0 79.16667%;
width: 79.16667%;
max-width: 79.16667%; }
.next-col-l-20 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
width: 83.33333%;
max-width: 83.33333%; }
.next-col-l-21 {
-webkit-box-flex: 0;
-ms-flex: 0 0 87.5%;
flex: 0 0 87.5%;
width: 87.5%;
max-width: 87.5%; }
.next-col-l-22 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
width: 91.66667%;
max-width: 91.66667%; }
.next-col-l-23 {
-webkit-box-flex: 0;
-ms-flex: 0 0 95.83333%;
flex: 0 0 95.83333%;
width: 95.83333%;
max-width: 95.83333%; }
.next-col-l-24 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
width: 100%;
max-width: 100%; } }
@media (min-width: 1500px) {
.next-col-xl-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 4.16667%;
flex: 0 0 4.16667%;
width: 4.16667%;
max-width: 4.16667%; }
.next-col-xl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
width: 8.33333%;
max-width: 8.33333%; }
.next-col-xl-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 12.5%;
flex: 0 0 12.5%;
width: 12.5%;
max-width: 12.5%; }
.next-col-xl-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
width: 16.66667%;
max-width: 16.66667%; }
.next-col-xl-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20.83333%;
flex: 0 0 20.83333%;
width: 20.83333%;
max-width: 20.83333%; }
.next-col-xl-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
width: 25%;
max-width: 25%; }
.next-col-xl-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 29.16667%;
flex: 0 0 29.16667%;
width: 29.16667%;
max-width: 29.16667%; }
.next-col-xl-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
width: 33.33333%;
max-width: 33.33333%; }
.next-col-xl-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 37.5%;
flex: 0 0 37.5%;
width: 37.5%;
max-width: 37.5%; }
.next-col-xl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
width: 41.66667%;
max-width: 41.66667%; }
.next-col-xl-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 45.83333%;
flex: 0 0 45.83333%;
width: 45.83333%;
max-width: 45.83333%; }
.next-col-xl-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
width: 50%;
max-width: 50%; }
.next-col-xl-13 {
-webkit-box-flex: 0;
-ms-flex: 0 0 54.16667%;
flex: 0 0 54.16667%;
width: 54.16667%;
max-width: 54.16667%; }
.next-col-xl-14 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
width: 58.33333%;
max-width: 58.33333%; }
.next-col-xl-15 {
-webkit-box-flex: 0;
-ms-flex: 0 0 62.5%;
flex: 0 0 62.5%;
width: 62.5%;
max-width: 62.5%; }
.next-col-xl-16 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
width: 66.66667%;
max-width: 66.66667%; }
.next-col-xl-17 {
-webkit-box-flex: 0;
-ms-flex: 0 0 70.83333%;
flex: 0 0 70.83333%;
width: 70.83333%;
max-width: 70.83333%; }
.next-col-xl-18 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
width: 75%;
max-width: 75%; }
.next-col-xl-19 {
-webkit-box-flex: 0;
-ms-flex: 0 0 79.16667%;
flex: 0 0 79.16667%;
width: 79.16667%;
max-width: 79.16667%; }
.next-col-xl-20 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
width: 83.33333%;
max-width: 83.33333%; }
.next-col-xl-21 {
-webkit-box-flex: 0;
-ms-flex: 0 0 87.5%;
flex: 0 0 87.5%;
width: 87.5%;
max-width: 87.5%; }
.next-col-xl-22 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
width: 91.66667%;
max-width: 91.66667%; }
.next-col-xl-23 {
-webkit-box-flex: 0;
-ms-flex: 0 0 95.83333%;
flex: 0 0 95.83333%;
width: 95.83333%;
max-width: 95.83333%; }
.next-col-xl-24 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
width: 100%;
max-width: 100%; } }
.next-col-1p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20%;
flex: 0 0 20%;
width: 20%;
max-width: 20%; }
.next-col-2p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 40%;
flex: 0 0 40%;
width: 40%;
max-width: 40%; }
.next-col-3p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 60%;
flex: 0 0 60%;
width: 60%;
max-width: 60%; }
.next-col-4p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 80%;
flex: 0 0 80%;
width: 80%;
max-width: 80%; }
.next-col-5p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
width: 100%;
max-width: 100%; }
@media (min-width: 320px) {
.next-col-xxs-1p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20%;
flex: 0 0 20%;
width: 20%;
max-width: 20%; }
.next-col-xxs-2p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 40%;
flex: 0 0 40%;
width: 40%;
max-width: 40%; }
.next-col-xxs-3p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 60%;
flex: 0 0 60%;
width: 60%;
max-width: 60%; }
.next-col-xxs-4p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 80%;
flex: 0 0 80%;
width: 80%;
max-width: 80%; }
.next-col-xxs-5p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
width: 100%;
max-width: 100%; } }
@media (min-width: 480px) {
.next-col-xs-1p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20%;
flex: 0 0 20%;
width: 20%;
max-width: 20%; }
.next-col-xs-2p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 40%;
flex: 0 0 40%;
width: 40%;
max-width: 40%; }
.next-col-xs-3p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 60%;
flex: 0 0 60%;
width: 60%;
max-width: 60%; }
.next-col-xs-4p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 80%;
flex: 0 0 80%;
width: 80%;
max-width: 80%; }
.next-col-xs-5p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
width: 100%;
max-width: 100%; } }
@media (min-width: 720px) {
.next-col-s-1p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20%;
flex: 0 0 20%;
width: 20%;
max-width: 20%; }
.next-col-s-2p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 40%;
flex: 0 0 40%;
width: 40%;
max-width: 40%; }
.next-col-s-3p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 60%;
flex: 0 0 60%;
width: 60%;
max-width: 60%; }
.next-col-s-4p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 80%;
flex: 0 0 80%;
width: 80%;
max-width: 80%; }
.next-col-s-5p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
width: 100%;
max-width: 100%; } }
@media (min-width: 990px) {
.next-col-m-1p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20%;
flex: 0 0 20%;
width: 20%;
max-width: 20%; }
.next-col-m-2p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 40%;
flex: 0 0 40%;
width: 40%;
max-width: 40%; }
.next-col-m-3p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 60%;
flex: 0 0 60%;
width: 60%;
max-width: 60%; }
.next-col-m-4p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 80%;
flex: 0 0 80%;
width: 80%;
max-width: 80%; }
.next-col-m-5p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
width: 100%;
max-width: 100%; } }
@media (min-width: 1200px) {
.next-col-l-1p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20%;
flex: 0 0 20%;
width: 20%;
max-width: 20%; }
.next-col-l-2p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 40%;
flex: 0 0 40%;
width: 40%;
max-width: 40%; }
.next-col-l-3p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 60%;
flex: 0 0 60%;
width: 60%;
max-width: 60%; }
.next-col-l-4p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 80%;
flex: 0 0 80%;
width: 80%;
max-width: 80%; }
.next-col-l-5p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
width: 100%;
max-width: 100%; } }
@media (min-width: 1500px) {
.next-col-xl-1p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20%;
flex: 0 0 20%;
width: 20%;
max-width: 20%; }
.next-col-xl-2p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 40%;
flex: 0 0 40%;
width: 40%;
max-width: 40%; }
.next-col-xl-3p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 60%;
flex: 0 0 60%;
width: 60%;
max-width: 60%; }
.next-col-xl-4p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 80%;
flex: 0 0 80%;
width: 80%;
max-width: 80%; }
.next-col-xl-5p5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
width: 100%;
max-width: 100%; } }
.next-col-fixed-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 20px;
flex: 0 0 20px;
width: 20px;
max-width: 20px; }
.next-col-fixed-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 40px;
flex: 0 0 40px;
width: 40px;
max-width: 40px; }
.next-col-fixed-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 60px;
flex: 0 0 60px;
width: 60px;
max-width: 60px; }
.next-col-fixed-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 80px;
flex: 0 0 80px;
width: 80px;
max-width: 80px; }
.next-col-fixed-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100px;
flex: 0 0 100px;
width: 100px;
max-width: 100px; }
.next-col-fixed-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 120px;
flex: 0 0 120px;
width: 120px;
max-width: 120px; }
.next-col-fixed-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 140px;
flex: 0 0 140px;
width: 140px;
max-width: 140px; }
.next-col-fixed-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 160px;
flex: 0 0 160px;
width: 160px;
max-width: 160px; }
.next-col-fixed-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 180px;
flex: 0 0 180px;
width: 180px;
max-width: 180px; }
.next-col-fixed-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 200px;
flex: 0 0 200px;
width: 200px;
max-width: 200px; }
.next-col-fixed-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 220px;
flex: 0 0 220px;
width: 220px;
max-width: 220px; }
.next-col-fixed-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 240px;
flex: 0 0 240px;
width: 240px;
max-width: 240px; }
.next-col-fixed-13 {
-webkit-box-flex: 0;
-ms-flex: 0 0 260px;
flex: 0 0 260px;
width: 260px;
max-width: 260px; }
.next-col-fixed-14 {
-webkit-box-flex: 0;
-ms-flex: 0 0 280px;
flex: 0 0 280px;
width: 280px;
max-width: 280px; }
.next-col-fixed-15 {
-webkit-box-flex: 0;
-ms-flex: 0 0 300px;
flex: 0 0 300px;
width: 300px;
max-width: 300px; }
.next-col-fixed-16 {
-webkit-box-flex: 0;
-ms-flex: 0 0 320px;
flex: 0 0 320px;
width: 320px;
max-width: 320px; }
.next-col-fixed-17 {
-webkit-box-flex: 0;
-ms-flex: 0 0 340px;
flex: 0 0 340px;
width: 340px;
max-width: 340px; }
.next-col-fixed-18 {
-webkit-box-flex: 0;
-ms-flex: 0 0 360px;
flex: 0 0 360px;
width: 360px;
max-width: 360px; }
.next-col-fixed-19 {
-webkit-box-flex: 0;
-ms-flex: 0 0 380px;
flex: 0 0 380px;
width: 380px;
max-width: 380px; }
.next-col-fixed-20 {
-webkit-box-flex: 0;
-ms-flex: 0 0 400px;
flex: 0 0 400px;
width: 400px;
max-width: 400px; }
.next-col-fixed-21 {
-webkit-box-flex: 0;
-ms-flex: 0 0 420px;
flex: 0 0 420px;
width: 420px;
max-width: 420px; }
.next-col-fixed-22 {
-webkit-box-flex: 0;
-ms-flex: 0 0 440px;
flex: 0 0 440px;
width: 440px;
max-width: 440px; }
.next-col-fixed-23 {
-webkit-box-flex: 0;
-ms-flex: 0 0 460px;
flex: 0 0 460px;
width: 460px;
max-width: 460px; }
.next-col-fixed-24 {
-webkit-box-flex: 0;
-ms-flex: 0 0 480px;
flex: 0 0 480px;
width: 480px;
max-width: 480px; }
.next-col-fixed-25 {
-webkit-box-flex: 0;
-ms-flex: 0 0 500px;
flex: 0 0 500px;
width: 500px;
max-width: 500px; }
.next-col-fixed-26 {
-webkit-box-flex: 0;
-ms-flex: 0 0 520px;
flex: 0 0 520px;
width: 520px;
max-width: 520px; }
.next-col-fixed-27 {
-webkit-box-flex: 0;
-ms-flex: 0 0 540px;
flex: 0 0 540px;
width: 540px;
max-width: 540px; }
.next-col-fixed-28 {
-webkit-box-flex: 0;
-ms-flex: 0 0 560px;
flex: 0 0 560px;
width: 560px;
max-width: 560px; }
.next-col-fixed-29 {
-webkit-box-flex: 0;
-ms-flex: 0 0 580px;
flex: 0 0 580px;
width: 580px;
max-width: 580px; }
.next-col-fixed-30 {
-webkit-box-flex: 0;
-ms-flex: 0 0 600px;
flex: 0 0 600px;
width: 600px;
max-width: 600px; }
.next-col-offset-1 {
margin-left: 4.16667%; }
.next-col-offset-2 {
margin-left: 8.33333%; }
.next-col-offset-3 {
margin-left: 12.5%; }
.next-col-offset-4 {
margin-left: 16.66667%; }
.next-col-offset-5 {
margin-left: 20.83333%; }
.next-col-offset-6 {
margin-left: 25%; }
.next-col-offset-7 {
margin-left: 29.16667%; }
.next-col-offset-8 {
margin-left: 33.33333%; }
.next-col-offset-9 {
margin-left: 37.5%; }
.next-col-offset-10 {
margin-left: 41.66667%; }
.next-col-offset-11 {
margin-left: 45.83333%; }
.next-col-offset-12 {
margin-left: 50%; }
.next-col-offset-13 {
margin-left: 54.16667%; }
.next-col-offset-14 {
margin-left: 58.33333%; }
.next-col-offset-15 {
margin-left: 62.5%; }
.next-col-offset-16 {
margin-left: 66.66667%; }
.next-col-offset-17 {
margin-left: 70.83333%; }
.next-col-offset-18 {
margin-left: 75%; }
.next-col-offset-19 {
margin-left: 79.16667%; }
.next-col-offset-20 {
margin-left: 83.33333%; }
.next-col-offset-21 {
margin-left: 87.5%; }
.next-col-offset-22 {
margin-left: 91.66667%; }
.next-col-offset-23 {
margin-left: 95.83333%; }
.next-col-offset-24 {
margin-left: 100%; }
@media (min-width: 320px) {
.next-col-xxs-offset-1 {
margin-left: 4.16667%; }
.next-col-xxs-offset-2 {
margin-left: 8.33333%; }
.next-col-xxs-offset-3 {
margin-left: 12.5%; }
.next-col-xxs-offset-4 {
margin-left: 16.66667%; }
.next-col-xxs-offset-5 {
margin-left: 20.83333%; }
.next-col-xxs-offset-6 {
margin-left: 25%; }
.next-col-xxs-offset-7 {
margin-left: 29.16667%; }
.next-col-xxs-offset-8 {
margin-left: 33.33333%; }
.next-col-xxs-offset-9 {
margin-left: 37.5%; }
.next-col-xxs-offset-10 {
margin-left: 41.66667%; }
.next-col-xxs-offset-11 {
margin-left: 45.83333%; }
.next-col-xxs-offset-12 {
margin-left: 50%; }
.next-col-xxs-offset-13 {
margin-left: 54.16667%; }
.next-col-xxs-offset-14 {
margin-left: 58.33333%; }
.next-col-xxs-offset-15 {
margin-left: 62.5%; }
.next-col-xxs-offset-16 {
margin-left: 66.66667%; }
.next-col-xxs-offset-17 {
margin-left: 70.83333%; }
.next-col-xxs-offset-18 {
margin-left: 75%; }
.next-col-xxs-offset-19 {
margin-left: 79.16667%; }
.next-col-xxs-offset-20 {
margin-left: 83.33333%; }
.next-col-xxs-offset-21 {
margin-left: 87.5%; }
.next-col-xxs-offset-22 {
margin-left: 91.66667%; }
.next-col-xxs-offset-23 {
margin-left: 95.83333%; }
.next-col-xxs-offset-24 {
margin-left: 100%; } }
@media (min-width: 480px) {
.next-col-xs-offset-1 {
margin-left: 4.16667%; }
.next-col-xs-offset-2 {
margin-left: 8.33333%; }
.next-col-xs-offset-3 {
margin-left: 12.5%; }
.next-col-xs-offset-4 {
margin-left: 16.66667%; }
.next-col-xs-offset-5 {
margin-left: 20.83333%; }
.next-col-xs-offset-6 {
margin-left: 25%; }
.next-col-xs-offset-7 {
margin-left: 29.16667%; }
.next-col-xs-offset-8 {
margin-left: 33.33333%; }
.next-col-xs-offset-9 {
margin-left: 37.5%; }
.next-col-xs-offset-10 {
margin-left: 41.66667%; }
.next-col-xs-offset-11 {
margin-left: 45.83333%; }
.next-col-xs-offset-12 {
margin-left: 50%; }
.next-col-xs-offset-13 {
margin-left: 54.16667%; }
.next-col-xs-offset-14 {
margin-left: 58.33333%; }
.next-col-xs-offset-15 {
margin-left: 62.5%; }
.next-col-xs-offset-16 {
margin-left: 66.66667%; }
.next-col-xs-offset-17 {
margin-left: 70.83333%; }
.next-col-xs-offset-18 {
margin-left: 75%; }
.next-col-xs-offset-19 {
margin-left: 79.16667%; }
.next-col-xs-offset-20 {
margin-left: 83.33333%; }
.next-col-xs-offset-21 {
margin-left: 87.5%; }
.next-col-xs-offset-22 {
margin-left: 91.66667%; }
.next-col-xs-offset-23 {
margin-left: 95.83333%; }
.next-col-xs-offset-24 {
margin-left: 100%; } }
@media (min-width: 720px) {
.next-col-s-offset-1 {
margin-left: 4.16667%; }
.next-col-s-offset-2 {
margin-left: 8.33333%; }
.next-col-s-offset-3 {
margin-left: 12.5%; }
.next-col-s-offset-4 {
margin-left: 16.66667%; }
.next-col-s-offset-5 {
margin-left: 20.83333%; }
.next-col-s-offset-6 {
margin-left: 25%; }
.next-col-s-offset-7 {
margin-left: 29.16667%; }
.next-col-s-offset-8 {
margin-left: 33.33333%; }
.next-col-s-offset-9 {
margin-left: 37.5%; }
.next-col-s-offset-10 {
margin-left: 41.66667%; }
.next-col-s-offset-11 {
margin-left: 45.83333%; }
.next-col-s-offset-12 {
margin-left: 50%; }
.next-col-s-offset-13 {
margin-left: 54.16667%; }
.next-col-s-offset-14 {
margin-left: 58.33333%; }
.next-col-s-offset-15 {
margin-left: 62.5%; }
.next-col-s-offset-16 {
margin-left: 66.66667%; }
.next-col-s-offset-17 {
margin-left: 70.83333%; }
.next-col-s-offset-18 {
margin-left: 75%; }
.next-col-s-offset-19 {
margin-left: 79.16667%; }
.next-col-s-offset-20 {
margin-left: 83.33333%; }
.next-col-s-offset-21 {
margin-left: 87.5%; }
.next-col-s-offset-22 {
margin-left: 91.66667%; }
.next-col-s-offset-23 {
margin-left: 95.83333%; }
.next-col-s-offset-24 {
margin-left: 100%; } }
@media (min-width: 990px) {
.next-col-m-offset-1 {
margin-left: 4.16667%; }
.next-col-m-offset-2 {
margin-left: 8.33333%; }
.next-col-m-offset-3 {
margin-left: 12.5%; }
.next-col-m-offset-4 {
margin-left: 16.66667%; }
.next-col-m-offset-5 {
margin-left: 20.83333%; }
.next-col-m-offset-6 {
margin-left: 25%; }
.next-col-m-offset-7 {
margin-left: 29.16667%; }
.next-col-m-offset-8 {
margin-left: 33.33333%; }
.next-col-m-offset-9 {
margin-left: 37.5%; }
.next-col-m-offset-10 {
margin-left: 41.66667%; }
.next-col-m-offset-11 {
margin-left: 45.83333%; }
.next-col-m-offset-12 {
margin-left: 50%; }
.next-col-m-offset-13 {
margin-left: 54.16667%; }
.next-col-m-offset-14 {
margin-left: 58.33333%; }
.next-col-m-offset-15 {
margin-left: 62.5%; }
.next-col-m-offset-16 {
margin-left: 66.66667%; }
.next-col-m-offset-17 {
margin-left: 70.83333%; }
.next-col-m-offset-18 {
margin-left: 75%; }
.next-col-m-offset-19 {
margin-left: 79.16667%; }
.next-col-m-offset-20 {
margin-left: 83.33333%; }
.next-col-m-offset-21 {
margin-left: 87.5%; }
.next-col-m-offset-22 {
margin-left: 91.66667%; }
.next-col-m-offset-23 {
margin-left: 95.83333%; }
.next-col-m-offset-24 {
margin-left: 100%; } }
@media (min-width: 1200px) {
.next-col-l-offset-1 {
margin-left: 4.16667%; }
.next-col-l-offset-2 {
margin-left: 8.33333%; }
.next-col-l-offset-3 {
margin-left: 12.5%; }
.next-col-l-offset-4 {
margin-left: 16.66667%; }
.next-col-l-offset-5 {
margin-left: 20.83333%; }
.next-col-l-offset-6 {
margin-left: 25%; }
.next-col-l-offset-7 {
margin-left: 29.16667%; }
.next-col-l-offset-8 {
margin-left: 33.33333%; }
.next-col-l-offset-9 {
margin-left: 37.5%; }
.next-col-l-offset-10 {
margin-left: 41.66667%; }
.next-col-l-offset-11 {
margin-left: 45.83333%; }
.next-col-l-offset-12 {
margin-left: 50%; }
.next-col-l-offset-13 {
margin-left: 54.16667%; }
.next-col-l-offset-14 {
margin-left: 58.33333%; }
.next-col-l-offset-15 {
margin-left: 62.5%; }
.next-col-l-offset-16 {
margin-left: 66.66667%; }
.next-col-l-offset-17 {
margin-left: 70.83333%; }
.next-col-l-offset-18 {
margin-left: 75%; }
.next-col-l-offset-19 {
margin-left: 79.16667%; }
.next-col-l-offset-20 {
margin-left: 83.33333%; }
.next-col-l-offset-21 {
margin-left: 87.5%; }
.next-col-l-offset-22 {
margin-left: 91.66667%; }
.next-col-l-offset-23 {
margin-left: 95.83333%; }
.next-col-l-offset-24 {
margin-left: 100%; } }
@media (min-width: 1500px) {
.next-col-xl-offset-1 {
margin-left: 4.16667%; }
.next-col-xl-offset-2 {
margin-left: 8.33333%; }
.next-col-xl-offset-3 {
margin-left: 12.5%; }
.next-col-xl-offset-4 {
margin-left: 16.66667%; }
.next-col-xl-offset-5 {
margin-left: 20.83333%; }
.next-col-xl-offset-6 {
margin-left: 25%; }
.next-col-xl-offset-7 {
margin-left: 29.16667%; }
.next-col-xl-offset-8 {
margin-left: 33.33333%; }
.next-col-xl-offset-9 {
margin-left: 37.5%; }
.next-col-xl-offset-10 {
margin-left: 41.66667%; }
.next-col-xl-offset-11 {
margin-left: 45.83333%; }
.next-col-xl-offset-12 {
margin-left: 50%; }
.next-col-xl-offset-13 {
margin-left: 54.16667%; }
.next-col-xl-offset-14 {
margin-left: 58.33333%; }
.next-col-xl-offset-15 {
margin-left: 62.5%; }
.next-col-xl-offset-16 {
margin-left: 66.66667%; }
.next-col-xl-offset-17 {
margin-left: 70.83333%; }
.next-col-xl-offset-18 {
margin-left: 75%; }
.next-col-xl-offset-19 {
margin-left: 79.16667%; }
.next-col-xl-offset-20 {
margin-left: 83.33333%; }
.next-col-xl-offset-21 {
margin-left: 87.5%; }
.next-col-xl-offset-22 {
margin-left: 91.66667%; }
.next-col-xl-offset-23 {
margin-left: 95.83333%; }
.next-col-xl-offset-24 {
margin-left: 100%; } }
.next-col-offset-fixed-1 {
margin-left: 20px; }
.next-col-offset-fixed-2 {
margin-left: 40px; }
.next-col-offset-fixed-3 {
margin-left: 60px; }
.next-col-offset-fixed-4 {
margin-left: 80px; }
.next-col-offset-fixed-5 {
margin-left: 100px; }
.next-col-offset-fixed-6 {
margin-left: 120px; }
.next-col-offset-fixed-7 {
margin-left: 140px; }
.next-col-offset-fixed-8 {
margin-left: 160px; }
.next-col-offset-fixed-9 {
margin-left: 180px; }
.next-col-offset-fixed-10 {
margin-left: 200px; }
.next-col-offset-fixed-11 {
margin-left: 220px; }
.next-col-offset-fixed-12 {
margin-left: 240px; }
.next-col-offset-fixed-13 {
margin-left: 260px; }
.next-col-offset-fixed-14 {
margin-left: 280px; }
.next-col-offset-fixed-15 {
margin-left: 300px; }
.next-col-offset-fixed-16 {
margin-left: 320px; }
.next-col-offset-fixed-17 {
margin-left: 340px; }
.next-col-offset-fixed-18 {
margin-left: 360px; }
.next-col-offset-fixed-19 {
margin-left: 380px; }
.next-col-offset-fixed-20 {
margin-left: 400px; }
.next-col-offset-fixed-21 {
margin-left: 420px; }
.next-col-offset-fixed-22 {
margin-left: 440px; }
.next-col-offset-fixed-23 {
margin-left: 460px; }
.next-col-offset-fixed-24 {
margin-left: 480px; }
.next-col-offset-fixed-25 {
margin-left: 500px; }
.next-col-offset-fixed-26 {
margin-left: 520px; }
.next-col-offset-fixed-27 {
margin-left: 540px; }
.next-col-offset-fixed-28 {
margin-left: 560px; }
.next-col-offset-fixed-29 {
margin-left: 580px; }
.next-col-offset-fixed-30 {
margin-left: 600px; }
.next-col-offset-fixed-xxs-1 {
margin-left: 20px; }
.next-col-offset-fixed-xxs-2 {
margin-left: 40px; }
.next-col-offset-fixed-xxs-3 {
margin-left: 60px; }
.next-col-offset-fixed-xxs-4 {
margin-left: 80px; }
.next-col-offset-fixed-xxs-5 {
margin-left: 100px; }
.next-col-offset-fixed-xxs-6 {
margin-left: 120px; }
.next-col-offset-fixed-xxs-7 {
margin-left: 140px; }
.next-col-offset-fixed-xxs-8 {
margin-left: 160px; }
.next-col-offset-fixed-xxs-9 {
margin-left: 180px; }
.next-col-offset-fixed-xxs-10 {
margin-left: 200px; }
.next-col-offset-fixed-xxs-11 {
margin-left: 220px; }
.next-col-offset-fixed-xxs-12 {
margin-left: 240px; }
.next-col-offset-fixed-xxs-13 {
margin-left: 260px; }
.next-col-offset-fixed-xxs-14 {
margin-left: 280px; }
.next-col-offset-fixed-xxs-15 {
margin-left: 300px; }
.next-col-offset-fixed-xxs-16 {
margin-left: 320px; }
.next-col-offset-fixed-xxs-17 {
margin-left: 340px; }
.next-col-offset-fixed-xxs-18 {
margin-left: 360px; }
.next-col-offset-fixed-xxs-19 {
margin-left: 380px; }
.next-col-offset-fixed-xxs-20 {
margin-left: 400px; }
.next-col-offset-fixed-xxs-21 {
margin-left: 420px; }
.next-col-offset-fixed-xxs-22 {
margin-left: 440px; }
.next-col-offset-fixed-xxs-23 {
margin-left: 460px; }
.next-col-offset-fixed-xxs-24 {
margin-left: 480px; }
.next-col-offset-fixed-xxs-25 {
margin-left: 500px; }
.next-col-offset-fixed-xxs-26 {
margin-left: 520px; }
.next-col-offset-fixed-xxs-27 {
margin-left: 540px; }
.next-col-offset-fixed-xxs-28 {
margin-left: 560px; }
.next-col-offset-fixed-xxs-29 {
margin-left: 580px; }
.next-col-offset-fixed-xxs-30 {
margin-left: 600px; }
.next-col-offset-fixed-xs-1 {
margin-left: 20px; }
.next-col-offset-fixed-xs-2 {
margin-left: 40px; }
.next-col-offset-fixed-xs-3 {
margin-left: 60px; }
.next-col-offset-fixed-xs-4 {
margin-left: 80px; }
.next-col-offset-fixed-xs-5 {
margin-left: 100px; }
.next-col-offset-fixed-xs-6 {
margin-left: 120px; }
.next-col-offset-fixed-xs-7 {
margin-left: 140px; }
.next-col-offset-fixed-xs-8 {
margin-left: 160px; }
.next-col-offset-fixed-xs-9 {
margin-left: 180px; }
.next-col-offset-fixed-xs-10 {
margin-left: 200px; }
.next-col-offset-fixed-xs-11 {
margin-left: 220px; }
.next-col-offset-fixed-xs-12 {
margin-left: 240px; }
.next-col-offset-fixed-xs-13 {
margin-left: 260px; }
.next-col-offset-fixed-xs-14 {
margin-left: 280px; }
.next-col-offset-fixed-xs-15 {
margin-left: 300px; }
.next-col-offset-fixed-xs-16 {
margin-left: 320px; }
.next-col-offset-fixed-xs-17 {
margin-left: 340px; }
.next-col-offset-fixed-xs-18 {
margin-left: 360px; }
.next-col-offset-fixed-xs-19 {
margin-left: 380px; }
.next-col-offset-fixed-xs-20 {
margin-left: 400px; }
.next-col-offset-fixed-xs-21 {
margin-left: 420px; }
.next-col-offset-fixed-xs-22 {
margin-left: 440px; }
.next-col-offset-fixed-xs-23 {
margin-left: 460px; }
.next-col-offset-fixed-xs-24 {
margin-left: 480px; }
.next-col-offset-fixed-xs-25 {
margin-left: 500px; }
.next-col-offset-fixed-xs-26 {
margin-left: 520px; }
.next-col-offset-fixed-xs-27 {
margin-left: 540px; }
.next-col-offset-fixed-xs-28 {
margin-left: 560px; }
.next-col-offset-fixed-xs-29 {
margin-left: 580px; }
.next-col-offset-fixed-xs-30 {
margin-left: 600px; }
.next-col-offset-fixed-s-1 {
margin-left: 20px; }
.next-col-offset-fixed-s-2 {
margin-left: 40px; }
.next-col-offset-fixed-s-3 {
margin-left: 60px; }
.next-col-offset-fixed-s-4 {
margin-left: 80px; }
.next-col-offset-fixed-s-5 {
margin-left: 100px; }
.next-col-offset-fixed-s-6 {
margin-left: 120px; }
.next-col-offset-fixed-s-7 {
margin-left: 140px; }
.next-col-offset-fixed-s-8 {
margin-left: 160px; }
.next-col-offset-fixed-s-9 {
margin-left: 180px; }
.next-col-offset-fixed-s-10 {
margin-left: 200px; }
.next-col-offset-fixed-s-11 {
margin-left: 220px; }
.next-col-offset-fixed-s-12 {
margin-left: 240px; }
.next-col-offset-fixed-s-13 {
margin-left: 260px; }
.next-col-offset-fixed-s-14 {
margin-left: 280px; }
.next-col-offset-fixed-s-15 {
margin-left: 300px; }
.next-col-offset-fixed-s-16 {
margin-left: 320px; }
.next-col-offset-fixed-s-17 {
margin-left: 340px; }
.next-col-offset-fixed-s-18 {
margin-left: 360px; }
.next-col-offset-fixed-s-19 {
margin-left: 380px; }
.next-col-offset-fixed-s-20 {
margin-left: 400px; }
.next-col-offset-fixed-s-21 {
margin-left: 420px; }
.next-col-offset-fixed-s-22 {
margin-left: 440px; }
.next-col-offset-fixed-s-23 {
margin-left: 460px; }
.next-col-offset-fixed-s-24 {
margin-left: 480px; }
.next-col-offset-fixed-s-25 {
margin-left: 500px; }
.next-col-offset-fixed-s-26 {
margin-left: 520px; }
.next-col-offset-fixed-s-27 {
margin-left: 540px; }
.next-col-offset-fixed-s-28 {
margin-left: 560px; }
.next-col-offset-fixed-s-29 {
margin-left: 580px; }
.next-col-offset-fixed-s-30 {
margin-left: 600px; }
.next-col-offset-fixed-m-1 {
margin-left: 20px; }
.next-col-offset-fixed-m-2 {
margin-left: 40px; }
.next-col-offset-fixed-m-3 {
margin-left: 60px; }
.next-col-offset-fixed-m-4 {
margin-left: 80px; }
.next-col-offset-fixed-m-5 {
margin-left: 100px; }
.next-col-offset-fixed-m-6 {
margin-left: 120px; }
.next-col-offset-fixed-m-7 {
margin-left: 140px; }
.next-col-offset-fixed-m-8 {
margin-left: 160px; }
.next-col-offset-fixed-m-9 {
margin-left: 180px; }
.next-col-offset-fixed-m-10 {
margin-left: 200px; }
.next-col-offset-fixed-m-11 {
margin-left: 220px; }
.next-col-offset-fixed-m-12 {
margin-left: 240px; }
.next-col-offset-fixed-m-13 {
margin-left: 260px; }
.next-col-offset-fixed-m-14 {
margin-left: 280px; }
.next-col-offset-fixed-m-15 {
margin-left: 300px; }
.next-col-offset-fixed-m-16 {
margin-left: 320px; }
.next-col-offset-fixed-m-17 {
margin-left: 340px; }
.next-col-offset-fixed-m-18 {
margin-left: 360px; }
.next-col-offset-fixed-m-19 {
margin-left: 380px; }
.next-col-offset-fixed-m-20 {
margin-left: 400px; }
.next-col-offset-fixed-m-21 {
margin-left: 420px; }
.next-col-offset-fixed-m-22 {
margin-left: 440px; }
.next-col-offset-fixed-m-23 {
margin-left: 460px; }
.next-col-offset-fixed-m-24 {
margin-left: 480px; }
.next-col-offset-fixed-m-25 {
margin-left: 500px; }
.next-col-offset-fixed-m-26 {
margin-left: 520px; }
.next-col-offset-fixed-m-27 {
margin-left: 540px; }
.next-col-offset-fixed-m-28 {
margin-left: 560px; }
.next-col-offset-fixed-m-29 {
margin-left: 580px; }
.next-col-offset-fixed-m-30 {
margin-left: 600px; }
.next-col-offset-fixed-l-1 {
margin-left: 20px; }
.next-col-offset-fixed-l-2 {
margin-left: 40px; }
.next-col-offset-fixed-l-3 {
margin-left: 60px; }
.next-col-offset-fixed-l-4 {
margin-left: 80px; }
.next-col-offset-fixed-l-5 {
margin-left: 100px; }
.next-col-offset-fixed-l-6 {
margin-left: 120px; }
.next-col-offset-fixed-l-7 {
margin-left: 140px; }
.next-col-offset-fixed-l-8 {
margin-left: 160px; }
.next-col-offset-fixed-l-9 {
margin-left: 180px; }
.next-col-offset-fixed-l-10 {
margin-left: 200px; }
.next-col-offset-fixed-l-11 {
margin-left: 220px; }
.next-col-offset-fixed-l-12 {
margin-left: 240px; }
.next-col-offset-fixed-l-13 {
margin-left: 260px; }
.next-col-offset-fixed-l-14 {
margin-left: 280px; }
.next-col-offset-fixed-l-15 {
margin-left: 300px; }
.next-col-offset-fixed-l-16 {
margin-left: 320px; }
.next-col-offset-fixed-l-17 {
margin-left: 340px; }
.next-col-offset-fixed-l-18 {
margin-left: 360px; }
.next-col-offset-fixed-l-19 {
margin-left: 380px; }
.next-col-offset-fixed-l-20 {
margin-left: 400px; }
.next-col-offset-fixed-l-21 {
margin-left: 420px; }
.next-col-offset-fixed-l-22 {
margin-left: 440px; }
.next-col-offset-fixed-l-23 {
margin-left: 460px; }
.next-col-offset-fixed-l-24 {
margin-left: 480px; }
.next-col-offset-fixed-l-25 {
margin-left: 500px; }
.next-col-offset-fixed-l-26 {
margin-left: 520px; }
.next-col-offset-fixed-l-27 {
margin-left: 540px; }
.next-col-offset-fixed-l-28 {
margin-left: 560px; }
.next-col-offset-fixed-l-29 {
margin-left: 580px; }
.next-col-offset-fixed-l-30 {
margin-left: 600px; }
.next-col-offset-fixed-xl-1 {
margin-left: 20px; }
.next-col-offset-fixed-xl-2 {
margin-left: 40px; }
.next-col-offset-fixed-xl-3 {
margin-left: 60px; }
.next-col-offset-fixed-xl-4 {
margin-left: 80px; }
.next-col-offset-fixed-xl-5 {
margin-left: 100px; }
.next-col-offset-fixed-xl-6 {
margin-left: 120px; }
.next-col-offset-fixed-xl-7 {
margin-left: 140px; }
.next-col-offset-fixed-xl-8 {
margin-left: 160px; }
.next-col-offset-fixed-xl-9 {
margin-left: 180px; }
.next-col-offset-fixed-xl-10 {
margin-left: 200px; }
.next-col-offset-fixed-xl-11 {
margin-left: 220px; }
.next-col-offset-fixed-xl-12 {
margin-left: 240px; }
.next-col-offset-fixed-xl-13 {
margin-left: 260px; }
.next-col-offset-fixed-xl-14 {
margin-left: 280px; }
.next-col-offset-fixed-xl-15 {
margin-left: 300px; }
.next-col-offset-fixed-xl-16 {
margin-left: 320px; }
.next-col-offset-fixed-xl-17 {
margin-left: 340px; }
.next-col-offset-fixed-xl-18 {
margin-left: 360px; }
.next-col-offset-fixed-xl-19 {
margin-left: 380px; }
.next-col-offset-fixed-xl-20 {
margin-left: 400px; }
.next-col-offset-fixed-xl-21 {
margin-left: 420px; }
.next-col-offset-fixed-xl-22 {
margin-left: 440px; }
.next-col-offset-fixed-xl-23 {
margin-left: 460px; }
.next-col-offset-fixed-xl-24 {
margin-left: 480px; }
.next-col-offset-fixed-xl-25 {
margin-left: 500px; }
.next-col-offset-fixed-xl-26 {
margin-left: 520px; }
.next-col-offset-fixed-xl-27 {
margin-left: 540px; }
.next-col-offset-fixed-xl-28 {
margin-left: 560px; }
.next-col-offset-fixed-xl-29 {
margin-left: 580px; }
.next-col-offset-fixed-xl-30 {
margin-left: 600px; }
.next-col.next-col-hidden {
display: none; }
@media (min-width: 320px) and (max-width: 479px) {
.next-col.next-col-xxs-hidden {
display: none; } }
@media (min-width: 480px) and (max-width: 719px) {
.next-col.next-col-xs-hidden {
display: none; } }
@media (min-width: 720px) and (max-width: 989px) {
.next-col.next-col-s-hidden {
display: none; } }
@media (min-width: 990px) and (max-width: 1199px) {
.next-col.next-col-m-hidden {
display: none; } }
@media (min-width: 1200px) and (max-width: 1499px) {
.next-col.next-col-l-hidden {
display: none; } }
@media (min-width: 1500px) {
.next-col.next-col-xl-hidden {
display: none; } }
.next-row.next-row-hidden {
display: none; }
@media (min-width: 320px) and (max-width: 479px) {
.next-row.next-row-xxs-hidden {
display: none; } }
@media (min-width: 480px) and (max-width: 719px) {
.next-row.next-row-xs-hidden {
display: none; } }
@media (min-width: 720px) and (max-width: 989px) {
.next-row.next-row-s-hidden {
display: none; } }
@media (min-width: 990px) and (max-width: 1199px) {
.next-row.next-row-m-hidden {
display: none; } }
@media (min-width: 1200px) and (max-width: 1499px) {
.next-row.next-row-l-hidden {
display: none; } }
@media (min-width: 1500px) {
.next-row.next-row-xl-hidden {
display: none; } }
.next-col-offset-1[dir="rtl"] {
margin-right: 4.16667%;
margin-left: auto; }
.next-col-offset-2[dir="rtl"] {
margin-right: 8.33333%;
margin-left: auto; }
.next-col-offset-3[dir="rtl"] {
margin-right: 12.5%;
margin-left: auto; }
.next-col-offset-4[dir="rtl"] {
margin-right: 16.66667%;
margin-left: auto; }
.next-col-offset-5[dir="rtl"] {
margin-right: 20.83333%;
margin-left: auto; }
.next-col-offset-6[dir="rtl"] {
margin-right: 25%;
margin-left: auto; }
.next-col-offset-7[dir="rtl"] {
margin-right: 29.16667%;
margin-left: auto; }
.next-col-offset-8[dir="rtl"] {
margin-right: 33.33333%;
margin-left: auto; }
.next-col-offset-9[dir="rtl"] {
margin-right: 37.5%;
margin-left: auto; }
.next-col-offset-10[dir="rtl"] {
margin-right: 41.66667%;
margin-left: auto; }
.next-col-offset-11[dir="rtl"] {
margin-right: 45.83333%;
margin-left: auto; }
.next-col-offset-12[dir="rtl"] {
margin-right: 50%;
margin-left: auto; }
.next-col-offset-13[dir="rtl"] {
margin-right: 54.16667%;
margin-left: auto; }
.next-col-offset-14[dir="rtl"] {
margin-right: 58.33333%;
margin-left: auto; }
.next-col-offset-15[dir="rtl"] {
margin-right: 62.5%;
margin-left: auto; }
.next-col-offset-16[dir="rtl"] {
margin-right: 66.66667%;
margin-left: auto; }
.next-col-offset-17[dir="rtl"] {
margin-right: 70.83333%;
margin-left: auto; }
.next-col-offset-18[dir="rtl"] {
margin-right: 75%;
margin-left: auto; }
.next-col-offset-19[dir="rtl"] {
margin-right: 79.16667%;
margin-left: auto; }
.next-col-offset-20[dir="rtl"] {
margin-right: 83.33333%;
margin-left: auto; }
.next-col-offset-21[dir="rtl"] {
margin-right: 87.5%;
margin-left: auto; }
.next-col-offset-22[dir="rtl"] {
margin-right: 91.66667%;
margin-left: auto; }
.next-col-offset-23[dir="rtl"] {
margin-right: 95.83333%;
margin-left: auto; }
.next-col-offset-24[dir="rtl"] {
margin-right: 100%;
margin-left: auto; }
@media (min-width: 320px) {
.next-col-xxs-offset-1[dir="rtl"] {
margin-right: 4.16667%;
margin-left: auto; }
.next-col-xxs-offset-2[dir="rtl"] {
margin-right: 8.33333%;
margin-left: auto; }
.next-col-xxs-offset-3[dir="rtl"] {
margin-right: 12.5%;
margin-left: auto; }
.next-col-xxs-offset-4[dir="rtl"] {
margin-right: 16.66667%;
margin-left: auto; }
.next-col-xxs-offset-5[dir="rtl"] {
margin-right: 20.83333%;
margin-left: auto; }
.next-col-xxs-offset-6[dir="rtl"] {
margin-right: 25%;
margin-left: auto; }
.next-col-xxs-offset-7[dir="rtl"] {
margin-right: 29.16667%;
margin-left: auto; }
.next-col-xxs-offset-8[dir="rtl"] {
margin-right: 33.33333%;
margin-left: auto; }
.next-col-xxs-offset-9[dir="rtl"] {
margin-right: 37.5%;
margin-left: auto; }
.next-col-xxs-offset-10[dir="rtl"] {
margin-right: 41.66667%;
margin-left: auto; }
.next-col-xxs-offset-11[dir="rtl"] {
margin-right: 45.83333%;
margin-left: auto; }
.next-col-xxs-offset-12[dir="rtl"] {
margin-right: 50%;
margin-left: auto; }
.next-col-xxs-offset-13[dir="rtl"] {
margin-right: 54.16667%;
margin-left: auto; }
.next-col-xxs-offset-14[dir="rtl"] {
margin-right: 58.33333%;
margin-left: auto; }
.next-col-xxs-offset-15[dir="rtl"] {
margin-right: 62.5%;
margin-left: auto; }
.next-col-xxs-offset-16[dir="rtl"] {
margin-right: 66.66667%;
margin-left: auto; }
.next-col-xxs-offset-17[dir="rtl"] {
margin-right: 70.83333%;
margin-left: auto; }
.next-col-xxs-offset-18[dir="rtl"] {
margin-right: 75%;
margin-left: auto; }
.next-col-xxs-offset-19[dir="rtl"] {
margin-right: 79.16667%;
margin-left: auto; }
.next-col-xxs-offset-20[dir="rtl"] {
margin-right: 83.33333%;
margin-left: auto; }
.next-col-xxs-offset-21[dir="rtl"] {
margin-right: 87.5%;
margin-left: auto; }
.next-col-xxs-offset-22[dir="rtl"] {
margin-right: 91.66667%;
margin-left: auto; }
.next-col-xxs-offset-23[dir="rtl"] {
margin-right: 95.83333%;
margin-left: auto; }
.next-col-xxs-offset-24[dir="rtl"] {
margin-right: 100%;
margin-left: auto; } }
@media (min-width: 480px) {
.next-col-xs-offset-1[dir="rtl"] {
margin-right: 4.16667%;
margin-left: auto; }
.next-col-xs-offset-2[dir="rtl"] {
margin-right: 8.33333%;
margin-left: auto; }
.next-col-xs-offset-3[dir="rtl"] {
margin-right: 12.5%;
margin-left: auto; }
.next-col-xs-offset-4[dir="rtl"] {
margin-right: 16.66667%;
margin-left: auto; }
.next-col-xs-offset-5[dir="rtl"] {
margin-right: 20.83333%;
margin-left: auto; }
.next-col-xs-offset-6[dir="rtl"] {
margin-right: 25%;
margin-left: auto; }
.next-col-xs-offset-7[dir="rtl"] {
margin-right: 29.16667%;
margin-left: auto; }
.next-col-xs-offset-8[dir="rtl"] {
margin-right: 33.33333%;
margin-left: auto; }
.next-col-xs-offset-9[dir="rtl"] {
margin-right: 37.5%;
margin-left: auto; }
.next-col-xs-offset-10[dir="rtl"] {
margin-right: 41.66667%;
margin-left: auto; }
.next-col-xs-offset-11[dir="rtl"] {
margin-right: 45.83333%;
margin-left: auto; }
.next-col-xs-offset-12[dir="rtl"] {
margin-right: 50%;
margin-left: auto; }
.next-col-xs-offset-13[dir="rtl"] {
margin-right: 54.16667%;
margin-left: auto; }
.next-col-xs-offset-14[dir="rtl"] {
margin-right: 58.33333%;
margin-left: auto; }
.next-col-xs-offset-15[dir="rtl"] {
margin-right: 62.5%;
margin-left: auto; }
.next-col-xs-offset-16[dir="rtl"] {
margin-right: 66.66667%;
margin-left: auto; }
.next-col-xs-offset-17[dir="rtl"] {
margin-right: 70.83333%;
margin-left: auto; }
.next-col-xs-offset-18[dir="rtl"] {
margin-right: 75%;
margin-left: auto; }
.next-col-xs-offset-19[dir="rtl"] {
margin-right: 79.16667%;
margin-left: auto; }
.next-col-xs-offset-20[dir="rtl"] {
margin-right: 83.33333%;
margin-left: auto; }
.next-col-xs-offset-21[dir="rtl"] {
margin-right: 87.5%;
margin-left: auto; }
.next-col-xs-offset-22[dir="rtl"] {
margin-right: 91.66667%;
margin-left: auto; }
.next-col-xs-offset-23[dir="rtl"] {
margin-right: 95.83333%;
margin-left: auto; }
.next-col-xs-offset-24[dir="rtl"] {
margin-right: 100%;
margin-left: auto; } }
@media (min-width: 720px) {
.next-col-s-offset-1[dir="rtl"] {
margin-right: 4.16667%;
margin-left: auto; }
.next-col-s-offset-2[dir="rtl"] {
margin-right: 8.33333%;
margin-left: auto; }
.next-col-s-offset-3[dir="rtl"] {
margin-right: 12.5%;
margin-left: auto; }
.next-col-s-offset-4[dir="rtl"] {
margin-right: 16.66667%;
margin-left: auto; }
.next-col-s-offset-5[dir="rtl"] {
margin-right: 20.83333%;
margin-left: auto; }
.next-col-s-offset-6[dir="rtl"] {
margin-right: 25%;
margin-left: auto; }
.next-col-s-offset-7[dir="rtl"] {
margin-right: 29.16667%;
margin-left: auto; }
.next-col-s-offset-8[dir="rtl"] {
margin-right: 33.33333%;
margin-left: auto; }
.next-col-s-offset-9[dir="rtl"] {
margin-right: 37.5%;
margin-left: auto; }
.next-col-s-offset-10[dir="rtl"] {
margin-right: 41.66667%;
margin-left: auto; }
.next-col-s-offset-11[dir="rtl"] {
margin-right: 45.83333%;
margin-left: auto; }
.next-col-s-offset-12[dir="rtl"] {
margin-right: 50%;
margin-left: auto; }
.next-col-s-offset-13[dir="rtl"] {
margin-right: 54.16667%;
margin-left: auto; }
.next-col-s-offset-14[dir="rtl"] {
margin-right: 58.33333%;
margin-left: auto; }
.next-col-s-offset-15[dir="rtl"] {
margin-right: 62.5%;
margin-left: auto; }
.next-col-s-offset-16[dir="rtl"] {
margin-right: 66.66667%;
margin-left: auto; }
.next-col-s-offset-17[dir="rtl"] {
margin-right: 70.83333%;
margin-left: auto; }
.next-col-s-offset-18[dir="rtl"] {
margin-right: 75%;
margin-left: auto; }
.next-col-s-offset-19[dir="rtl"] {
margin-right: 79.16667%;
margin-left: auto; }
.next-col-s-offset-20[dir="rtl"] {
margin-right: 83.33333%;
margin-left: auto; }
.next-col-s-offset-21[dir="rtl"] {
margin-right: 87.5%;
margin-left: auto; }
.next-col-s-offset-22[dir="rtl"] {
margin-right: 91.66667%;
margin-left: auto; }
.next-col-s-offset-23[dir="rtl"] {
margin-right: 95.83333%;
margin-left: auto; }
.next-col-s-offset-24[dir="rtl"] {
margin-right: 100%;
margin-left: auto; } }
@media (min-width: 990px) {
.next-col-m-offset-1[dir="rtl"] {
margin-right: 4.16667%;
margin-left: auto; }
.next-col-m-offset-2[dir="rtl"] {
margin-right: 8.33333%;
margin-left: auto; }
.next-col-m-offset-3[dir="rtl"] {
margin-right: 12.5%;
margin-left: auto; }
.next-col-m-offset-4[dir="rtl"] {
margin-right: 16.66667%;
margin-left: auto; }
.next-col-m-offset-5[dir="rtl"] {
margin-right: 20.83333%;
margin-left: auto; }
.next-col-m-offset-6[dir="rtl"] {
margin-right: 25%;
margin-left: auto; }
.next-col-m-offset-7[dir="rtl"] {
margin-right: 29.16667%;
margin-left: auto; }
.next-col-m-offset-8[dir="rtl"] {
margin-right: 33.33333%;
margin-left: auto; }
.next-col-m-offset-9[dir="rtl"] {
margin-right: 37.5%;
margin-left: auto; }
.next-col-m-offset-10[dir="rtl"] {
margin-right: 41.66667%;
margin-left: auto; }
.next-col-m-offset-11[dir="rtl"] {
margin-right: 45.83333%;
margin-left: auto; }
.next-col-m-offset-12[dir="rtl"] {
margin-right: 50%;
margin-left: auto; }
.next-col-m-offset-13[dir="rtl"] {
margin-right: 54.16667%;
margin-left: auto; }
.next-col-m-offset-14[dir="rtl"] {
margin-right: 58.33333%;
margin-left: auto; }
.next-col-m-offset-15[dir="rtl"] {
margin-right: 62.5%;
margin-left: auto; }
.next-col-m-offset-16[dir="rtl"] {
margin-right: 66.66667%;
margin-left: auto; }
.next-col-m-offset-17[dir="rtl"] {
margin-right: 70.83333%;
margin-left: auto; }
.next-col-m-offset-18[dir="rtl"] {
margin-right: 75%;
margin-left: auto; }
.next-col-m-offset-19[dir="rtl"] {
margin-right: 79.16667%;
margin-left: auto; }
.next-col-m-offset-20[dir="rtl"] {
margin-right: 83.33333%;
margin-left: auto; }
.next-col-m-offset-21[dir="rtl"] {
margin-right: 87.5%;
margin-left: auto; }
.next-col-m-offset-22[dir="rtl"] {
margin-right: 91.66667%;
margin-left: auto; }
.next-col-m-offset-23[dir="rtl"] {
margin-right: 95.83333%;
margin-left: auto; }
.next-col-m-offset-24[dir="rtl"] {
margin-right: 100%;
margin-left: auto; } }
@media (min-width: 1200px) {
.next-col-l-offset-1[dir="rtl"] {
margin-right: 4.16667%;
margin-left: auto; }
.next-col-l-offset-2[dir="rtl"] {
margin-right: 8.33333%;
margin-left: auto; }
.next-col-l-offset-3[dir="rtl"] {
margin-right: 12.5%;
margin-left: auto; }
.next-col-l-offset-4[dir="rtl"] {
margin-right: 16.66667%;
margin-left: auto; }
.next-col-l-offset-5[dir="rtl"] {
margin-right: 20.83333%;
margin-left: auto; }
.next-col-l-offset-6[dir="rtl"] {
margin-right: 25%;
margin-left: auto; }
.next-col-l-offset-7[dir="rtl"] {
margin-right: 29.16667%;
margin-left: auto; }
.next-col-l-offset-8[dir="rtl"] {
margin-right: 33.33333%;
margin-left: auto; }
.next-col-l-offset-9[dir="rtl"] {
margin-right: 37.5%;
margin-left: auto; }
.next-col-l-offset-10[dir="rtl"] {
margin-right: 41.66667%;
margin-left: auto; }
.next-col-l-offset-11[dir="rtl"] {
margin-right: 45.83333%;
margin-left: auto; }
.next-col-l-offset-12[dir="rtl"] {
margin-right: 50%;
margin-left: auto; }
.next-col-l-offset-13[dir="rtl"] {
margin-right: 54.16667%;
margin-left: auto; }
.next-col-l-offset-14[dir="rtl"] {
margin-right: 58.33333%;
margin-left: auto; }
.next-col-l-offset-15[dir="rtl"] {
margin-right: 62.5%;
margin-left: auto; }
.next-col-l-offset-16[dir="rtl"] {
margin-right: 66.66667%;
margin-left: auto; }
.next-col-l-offset-17[dir="rtl"] {
margin-right: 70.83333%;
margin-left: auto; }
.next-col-l-offset-18[dir="rtl"] {
margin-right: 75%;
margin-left: auto; }
.next-col-l-offset-19[dir="rtl"] {
margin-right: 79.16667%;
margin-left: auto; }
.next-col-l-offset-20[dir="rtl"] {
margin-right: 83.33333%;
margin-left: auto; }
.next-col-l-offset-21[dir="rtl"] {
margin-right: 87.5%;
margin-left: auto; }
.next-col-l-offset-22[dir="rtl"] {
margin-right: 91.66667%;
margin-left: auto; }
.next-col-l-offset-23[dir="rtl"] {
margin-right: 95.83333%;
margin-left: auto; }
.next-col-l-offset-24[dir="rtl"] {
margin-right: 100%;
margin-left: auto; } }
@media (min-width: 1500px) {
.next-col-xl-offset-1[dir="rtl"] {
margin-right: 4.16667%;
margin-left: auto; }
.next-col-xl-offset-2[dir="rtl"] {
margin-right: 8.33333%;
margin-left: auto; }
.next-col-xl-offset-3[dir="rtl"] {
margin-right: 12.5%;
margin-left: auto; }
.next-col-xl-offset-4[dir="rtl"] {
margin-right: 16.66667%;
margin-left: auto; }
.next-col-xl-offset-5[dir="rtl"] {
margin-right: 20.83333%;
margin-left: auto; }
.next-col-xl-offset-6[dir="rtl"] {
margin-right: 25%;
margin-left: auto; }
.next-col-xl-offset-7[dir="rtl"] {
margin-right: 29.16667%;
margin-left: auto; }
.next-col-xl-offset-8[dir="rtl"] {
margin-right: 33.33333%;
margin-left: auto; }
.next-col-xl-offset-9[dir="rtl"] {
margin-right: 37.5%;
margin-left: auto; }
.next-col-xl-offset-10[dir="rtl"] {
margin-right: 41.66667%;
margin-left: auto; }
.next-col-xl-offset-11[dir="rtl"] {
margin-right: 45.83333%;
margin-left: auto; }
.next-col-xl-offset-12[dir="rtl"] {
margin-right: 50%;
margin-left: auto; }
.next-col-xl-offset-13[dir="rtl"] {
margin-right: 54.16667%;
margin-left: auto; }
.next-col-xl-offset-14[dir="rtl"] {
margin-right: 58.33333%;
margin-left: auto; }
.next-col-xl-offset-15[dir="rtl"] {
margin-right: 62.5%;
margin-left: auto; }
.next-col-xl-offset-16[dir="rtl"] {
margin-right: 66.66667%;
margin-left: auto; }
.next-col-xl-offset-17[dir="rtl"] {
margin-right: 70.83333%;
margin-left: auto; }
.next-col-xl-offset-18[dir="rtl"] {
margin-right: 75%;
margin-left: auto; }
.next-col-xl-offset-19[dir="rtl"] {
margin-right: 79.16667%;
margin-left: auto; }
.next-col-xl-offset-20[dir="rtl"] {
margin-right: 83.33333%;
margin-left: auto; }
.next-col-xl-offset-21[dir="rtl"] {
margin-right: 87.5%;
margin-left: auto; }
.next-col-xl-offset-22[dir="rtl"] {
margin-right: 91.66667%;
margin-left: auto; }
.next-col-xl-offset-23[dir="rtl"] {
margin-right: 95.83333%;
margin-left: auto; }
.next-col-xl-offset-24[dir="rtl"] {
margin-right: 100%;
margin-left: auto; } }
.next-col-offset-fixed-1[dir="rtl"] {
margin-right: 20px;
margin-left: auto; }
.next-col-offset-fixed-2[dir="rtl"] {
margin-right: 40px;
margin-left: auto; }
.next-col-offset-fixed-3[dir="rtl"] {
margin-right: 60px;
margin-left: auto; }
.next-col-offset-fixed-4[dir="rtl"] {
margin-right: 80px;
margin-left: auto; }
.next-col-offset-fixed-5[dir="rtl"] {
margin-right: 100px;
margin-left: auto; }
.next-col-offset-fixed-6[dir="rtl"] {
margin-right: 120px;
margin-left: auto; }
.next-col-offset-fixed-7[dir="rtl"] {
margin-right: 140px;
margin-left: auto; }
.next-col-offset-fixed-8[dir="rtl"] {
margin-right: 160px;
margin-left: auto; }
.next-col-offset-fixed-9[dir="rtl"] {
margin-right: 180px;
margin-left: auto; }
.next-col-offset-fixed-10[dir="rtl"] {
margin-right: 200px;
margin-left: auto; }
.next-col-offset-fixed-11[dir="rtl"] {
margin-right: 220px;
margin-left: auto; }
.next-col-offset-fixed-12[dir="rtl"] {
margin-right: 240px;
margin-left: auto; }
.next-col-offset-fixed-13[dir="rtl"] {
margin-right: 260px;
margin-left: auto; }
.next-col-offset-fixed-14[dir="rtl"] {
margin-right: 280px;
margin-left: auto; }
.next-col-offset-fixed-15[dir="rtl"] {
margin-right: 300px;
margin-left: auto; }
.next-col-offset-fixed-16[dir="rtl"] {
margin-right: 320px;
margin-left: auto; }
.next-col-offset-fixed-17[dir="rtl"] {
margin-right: 340px;
margin-left: auto; }
.next-col-offset-fixed-18[dir="rtl"] {
margin-right: 360px;
margin-left: auto; }
.next-col-offset-fixed-19[dir="rtl"] {
margin-right: 380px;
margin-left: auto; }
.next-col-offset-fixed-20[dir="rtl"] {
margin-right: 400px;
margin-left: auto; }
.next-col-offset-fixed-21[dir="rtl"] {
margin-right: 420px;
margin-left: auto; }
.next-col-offset-fixed-22[dir="rtl"] {
margin-right: 440px;
margin-left: auto; }
.next-col-offset-fixed-23[dir="rtl"] {
margin-right: 460px;
margin-left: auto; }
.next-col-offset-fixed-24[dir="rtl"] {
margin-right: 480px;
margin-left: auto; }
.next-col-offset-fixed-25[dir="rtl"] {
margin-right: 500px;
margin-left: auto; }
.next-col-offset-fixed-26[dir="rtl"] {
margin-right: 520px;
margin-left: auto; }
.next-col-offset-fixed-27[dir="rtl"] {
margin-right: 540px;
margin-left: auto; }
.next-col-offset-fixed-28[dir="rtl"] {
margin-right: 560px;
margin-left: auto; }
.next-col-offset-fixed-29[dir="rtl"] {
margin-right: 580px;
margin-left: auto; }
.next-col-offset-fixed-30[dir="rtl"] {
margin-right: 600px;
margin-left: auto; }
.next-col-offset-fixed-xxs-1[dir="rtl"] {
margin-right: 20px;
margin-left: auto; }
.next-col-offset-fixed-xxs-2[dir="rtl"] {
margin-right: 40px;
margin-left: auto; }
.next-col-offset-fixed-xxs-3[dir="rtl"] {
margin-right: 60px;
margin-left: auto; }
.next-col-offset-fixed-xxs-4[dir="rtl"] {
margin-right: 80px;
margin-left: auto; }
.next-col-offset-fixed-xxs-5[dir="rtl"] {
margin-right: 100px;
margin-left: auto; }
.next-col-offset-fixed-xxs-6[dir="rtl"] {
margin-right: 120px;
margin-left: auto; }
.next-col-offset-fixed-xxs-7[dir="rtl"] {
margin-right: 140px;
margin-left: auto; }
.next-col-offset-fixed-xxs-8[dir="rtl"] {
margin-right: 160px;
margin-left: auto; }
.next-col-offset-fixed-xxs-9[dir="rtl"] {
margin-right: 180px;
margin-left: auto; }
.next-col-offset-fixed-xxs-10[dir="rtl"] {
margin-right: 200px;
margin-left: auto; }
.next-col-offset-fixed-xxs-11[dir="rtl"] {
margin-right: 220px;
margin-left: auto; }
.next-col-offset-fixed-xxs-12[dir="rtl"] {
margin-right: 240px;
margin-left: auto; }
.next-col-offset-fixed-xxs-13[dir="rtl"] {
margin-right: 260px;
margin-left: auto; }
.next-col-offset-fixed-xxs-14[dir="rtl"] {
margin-right: 280px;
margin-left: auto; }
.next-col-offset-fixed-xxs-15[dir="rtl"] {
margin-right: 300px;
margin-left: auto; }
.next-col-offset-fixed-xxs-16[dir="rtl"] {
margin-right: 320px;
margin-left: auto; }
.next-col-offset-fixed-xxs-17[dir="rtl"] {
margin-right: 340px;
margin-left: auto; }
.next-col-offset-fixed-xxs-18[dir="rtl"] {
margin-right: 360px;
margin-left: auto; }
.next-col-offset-fixed-xxs-19[dir="rtl"] {
margin-right: 380px;
margin-left: auto; }
.next-col-offset-fixed-xxs-20[dir="rtl"] {
margin-right: 400px;
margin-left: auto; }
.next-col-offset-fixed-xxs-21[dir="rtl"] {
margin-right: 420px;
margin-left: auto; }
.next-col-offset-fixed-xxs-22[dir="rtl"] {
margin-right: 440px;
margin-left: auto; }
.next-col-offset-fixed-xxs-23[dir="rtl"] {
margin-right: 460px;
margin-left: auto; }
.next-col-offset-fixed-xxs-24[dir="rtl"] {
margin-right: 480px;
margin-left: auto; }
.next-col-offset-fixed-xxs-25[dir="rtl"] {
margin-right: 500px;
margin-left: auto; }
.next-col-offset-fixed-xxs-26[dir="rtl"] {
margin-right: 520px;
margin-left: auto; }
.next-col-offset-fixed-xxs-27[dir="rtl"] {
margin-right: 540px;
margin-left: auto; }
.next-col-offset-fixed-xxs-28[dir="rtl"] {
margin-right: 560px;
margin-left: auto; }
.next-col-offset-fixed-xxs-29[dir="rtl"] {
margin-right: 580px;
margin-left: auto; }
.next-col-offset-fixed-xxs-30[dir="rtl"] {
margin-right: 600px;
margin-left: auto; }
.next-col-offset-fixed-xs-1[dir="rtl"] {
margin-right: 20px;
margin-left: auto; }
.next-col-offset-fixed-xs-2[dir="rtl"] {
margin-right: 40px;
margin-left: auto; }
.next-col-offset-fixed-xs-3[dir="rtl"] {
margin-right: 60px;
margin-left: auto; }
.next-col-offset-fixed-xs-4[dir="rtl"] {
margin-right: 80px;
margin-left: auto; }
.next-col-offset-fixed-xs-5[dir="rtl"] {
margin-right: 100px;
margin-left: auto; }
.next-col-offset-fixed-xs-6[dir="rtl"] {
margin-right: 120px;
margin-left: auto; }
.next-col-offset-fixed-xs-7[dir="rtl"] {
margin-right: 140px;
margin-left: auto; }
.next-col-offset-fixed-xs-8[dir="rtl"] {
margin-right: 160px;
margin-left: auto; }
.next-col-offset-fixed-xs-9[dir="rtl"] {
margin-right: 180px;
margin-left: auto; }
.next-col-offset-fixed-xs-10[dir="rtl"] {
margin-right: 200px;
margin-left: auto; }
.next-col-offset-fixed-xs-11[dir="rtl"] {
margin-right: 220px;
margin-left: auto; }
.next-col-offset-fixed-xs-12[dir="rtl"] {
margin-right: 240px;
margin-left: auto; }
.next-col-offset-fixed-xs-13[dir="rtl"] {
margin-right: 260px;
margin-left: auto; }
.next-col-offset-fixed-xs-14[dir="rtl"] {
margin-right: 280px;
margin-left: auto; }
.next-col-offset-fixed-xs-15[dir="rtl"] {
margin-right: 300px;
margin-left: auto; }
.next-col-offset-fixed-xs-16[dir="rtl"] {
margin-right: 320px;
margin-left: auto; }
.next-col-offset-fixed-xs-17[dir="rtl"] {
margin-right: 340px;
margin-left: auto; }
.next-col-offset-fixed-xs-18[dir="rtl"] {
margin-right: 360px;
margin-left: auto; }
.next-col-offset-fixed-xs-19[dir="rtl"] {
margin-right: 380px;
margin-left: auto; }
.next-col-offset-fixed-xs-20[dir="rtl"] {
margin-right: 400px;
margin-left: auto; }
.next-col-offset-fixed-xs-21[dir="rtl"] {
margin-right: 420px;
margin-left: auto; }
.next-col-offset-fixed-xs-22[dir="rtl"] {
margin-right: 440px;
margin-left: auto; }
.next-col-offset-fixed-xs-23[dir="rtl"] {
margin-right: 460px;
margin-left: auto; }
.next-col-offset-fixed-xs-24[dir="rtl"] {
margin-right: 480px;
margin-left: auto; }
.next-col-offset-fixed-xs-25[dir="rtl"] {
margin-right: 500px;
margin-left: auto; }
.next-col-offset-fixed-xs-26[dir="rtl"] {
margin-right: 520px;
margin-left: auto; }
.next-col-offset-fixed-xs-27[dir="rtl"] {
margin-right: 540px;
margin-left: auto; }
.next-col-offset-fixed-xs-28[dir="rtl"] {
margin-right: 560px;
margin-left: auto; }
.next-col-offset-fixed-xs-29[dir="rtl"] {
margin-right: 580px;
margin-left: auto; }
.next-col-offset-fixed-xs-30[dir="rtl"] {
margin-right: 600px;
margin-left: auto; }
.next-col-offset-fixed-s-1[dir="rtl"] {
margin-right: 20px;
margin-left: auto; }
.next-col-offset-fixed-s-2[dir="rtl"] {
margin-right: 40px;
margin-left: auto; }
.next-col-offset-fixed-s-3[dir="rtl"] {
margin-right: 60px;
margin-left: auto; }
.next-col-offset-fixed-s-4[dir="rtl"] {
margin-right: 80px;
margin-left: auto; }
.next-col-offset-fixed-s-5[dir="rtl"] {
margin-right: 100px;
margin-left: auto; }
.next-col-offset-fixed-s-6[dir="rtl"] {
margin-right: 120px;
margin-left: auto; }
.next-col-offset-fixed-s-7[dir="rtl"] {
margin-right: 140px;
margin-left: auto; }
.next-col-offset-fixed-s-8[dir="rtl"] {
margin-right: 160px;
margin-left: auto; }
.next-col-offset-fixed-s-9[dir="rtl"] {
margin-right: 180px;
margin-left: auto; }
.next-col-offset-fixed-s-10[dir="rtl"] {
margin-right: 200px;
margin-left: auto; }
.next-col-offset-fixed-s-11[dir="rtl"] {
margin-right: 220px;
margin-left: auto; }
.next-col-offset-fixed-s-12[dir="rtl"] {
margin-right: 240px;
margin-left: auto; }
.next-col-offset-fixed-s-13[dir="rtl"] {
margin-right: 260px;
margin-left: auto; }
.next-col-offset-fixed-s-14[dir="rtl"] {
margin-right: 280px;
margin-left: auto; }
.next-col-offset-fixed-s-15[dir="rtl"] {
margin-right: 300px;
margin-left: auto; }
.next-col-offset-fixed-s-16[dir="rtl"] {
margin-right: 320px;
margin-left: auto; }
.next-col-offset-fixed-s-17[dir="rtl"] {
margin-right: 340px;
margin-left: auto; }
.next-col-offset-fixed-s-18[dir="rtl"] {
margin-right: 360px;
margin-left: auto; }
.next-col-offset-fixed-s-19[dir="rtl"] {
margin-right: 380px;
margin-left: auto; }
.next-col-offset-fixed-s-20[dir="rtl"] {
margin-right: 400px;
margin-left: auto; }
.next-col-offset-fixed-s-21[dir="rtl"] {
margin-right: 420px;
margin-left: auto; }
.next-col-offset-fixed-s-22[dir="rtl"] {
margin-right: 440px;
margin-left: auto; }
.next-col-offset-fixed-s-23[dir="rtl"] {
margin-right: 460px;
margin-left: auto; }
.next-col-offset-fixed-s-24[dir="rtl"] {
margin-right: 480px;
margin-left: auto; }
.next-col-offset-fixed-s-25[dir="rtl"] {
margin-right: 500px;
margin-left: auto; }
.next-col-offset-fixed-s-26[dir="rtl"] {
margin-right: 520px;
margin-left: auto; }
.next-col-offset-fixed-s-27[dir="rtl"] {
margin-right: 540px;
margin-left: auto; }
.next-col-offset-fixed-s-28[dir="rtl"] {
margin-right: 560px;
margin-left: auto; }
.next-col-offset-fixed-s-29[dir="rtl"] {
margin-right: 580px;
margin-left: auto; }
.next-col-offset-fixed-s-30[dir="rtl"] {
margin-right: 600px;
margin-left: auto; }
.next-col-offset-fixed-m-1[dir="rtl"] {
margin-right: 20px;
margin-left: auto; }
.next-col-offset-fixed-m-2[dir="rtl"] {
margin-right: 40px;
margin-left: auto; }
.next-col-offset-fixed-m-3[dir="rtl"] {
margin-right: 60px;
margin-left: auto; }
.next-col-offset-fixed-m-4[dir="rtl"] {
margin-right: 80px;
margin-left: auto; }
.next-col-offset-fixed-m-5[dir="rtl"] {
margin-right: 100px;
margin-left: auto; }
.next-col-offset-fixed-m-6[dir="rtl"] {
margin-right: 120px;
margin-left: auto; }
.next-col-offset-fixed-m-7[dir="rtl"] {
margin-right: 140px;
margin-left: auto; }
.next-col-offset-fixed-m-8[dir="rtl"] {
margin-right: 160px;
margin-left: auto; }
.next-col-offset-fixed-m-9[dir="rtl"] {
margin-right: 180px;
margin-left: auto; }
.next-col-offset-fixed-m-10[dir="rtl"] {
margin-right: 200px;
margin-left: auto; }
.next-col-offset-fixed-m-11[dir="rtl"] {
margin-right: 220px;
margin-left: auto; }
.next-col-offset-fixed-m-12[dir="rtl"] {
margin-right: 240px;
margin-left: auto; }
.next-col-offset-fixed-m-13[dir="rtl"] {
margin-right: 260px;
margin-left: auto; }
.next-col-offset-fixed-m-14[dir="rtl"] {
margin-right: 280px;
margin-left: auto; }
.next-col-offset-fixed-m-15[dir="rtl"] {
margin-right: 300px;
margin-left: auto; }
.next-col-offset-fixed-m-16[dir="rtl"] {
margin-right: 320px;
margin-left: auto; }
.next-col-offset-fixed-m-17[dir="rtl"] {
margin-right: 340px;
margin-left: auto; }
.next-col-offset-fixed-m-18[dir="rtl"] {
margin-right: 360px;
margin-left: auto; }
.next-col-offset-fixed-m-19[dir="rtl"] {
margin-right: 380px;
margin-left: auto; }
.next-col-offset-fixed-m-20[dir="rtl"] {
margin-right: 400px;
margin-left: auto; }
.next-col-offset-fixed-m-21[dir="rtl"] {
margin-right: 420px;
margin-left: auto; }
.next-col-offset-fixed-m-22[dir="rtl"] {
margin-right: 440px;
margin-left: auto; }
.next-col-offset-fixed-m-23[dir="rtl"] {
margin-right: 460px;
margin-left: auto; }
.next-col-offset-fixed-m-24[dir="rtl"] {
margin-right: 480px;
margin-left: auto; }
.next-col-offset-fixed-m-25[dir="rtl"] {
margin-right: 500px;
margin-left: auto; }
.next-col-offset-fixed-m-26[dir="rtl"] {
margin-right: 520px;
margin-left: auto; }
.next-col-offset-fixed-m-27[dir="rtl"] {
margin-right: 540px;
margin-left: auto; }
.next-col-offset-fixed-m-28[dir="rtl"] {
margin-right: 560px;
margin-left: auto; }
.next-col-offset-fixed-m-29[dir="rtl"] {
margin-right: 580px;
margin-left: auto; }
.next-col-offset-fixed-m-30[dir="rtl"] {
margin-right: 600px;
margin-left: auto; }
.next-col-offset-fixed-l-1[dir="rtl"] {
margin-right: 20px;
margin-left: auto; }
.next-col-offset-fixed-l-2[dir="rtl"] {
margin-right: 40px;
margin-left: auto; }
.next-col-offset-fixed-l-3[dir="rtl"] {
margin-right: 60px;
margin-left: auto; }
.next-col-offset-fixed-l-4[dir="rtl"] {
margin-right: 80px;
margin-left: auto; }
.next-col-offset-fixed-l-5[dir="rtl"] {
margin-right: 100px;
margin-left: auto; }
.next-col-offset-fixed-l-6[dir="rtl"] {
margin-right: 120px;
margin-left: auto; }
.next-col-offset-fixed-l-7[dir="rtl"] {
margin-right: 140px;
margin-left: auto; }
.next-col-offset-fixed-l-8[dir="rtl"] {
margin-right: 160px;
margin-left: auto; }
.next-col-offset-fixed-l-9[dir="rtl"] {
margin-right: 180px;
margin-left: auto; }
.next-col-offset-fixed-l-10[dir="rtl"] {
margin-right: 200px;
margin-left: auto; }
.next-col-offset-fixed-l-11[dir="rtl"] {
margin-right: 220px;
margin-left: auto; }
.next-col-offset-fixed-l-12[dir="rtl"] {
margin-right: 240px;
margin-left: auto; }
.next-col-offset-fixed-l-13[dir="rtl"] {
margin-right: 260px;
margin-left: auto; }
.next-col-offset-fixed-l-14[dir="rtl"] {
margin-right: 280px;
margin-left: auto; }
.next-col-offset-fixed-l-15[dir="rtl"] {
margin-right: 300px;
margin-left: auto; }
.next-col-offset-fixed-l-16[dir="rtl"] {
margin-right: 320px;
margin-left: auto; }
.next-col-offset-fixed-l-17[dir="rtl"] {
margin-right: 340px;
margin-left: auto; }
.next-col-offset-fixed-l-18[dir="rtl"] {
margin-right: 360px;
margin-left: auto; }
.next-col-offset-fixed-l-19[dir="rtl"] {
margin-right: 380px;
margin-left: auto; }
.next-col-offset-fixed-l-20[dir="rtl"] {
margin-right: 400px;
margin-left: auto; }
.next-col-offset-fixed-l-21[dir="rtl"] {
margin-right: 420px;
margin-left: auto; }
.next-col-offset-fixed-l-22[dir="rtl"] {
margin-right: 440px;
margin-left: auto; }
.next-col-offset-fixed-l-23[dir="rtl"] {
margin-right: 460px;
margin-left: auto; }
.next-col-offset-fixed-l-24[dir="rtl"] {
margin-right: 480px;
margin-left: auto; }
.next-col-offset-fixed-l-25[dir="rtl"] {
margin-right: 500px;
margin-left: auto; }
.next-col-offset-fixed-l-26[dir="rtl"] {
margin-right: 520px;
margin-left: auto; }
.next-col-offset-fixed-l-27[dir="rtl"] {
margin-right: 540px;
margin-left: auto; }
.next-col-offset-fixed-l-28[dir="rtl"] {
margin-right: 560px;
margin-left: auto; }
.next-col-offset-fixed-l-29[dir="rtl"] {
margin-right: 580px;
margin-left: auto; }
.next-col-offset-fixed-l-30[dir="rtl"] {
margin-right: 600px;
margin-left: auto; }
.next-col-offset-fixed-xl-1[dir="rtl"] {
margin-right: 20px;
margin-left: auto; }
.next-col-offset-fixed-xl-2[dir="rtl"] {
margin-right: 40px;
margin-left: auto; }
.next-col-offset-fixed-xl-3[dir="rtl"] {
margin-right: 60px;
margin-left: auto; }
.next-col-offset-fixed-xl-4[dir="rtl"] {
margin-right: 80px;
margin-left: auto; }
.next-col-offset-fixed-xl-5[dir="rtl"] {
margin-right: 100px;
margin-left: auto; }
.next-col-offset-fixed-xl-6[dir="rtl"] {
margin-right: 120px;
margin-left: auto; }
.next-col-offset-fixed-xl-7[dir="rtl"] {
margin-right: 140px;
margin-left: auto; }
.next-col-offset-fixed-xl-8[dir="rtl"] {
margin-right: 160px;
margin-left: auto; }
.next-col-offset-fixed-xl-9[dir="rtl"] {
margin-right: 180px;
margin-left: auto; }
.next-col-offset-fixed-xl-10[dir="rtl"] {
margin-right: 200px;
margin-left: auto; }
.next-col-offset-fixed-xl-11[dir="rtl"] {
margin-right: 220px;
margin-left: auto; }
.next-col-offset-fixed-xl-12[dir="rtl"] {
margin-right: 240px;
margin-left: auto; }
.next-col-offset-fixed-xl-13[dir="rtl"] {
margin-right: 260px;
margin-left: auto; }
.next-col-offset-fixed-xl-14[dir="rtl"] {
margin-right: 280px;
margin-left: auto; }
.next-col-offset-fixed-xl-15[dir="rtl"] {
margin-right: 300px;
margin-left: auto; }
.next-col-offset-fixed-xl-16[dir="rtl"] {
margin-right: 320px;
margin-left: auto; }
.next-col-offset-fixed-xl-17[dir="rtl"] {
margin-right: 340px;
margin-left: auto; }
.next-col-offset-fixed-xl-18[dir="rtl"] {
margin-right: 360px;
margin-left: auto; }
.next-col-offset-fixed-xl-19[dir="rtl"] {
margin-right: 380px;
margin-left: auto; }
.next-col-offset-fixed-xl-20[dir="rtl"] {
margin-right: 400px;
margin-left: auto; }
.next-col-offset-fixed-xl-21[dir="rtl"] {
margin-right: 420px;
margin-left: auto; }
.next-col-offset-fixed-xl-22[dir="rtl"] {
margin-right: 440px;
margin-left: auto; }
.next-col-offset-fixed-xl-23[dir="rtl"] {
margin-right: 460px;
margin-left: auto; }
.next-col-offset-fixed-xl-24[dir="rtl"] {
margin-right: 480px;
margin-left: auto; }
.next-col-offset-fixed-xl-25[dir="rtl"] {
margin-right: 500px;
margin-left: auto; }
.next-col-offset-fixed-xl-26[dir="rtl"] {
margin-right: 520px;
margin-left: auto; }
.next-col-offset-fixed-xl-27[dir="rtl"] {
margin-right: 540px;
margin-left: auto; }
.next-col-offset-fixed-xl-28[dir="rtl"] {
margin-right: 560px;
margin-left: auto; }
.next-col-offset-fixed-xl-29[dir="rtl"] {
margin-right: 580px;
margin-left: auto; }
.next-col-offset-fixed-xl-30[dir="rtl"] {
margin-right: 600px;
margin-left: auto; }
/* put your code here */
.next-responsive-grid {
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: grid; }
.next-responsive-grid *,
.next-responsive-grid *:before,
.next-responsive-grid *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-responsive-grid-ie {
display: block; }
.next-form {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-form *,
.next-form *:before,
.next-form *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-form-preview.next-form-item.next-medium .next-form-item-label {
font-size: 12px;
line-height: 28px; }
.next-form-preview.next-form-item.next-small .next-form-item-label {
font-size: 12px;
line-height: 20px; }
.next-form-preview.next-form-item.next-large .next-form-item-label {
font-size: 16px;
line-height: 40px; }
.next-form-responsive-grid .next-form-item-control {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1; }
.next-form-responsive-grid .next-form-item {
margin-bottom: 0; }
.next-form-responsive-grid .next-form-item.next-left {
display: -webkit-box;
display: -ms-flexbox;
display: flex; }
.next-form-responsive-grid.next-small .next-responsive-grid {
gap: 16px; }
.next-form-responsive-grid.next-small .next-form-item.next-left .next-form-item-label {
line-height: 1.4;
margin-top: 4px;
margin-bottom: 4px; }
.next-form-responsive-grid.next-medium .next-responsive-grid {
gap: 20px; }
.next-form-responsive-grid.next-medium .next-form-item.next-left .next-form-item-label {
line-height: 1.4;
margin-top: 8px;
margin-bottom: 8px; }
.next-form-responsive-grid.next-large .next-responsive-grid {
gap: 24px; }
.next-form-responsive-grid.next-large .next-form-item.next-left .next-form-item-label {
line-height: 1.4;
margin-top: 12px;
margin-bottom: 12px; }
.next-form-item {
/* medium */
margin-bottom: 16px; }
.next-form-item.has-error > .next-form-item-control > .next-form-item-help {
color: #FF3000; }
.next-form-item.has-warning > .next-form-item-control > .next-form-item-help {
color: #FF9300; }
.next-form-item .next-form-item-label, .next-form-item .next-form-text-align, .next-form-item p {
line-height: 28px; }
.next-form-item .next-form-text-align, .next-form-item p {
margin: 0; }
.next-form-item .next-rating,
.next-form-item .next-checkbox-wrapper,
.next-form-item .next-checkbox-group,
.next-form-item .next-radio-wrapper,
.next-form-item .next-radio-group {
line-height: 24px; }
.next-form-item .next-form-preview {
font-size: 12px;
line-height: 28px; }
.next-form-item .next-form-preview.next-input-textarea > p {
font-size: 12px;
text-align: justify;
min-height: 16.8px;
line-height: 1.4;
margin-top: 5.6px; }
.next-form-item .next-form-item-label {
font-size: 12px; }
.next-form-item.next-large {
margin-bottom: 20px; }
.next-form-item.next-large .next-form-item-label, .next-form-item.next-large .next-form-text-align, .next-form-item.next-large p {
line-height: 40px; }
.next-form-item.next-large .next-rating,
.next-form-item.next-large .next-checkbox-wrapper,
.next-form-item.next-large .next-checkbox-group,
.next-form-item.next-large .next-radio-wrapper,
.next-form-item.next-large .next-radio-group {
line-height: 39px; }
.next-form-item.next-large .next-form-preview {
font-size: 16px;
line-height: 40px; }
.next-form-item.next-large .next-form-preview.next-input-textarea > p {
font-size: 16px;
text-align: justify;
min-height: 22.4px;
line-height: 1.4;
margin-top: 8.8px; }
.next-form-item.next-large .next-switch {
margin-top: 7px; }
.next-form-item.next-large .next-form-item-label {
font-size: 16px; }
.next-form-item.next-small {
margin-bottom: 12px; }
.next-form-item.next-small .next-form-item-label, .next-form-item.next-small .next-form-text-align, .next-form-item.next-small p {
line-height: 20px; }
.next-form-item.next-small .next-rating,
.next-form-item.next-small .next-checkbox-wrapper,
.next-form-item.next-small .next-checkbox-group,
.next-form-item.next-small .next-radio-wrapper,
.next-form-item.next-small .next-radio-group {
line-height: 20px; }
.next-form-item.next-small .next-form-preview {
font-size: 12px;
line-height: 20px; }
.next-form-item.next-small .next-form-preview.next-input-textarea > p {
font-size: 12px;
text-align: justify;
min-height: 16.8px;
line-height: 1.4;
margin-top: 1.6px; }
.next-form-item.next-small .next-form-item-label {
font-size: 12px; }
.next-form-item.next-top > .next-form-item-label {
margin-bottom: 2px; }
.next-form-item.next-inset .next-form-item-label {
padding-right: 0;
padding-left: 0;
line-height: inherit; }
.next-form-item-control .next-form-text-align {
margin: 0; }
.next-form-item-control > .next-input-group, .next-form-item-control > .next-input {
width: 100%; }
.next-form-item-fullwidth .next-form-item-control > .next-input-group,
.next-form-item-fullwidth .next-form-item-control > .next-input,
.next-form-item-fullwidth .next-form-item-control > .next-select,
.next-form-item-fullwidth .next-form-item-control > .next-date-picker,
.next-form-item-fullwidth .next-form-item-control > .next-month-picker,
.next-form-item-fullwidth .next-form-item-control > .next-year-picker,
.next-form-item-fullwidth .next-form-item-control > .next-range-picker,
.next-form-item-fullwidth .next-form-item-control > .next-time-picker {
width: 100%; }
.next-form-item-label {
display: inline-block;
vertical-align: top;
color: #666666;
text-align: right;
padding-right: 12px; }
.next-form-item-label label[required]:before {
margin-right: 4px;
content: "*";
color: #FF3000; }
.next-form-item-label.has-colon label::after {
content: ":";
position: relative;
top: -.5px;
margin: 0 0 0 2px; }
.next-form-item-label.next-left {
text-align: left; }
.next-form-item-label.next-left > label[required]::before {
display: none; }
.next-form-item-label.next-left > label[required]::after {
margin-left: 4px;
content: "*";
color: #FF3000; }
.next-form-item-help {
margin-top: 4px;
font-size: 12px;
line-height: 1.5;
color: #999999; }
.next-form.next-inline .next-form-item {
display: inline-block;
vertical-align: top;
/* label on left */ }
.next-form.next-inline .next-form-item.next-left .next-form-item-control {
display: inline-block;
vertical-align: top;
line-height: 0; }
.next-form.next-inline .next-form-item:not(:last-child) {
margin-right: 20px; }
.next-form.next-inline .next-form-item.next-large:not(:last-child) {
margin-right: 24px; }
.next-form.next-inline .next-form-item.next-small:not(:last-child) {
margin-right: 16px; }
@media screen and (min-width: 0\0) and (min-resolution: 0.001dpcm) {
.next-form-item.next-left > .next-form-item-label {
display: table-cell; }
.next-form.next-inline .next-form-item.next-left .next-form-item-control {
display: table-cell; } }
.next-form[dir="rtl"] .next-form-item-label {
text-align: left;
padding-left: 12px;
padding-right: 0; }
.next-form[dir="rtl"].next-inline .next-form-item:not(:last-child) {
margin-left: 20px;
margin-right: 0; }
.next-form[dir="rtl"].next-inline .next-form-item.next-large:not(:last-child) {
margin-left: 24px;
margin-right: 0; }
.next-form[dir="rtl"].next-inline .next-form-item.next-small:not(:last-child) {
margin-left: 16px;
margin-right: 0; }
/* put your code here */
.next-avatar {
position: relative;
display: inline-block;
overflow: hidden;
color: #FFFFFF;
white-space: nowrap;
text-align: center;
vertical-align: middle;
background: #E2E4E8;
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%; }
.next-avatar-image {
background: transparent; }
.next-avatar-string {
position: absolute;
left: 50%;
-webkit-transform-origin: 0 center;
-ms-transform-origin: 0 center;
transform-origin: 0 center; }
.next-avatar-large {
width: 52px;
height: 52px;
line-height: 52px;
border-radius: 50%; }
.next-avatar-large-string {
position: absolute;
left: 50%;
-webkit-transform-origin: 0 center;
-ms-transform-origin: 0 center;
transform-origin: 0 center; }
.next-avatar-small {
width: 28px;
height: 28px;
line-height: 28px;
border-radius: 50%; }
.next-avatar-small-string {
position: absolute;
left: 50%;
-webkit-transform-origin: 0 center;
-ms-transform-origin: 0 center;
transform-origin: 0 center; }
.next-avatar-square {
border-radius: 3px; }
.next-avatar > img {
display: block;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover; }
.next-loading-fusion-reactor[dir=rtl] {
-webkit-animation-name: nextVectorRouteRTL;
animation-name: nextVectorRouteRTL; }
@-webkit-keyframes nextVectorRouteRTL {
0% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg); }
5% {
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg); }
25% {
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg); }
30% {
-webkit-transform: rotate(-180deg);
-ms-transform: rotate(-180deg);
transform: rotate(-180deg); }
50% {
-webkit-transform: rotate(-180deg);
-ms-transform: rotate(-180deg);
transform: rotate(-180deg); }
55% {
-webkit-transform: rotate(-270deg);
-ms-transform: rotate(-270deg);
transform: rotate(-270deg); }
75% {
-webkit-transform: rotate(-270deg);
-ms-transform: rotate(-270deg);
transform: rotate(-270deg); }
80% {
-webkit-transform: rotate(-360deg);
-ms-transform: rotate(-360deg);
transform: rotate(-360deg); }
100% {
-webkit-transform: rotate(-360deg);
-ms-transform: rotate(-360deg);
transform: rotate(-360deg); } }
@keyframes nextVectorRouteRTL {
0% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg); }
5% {
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg); }
25% {
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg); }
30% {
-webkit-transform: rotate(-180deg);
-ms-transform: rotate(-180deg);
transform: rotate(-180deg); }
50% {
-webkit-transform: rotate(-180deg);
-ms-transform: rotate(-180deg);
transform: rotate(-180deg); }
55% {
-webkit-transform: rotate(-270deg);
-ms-transform: rotate(-270deg);
transform: rotate(-270deg); }
75% {
-webkit-transform: rotate(-270deg);
-ms-transform: rotate(-270deg);
transform: rotate(-270deg); }
80% {
-webkit-transform: rotate(-360deg);
-ms-transform: rotate(-360deg);
transform: rotate(-360deg); }
100% {
-webkit-transform: rotate(-360deg);
-ms-transform: rotate(-360deg);
transform: rotate(-360deg); } }
/* put your code here */
.next-loading {
position: relative;
/* 遮罩层 */
/* for IE9,10 */
/* text on the right side of */
/* 动效 */ }
.next-loading.next-open {
pointer-events: none; }
.next-loading .next-loading-component {
opacity: .7;
-webkit-filter: blur(1px);
filter: blur(1px);
/* stylelint-disable */
-webkit-filter: "progid:DXImageTransform.Microsoft.Blur(PixelRadius=1, MakeShadow=false)";
filter: "progid:DXImageTransform.Microsoft.Blur(PixelRadius=1, MakeShadow=false)";
/* IE6~IE9 */
/* stylelint-enable */
position: relative;
pointer-events: none; }
.next-loading-masker {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 99;
opacity: .2;
background: #FFF; }
.next-loading-inline {
display: inline-block; }
.next-loading-tip {
display: block;
position: absolute;
top: 50%;
left: 50%;
z-index: 4;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center; }
.next-loading-tip-fullscreen {
top: inherit;
left: inherit;
-webkit-transform: inherit;
-ms-transform: inherit;
transform: inherit; }
.next-loading-tip-placeholder {
display: none; }
.next-loading-right-tip .next-loading-indicator {
display: inline-block; }
.next-loading-right-tip .next-loading-tip-content {
position: absolute;
display: block;
top: 50%;
right: 0;
-webkit-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
transform: translate(0, -50%); }
.next-loading-right-tip .next-loading-tip-placeholder {
display: inline-block;
visibility: hidden;
margin-left: 1em; }
.next-loading-fusion-reactor {
display: inline-block;
width: 48px;
height: 48px;
position: relative;
margin: 0;
-webkit-animation-duration: 5.6s;
animation-duration: 5.6s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-name: nextVectorRoute;
animation-name: nextVectorRoute; }
.next-loading-fusion-reactor .next-loading-dot {
position: absolute;
margin: auto;
width: 12px;
height: 12px;
border-radius: 50%;
background: #5584FF;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-duration: 1.4s;
animation-duration: 1.4s; }
.next-loading-fusion-reactor .next-loading-dot:nth-child(1) {
top: 0;
bottom: 0;
left: 0;
-webkit-animation-name: nextVectorDotsX;
animation-name: nextVectorDotsX; }
.next-loading-fusion-reactor .next-loading-dot:nth-child(2) {
left: 0;
right: 0;
top: 0;
opacity: .8;
-webkit-animation-name: nextVectorDotsY;
animation-name: nextVectorDotsY; }
.next-loading-fusion-reactor .next-loading-dot:nth-child(3) {
top: 0;
bottom: 0;
right: 0;
opacity: .6;
-webkit-animation-name: nextVectorDotsXR;
animation-name: nextVectorDotsXR; }
.next-loading-fusion-reactor .next-loading-dot:nth-child(4) {
left: 0;
right: 0;
bottom: 0;
opacity: .2;
-webkit-animation-name: nextVectorDotsYR;
animation-name: nextVectorDotsYR; }
.next-loading-medium-fusion-reactor {
width: 32px;
height: 32px; }
.next-loading-medium-fusion-reactor .next-loading-dot {
width: 8px;
height: 8px; }
.next-loading-medium-fusion-reactor .next-loading-dot:nth-child(1) {
-webkit-animation-name: nextVectorDotsX-medium;
animation-name: nextVectorDotsX-medium; }
.next-loading-medium-fusion-reactor .next-loading-dot:nth-child(2) {
-webkit-animation-name: nextVectorDotsY-medium;
animation-name: nextVectorDotsY-medium; }
.next-loading-medium-fusion-reactor .next-loading-dot:nth-child(3) {
-webkit-animation-name: nextVectorDotsXR-medium;
animation-name: nextVectorDotsXR-medium; }
.next-loading-medium-fusion-reactor .next-loading-dot:nth-child(4) {
-webkit-animation-name: nextVectorDotsYR-medium;
animation-name: nextVectorDotsYR-medium; }
@-webkit-keyframes nextVectorRoute {
0% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg); }
5% {
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg); }
25% {
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg); }
30% {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg); }
50% {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg); }
55% {
-webkit-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg); }
75% {
-webkit-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg); }
80% {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg); }
100% {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg); } }
@keyframes nextVectorRoute {
0% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg); }
5% {
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg); }
25% {
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg); }
30% {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg); }
50% {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg); }
55% {
-webkit-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg); }
75% {
-webkit-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg); }
80% {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg); }
100% {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg); } }
/* 20% 的时间在旋转 */
@-webkit-keyframes nextVectorDotsYR {
25% {
bottom: 0; }
45%,
50% {
bottom: 16.8px;
height: 14.4px;
width: 14.4px; }
90% {
bottom: 0;
height: 12px;
width: 12px; } }
@keyframes nextVectorDotsYR {
25% {
bottom: 0; }
45%,
50% {
bottom: 16.8px;
height: 14.4px;
width: 14.4px; }
90% {
bottom: 0;
height: 12px;
width: 12px; } }
@-webkit-keyframes nextVectorDotsY {
25% {
top: 0; }
45%,
50% {
top: 16.8px;
height: 14.4px;
width: 14.4px; }
90% {
top: 0;
height: 12px;
width: 12px; } }
@keyframes nextVectorDotsY {
25% {
top: 0; }
45%,
50% {
top: 16.8px;
height: 14.4px;
width: 14.4px; }
90% {
top: 0;
height: 12px;
width: 12px; } }
@-webkit-keyframes nextVectorDotsX {
25% {
left: 0; }
45%,
50% {
left: 16.8px;
width: 14.4px;
height: 14.4px; }
90% {
left: 0;
height: 12px;
width: 12px; } }
@keyframes nextVectorDotsX {
25% {
left: 0; }
45%,
50% {
left: 16.8px;
width: 14.4px;
height: 14.4px; }
90% {
left: 0;
height: 12px;
width: 12px; } }
@-webkit-keyframes nextVectorDotsXR {
25% {
right: 0; }
45%,
50% {
right: 16.8px;
width: 14.4px;
height: 14.4px; }
90% {
right: 0;
height: 12px;
width: 12px; } }
@keyframes nextVectorDotsXR {
25% {
right: 0; }
45%,
50% {
right: 16.8px;
width: 14.4px;
height: 14.4px; }
90% {
right: 0;
height: 12px;
width: 12px; } }
@-webkit-keyframes nextVectorDotsYR-medium {
25% {
bottom: 0; }
45%,
50% {
bottom: 11.2px;
height: 9.6px;
width: 9.6px; }
90% {
bottom: 0;
height: 8px;
width: 8px; } }
@keyframes nextVectorDotsYR-medium {
25% {
bottom: 0; }
45%,
50% {
bottom: 11.2px;
height: 9.6px;
width: 9.6px; }
90% {
bottom: 0;
height: 8px;
width: 8px; } }
@-webkit-keyframes nextVectorDotsY-medium {
25% {
top: 0; }
45%,
50% {
top: 11.2px;
height: 9.6px;
width: 9.6px; }
90% {
top: 0;
height: 8px;
width: 8px; } }
@keyframes nextVectorDotsY-medium {
25% {
top: 0; }
45%,
50% {
top: 11.2px;
height: 9.6px;
width: 9.6px; }
90% {
top: 0;
height: 8px;
width: 8px; } }
@-webkit-keyframes nextVectorDotsX-medium {
25% {
left: 0; }
45%,
50% {
left: 11.2px;
width: 9.6px;
height: 9.6px; }
90% {
left: 0;
height: 8px;
width: 8px; } }
@keyframes nextVectorDotsX-medium {
25% {
left: 0; }
45%,
50% {
left: 11.2px;
width: 9.6px;
height: 9.6px; }
90% {
left: 0;
height: 8px;
width: 8px; } }
@-webkit-keyframes nextVectorDotsXR-medium {
25% {
right: 0; }
45%,
50% {
right: 11.2px;
width: 9.6px;
height: 9.6px; }
90% {
right: 0;
height: 8px;
width: 8px; } }
@keyframes nextVectorDotsXR-medium {
25% {
right: 0; }
45%,
50% {
right: 11.2px;
width: 9.6px;
height: 9.6px; }
90% {
right: 0;
height: 8px;
width: 8px; } }
/* put your code here */
.next-list-header {
border-bottom: 1px solid #DCDEE3;
color: #333333; }
.next-list-footer {
border-top: 1px solid #DCDEE3;
color: #666666; }
.next-list-loading.next-loading {
display: block; }
.next-list-empty {
font-size: 12px;
color: #A0A2AD;
padding: 32px 0;
text-align: center; }
.next-list-items {
margin: 0;
padding: 0;
list-style: none; }
.next-list-item {
display: table;
/* 兼容ie9 */
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
color: #666666; }
.next-list-item-media {
display: table-cell;
/* 兼容ie9 */
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
min-width: 1px;
-ms-flex-negative: 0;
flex-shrink: 0;
vertical-align: top; }
.next-list-item-extra {
display: table-cell;
/* 兼容ie9 */
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
min-width: 1px;
-ms-flex-negative: 0;
flex-shrink: 0;
vertical-align: top;
color: #999999; }
.next-list-item-content {
display: table-cell;
/* 兼容ie9 */
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
width: 100%;
vertical-align: middle; }
.next-list-item-title {
color: #333333; }
.next-list-medium .next-list-header {
padding: 16px 0px;
font-size: 20px;
font-weight: bold; }
.next-list-medium .next-list-footer {
padding: 16px 0px; }
.next-list-medium .next-list-item-media {
padding-right: 8px; }
.next-list-medium .next-list-item-extra {
padding-left: 8px; }
.next-list-medium .next-list-item {
font-size: 14px;
line-height: 1.5;
padding: 16px 0px; }
.next-list-medium .next-list-item-title {
font-weight: normal;
font-size: 16px;
line-height: 1.5; }
.next-list-small .next-list-header {
padding: 8px 0px;
font-size: 16px;
font-weight: bold; }
.next-list-small .next-list-footer {
padding: 8px 0px; }
.next-list-small .next-list-item-media {
padding-right: 8px; }
.next-list-small .next-list-item-extra {
padding-left: 8px; }
.next-list-small .next-list-item {
font-size: 12px;
font-weight: normal;
line-height: 1.3;
padding: 8px 0px; }
.next-list-small .next-list-item-title {
font-size: 14px;
line-height: 1.5; }
.next-list-divider .next-list-item {
border-bottom: 1px solid #DCDEE3; }
.next-list-divider .next-list-item:last-child {
border-bottom: none; }
.next-list[dir="rtl"] .next-list-item-media {
padding-left: 8px;
padding-right: 0; }
.next-list[dir="rtl"] .next-list-item-extra {
padding-right: 8px;
padding-left: 0; }
.next-list[dir="rtl"] .next-list-small .next-list-item-media {
padding-left: 8px;
padding-right: 0; }
.next-list[dir="rtl"] .next-list-small .next-list-item-extra {
padding-right: 8px;
padding-left: 0; }
.next-menu-btn {
display: inline-block;
-webkit-box-shadow: none;
box-shadow: none; }
.next-menu-btn-spacing-tb {
padding: 0px 0; }
.next-menu-btn .next-icon {
-webkit-transition: -webkit-transform 100ms linear;
transition: -webkit-transform 100ms linear;
transition: transform 100ms linear;
transition: transform 100ms linear, -webkit-transform 100ms linear; }
.next-menu-btn .next-menu-btn-arrow::before {
content: "\E63D"; }
.next-menu-btn.next-expand .next-menu-btn-arrow {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg); }
.next-menu-btn-symbol-unfold::before {
content: ""; }
.next-menu-btn.next-btn-normal .next-menu-btn-arrow {
color: #999999; }
.next-menu-btn.next-btn-normal:hover .next-menu-btn-arrow {
color: #333333; }
.next-menu-btn.next-btn-secondary .next-menu-btn-arrow {
color: #5584FF; }
.next-menu-btn.next-btn-secondary:hover .next-menu-btn-arrow {
color: #FFFFFF; }
.next-menu-btn.next-btn-secondary.next-btn-text:hover .next-menu-btn-arrow {
color: #5584FF; }
.next-menu-btn.next-btn-primary .next-menu-btn-arrow {
color: #FFFFFF; }
.next-menu-btn.next-btn-primary:hover .next-menu-btn-arrow {
color: #FFFFFF; }
.next-menu-btn.next-btn-text.next-btn-normal .next-menu-btn-arrow {
color: #333333; }
.next-menu-btn.next-btn-text.next-btn-normal:hover .next-menu-btn-arrow {
color: #5584FF; }
.next-menu-btn.next-btn-text.next-btn-primary .next-menu-btn-arrow {
color: #5584FF; }
.next-menu-btn.next-btn-text.next-btn-primary:hover .next-menu-btn-arrow {
color: #3E71F7; }
.next-menu-btn.next-btn-ghost.next-btn-light .next-menu-btn-arrow {
color: #333333; }
.next-menu-btn.next-btn-ghost.next-btn-light:hover .next-menu-btn-arrow {
color: #999999; }
.next-menu-btn.next-btn-ghost.next-btn-dark .next-menu-btn-arrow {
color: #FFFFFF; }
.next-menu-btn.next-btn-ghost.next-btn-dark:hover .next-menu-btn-arrow {
color: #FFFFFF; }
.next-menu-btn.disabled .next-menu-btn-arrow,
.next-menu-btn[disabled] .next-menu-btn-arrow {
color: #CCCCCC; }
.next-menu-btn.next-btn-text.disabled .next-menu-btn-arrow,
.next-menu-btn.next-btn-text[disabled] .next-menu-btn-arrow {
color: #CCCCCC; }
.next-menu-btn[disabled].next-btn-ghost.next-btn-dark .next-menu-btn-arrow {
color: rgba(255, 255, 255, 0.4); }
.next-menu-btn[disabled].next-btn-ghost.next-btn-light .next-menu-btn-arrow {
color: rgba(0, 0, 0, 0.1); }
.next-nav {
-webkit-box-sizing: border-box;
box-sizing: border-box;
min-width: auto;
border-radius: 0; }
.next-nav *,
.next-nav *:before,
.next-nav *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.next-nav-icon.next-icon {
margin-right: 4px;
font-weight: inherit; }
.next-nav-icon.next-icon:before,
.next-nav-icon.next-icon .next-icon-remote {
width: 12px;
font-size: 12px;
line-height: inherit; }
.next-nav-group-label {
height: 40px;
line-height: 40px;
font-size: 12px; }
.next-nav-item .next-menu-item-text > span,
.next-nav-item .next-nav-group-label > span {
opacity: 1;
-webkit-transition: opacity 100ms linear;
transition: opacity 100ms linear; }
.next-nav-item .next-menu-item-text > a {
text-decoration: none;
color: inherit; }
.next-nav-item .next-menu-hoz-icon-arrow.next-icon,
.next-nav-item .next-menu-icon-arrow.next-icon, .next-nav-item:hover .next-menu-hoz-icon-arrow.next-icon,
.next-nav-item:hover .next-menu-icon-arrow.next-icon, .next-nav-item.next-focused .next-menu-hoz-icon-arrow.next-icon,
.next-nav-item.next-focused .next-menu-icon-arrow.next-icon, .next-nav-item.next-selected .next-menu-hoz-icon-arrow.next-icon,
.next-nav-item.next-selected .next-menu-icon-arrow.next-icon, .next-nav-item.next-opened .next-menu-hoz-icon-arrow.next-icon,
.next-nav-item.next-opened .next-menu-icon-arrow.next-icon {
color: inherit;
top: 0;
-webkit-transform-origin: center 50%;
-ms-transform-origin: center 50%;
transform-origin: center 50%; }
.next-nav.next-active .next-nav-item:before {
position: absolute;
-webkit-transition: all 300ms ease;
transition: all 300ms ease;
content: ''; }
.next-nav.next-hoz {
padding: 0;
height: 44px;
line-height: 42px;
font-size: 12px; }
.next-nav.next-hoz .next-menu-item {
margin-left: 0px;
margin-right: 0px;
padding: 0 20px;
border-radius: 0; }
.next-nav.next-hoz .next-menu-item,
.next-nav.next-hoz .next-menu-sub-menu-wrapper > .next-menu-item {
margin-top: 0px;
margin-bottom: 0px; }
.next-nav.next-hoz .next-menu-item-inner {
height: 42px;
font-size: 12px; }
.next-nav.next-hoz .next-nav-group-label .next-menu-item-inner {
height: 40px;
line-height: 40px;
font-size: 12px; }
.next-nav.next-hoz .next-menu-header {
float: left;
height: 42px; }
.next-nav.next-hoz .next-menu-footer {
float: right;
height: 42px; }
.next-nav.next-hoz .next-nav-item:before {
width: 0;
left: 50%;
height: 2px; }
.next-nav.next-hoz .next-nav-item:hover:before {
height: 0px; }
.next-nav.next-hoz.next-top .next-nav-item:before {
top: -1px; }
.next-nav.next-hoz.next-bottom .next-nav-item:before {
bottom: -1px; }
.next-nav.next-hoz .next-selected.next-nav-item:before {
width: 100%;
left: 0;
height: 2px; }
.next-nav.next-ver {
padding: 0;
-webkit-transition: width 300ms ease;
transition: width 300ms ease;
line-height: 40px;
font-size: 12px; }
.next-nav.next-ver .next-menu-item {
margin-left: 0px;
margin-right: 0px;
padding: 0 20px;
border-radius: 0; }
.next-nav.next-ver .next-menu-item:not(:first-child),
.next-nav.next-ver .next-menu-sub-menu-wrapper:not(:first-child) > .next-menu-item {
margin-top: 0px; }
.next-nav.next-ver .next-menu-item:not(:last-child),
.next-nav.next-ver .next-menu-sub-menu-wrapper:not(:last-child) > .next-menu-item {
margin-bottom: 0px; }
.next-nav.next-ver .next-menu-item-inner {
height: 40px;
font-size: 12px; }
.next-nav.next-ver .next-nav-group-label .next-menu-item-inner {
height: 40px;
line-height: 40px;
font-size: 12px; }
.next-nav.next-ver > .next-menu-item:first-child,
.next-nav.next-ver > .next-menu-sub-menu-wrapper:first-child > .next-menu-item {
margin-top: 0px; }
.next-nav.next-ver > .next-menu-item:last-child,
.next-nav.next-ver > .next-menu-sub-menu-wrapper:last-child > .next-menu-item {
margin-bottom: 0px; }
.next-nav.next-ver .next-menu-sub-menu {
line-height: 40px; }
.next-nav.next-ver .next-menu-sub-menu .next-menu-item-inner {
height: 40px;
font-size: 12px; }
.next-nav.next-ver .next-nav-item:before {
height: 0;
top: 50%;
width: 2px; }
.next-nav.next-ver .next-nav-item:hover:before {
width: 0px; }
.next-nav.next-ver.next-left .next-nav-item:before,
.next-nav.next-ver.next-top .next-nav-item:before {
left: -1px; }
|
cdnjs/cdnjs
|
ajax/libs/alifd__next/1.23.0/next-noreset-1.css
|
CSS
|
mit
| 398,472
|
/*
Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
CKEDITOR.plugins.setLang("devtools","ko",{title:"구성 요소 정보",dialogName:"다이얼로그 윈도우 이름",tabName:"탭 이름",elementId:"요소 ID",elementType:"요소 형식"});
|
cdnjs/cdnjs
|
ajax/libs/ckeditor/4.17.2/plugins/devtools/lang/ko.js
|
JavaScript
|
mit
| 356
|
/*! shepherd.js 8.0.1 */
'use strict';(function(E,Y){"object"===typeof exports&&"undefined"!==typeof module?module.exports=Y():"function"===typeof define&&define.amd?define(Y):(E=E||self,E.Shepherd=Y())})(this,function(){function E(a,b){return!1!==b.clone&&b.isMergeableObject(a)?R(Array.isArray(a)?[]:{},a,b):a}function Y(a,b,c){return a.concat(b).map(function(a){return E(a,c)})}function ob(a){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(a).filter(function(b){return a.propertyIsEnumerable(b)}):[]}function Ca(a){return Object.keys(a).concat(ob(a))}
function Da(a,b){try{return b in a}catch(c){return!1}}function pb(a,b,c){var d={};c.isMergeableObject(a)&&Ca(a).forEach(function(b){d[b]=E(a[b],c)});Ca(b).forEach(function(e){if(!Da(a,e)||Object.hasOwnProperty.call(a,e)&&Object.propertyIsEnumerable.call(a,e))if(Da(a,e)&&c.isMergeableObject(b[e])){if(c.customMerge){var f=c.customMerge(e);f="function"===typeof f?f:R}else f=R;d[e]=f(a[e],b[e],c)}else d[e]=E(b[e],c)});return d}function R(a,b,c){c=c||{};c.arrayMerge=c.arrayMerge||Y;c.isMergeableObject=
c.isMergeableObject||qb;c.cloneUnlessOtherwiseSpecified=E;var d=Array.isArray(b),e=Array.isArray(a);return d!==e?E(b,c):d?c.arrayMerge(a,b,c):pb(a,b,c)}function S(a){return"function"===typeof a}function Z(a){return"string"===typeof a}function Ea(a){let b=Object.getOwnPropertyNames(a.constructor.prototype);for(let c=0;c<b.length;c++){let d=b[c],e=a[d];"constructor"!==d&&"function"===typeof e&&(a[d]=e.bind(a))}return a}function rb(a,b){return c=>{if(b.isOpen()){let d=b.el&&c.currentTarget===b.el;(void 0!==
a&&c.currentTarget.matches(a)||d)&&b.tour.next()}}}function sb(a){let {event:b,selector:c}=a.options.advanceOn||{};if(b){let d=rb(c,a),e;try{e=document.querySelector(c)}catch(f){}if(void 0===c||e)e?(e.addEventListener(b,d),a.on("destroy",()=>e.removeEventListener(b,d))):(document.body.addEventListener(b,d,!0),a.on("destroy",()=>document.body.removeEventListener(b,d,!0)));else return console.error(`No element was found for the selector supplied to advanceOn: ${c}`)}else return console.error("advanceOn was defined, but no event name was passed.")}
function aa(a){a=a.getBoundingClientRect();return{width:a.width,height:a.height,top:a.top,right:a.right,bottom:a.bottom,left:a.left,x:a.left,y:a.top}}function x(a){return"[object Window]"!==a.toString()?(a=a.ownerDocument)?a.defaultView:window:a}function pa(a){a=x(a);return{scrollLeft:a.pageXOffset,scrollTop:a.pageYOffset}}function ba(a){var b=x(a).Element;return a instanceof b||a instanceof Element}function C(a){var b=x(a).HTMLElement;return a instanceof b||a instanceof HTMLElement}function F(a){return a?
(a.nodeName||"").toLowerCase():null}function J(a){return(ba(a)?a.ownerDocument:a.document).documentElement}function Fa(a){return aa(J(a)).left+pa(a).scrollLeft}function ca(a){return x(a).getComputedStyle(a)}function qa(a){a=ca(a);return/auto|scroll|overlay|hidden/.test(a.overflow+a.overflowY+a.overflowX)}function Ga(a,b,c){void 0===c&&(c=!1);var d=J(b);a=aa(a);var e={scrollLeft:0,scrollTop:0},f={x:0,y:0};if(!c){if("body"!==F(b)||qa(d))e=b!==x(b)&&C(b)?{scrollLeft:b.scrollLeft,scrollTop:b.scrollTop}:
pa(b);C(b)?(f=aa(b),f.x+=b.clientLeft,f.y+=b.clientTop):d&&(f.x=Fa(d))}return{x:a.left+e.scrollLeft-f.x,y:a.top+e.scrollTop-f.y,width:a.width,height:a.height}}function ra(a){return{x:a.offsetLeft,y:a.offsetTop,width:a.offsetWidth,height:a.offsetHeight}}function Ha(a){return"html"===F(a)?a:a.assignedSlot||a.parentNode||a.host||J(a)}function Ia(a){return 0<=["html","body","#document"].indexOf(F(a))?a.ownerDocument.body:C(a)&&qa(a)?a:Ia(Ha(a))}function da(a,b){void 0===b&&(b=[]);var c=Ia(a);a="body"===
F(c);var d=x(c);c=a?[d].concat(d.visualViewport||[],qa(c)?c:[]):c;b=b.concat(c);return a?b:b.concat(da(Ha(c)))}function Ja(a){return C(a)&&"fixed"!==ca(a).position?a.offsetParent:null}function ea(a){var b=x(a);for(a=Ja(a);a&&0<=["table","td","th"].indexOf(F(a));)a=Ja(a);return a&&"body"===F(a)&&"static"===ca(a).position?b:a||b}function tb(a){function b(a){d.add(a.name);[].concat(a.requires||[],a.requiresIfExists||[]).forEach(function(a){d.has(a)||(a=c.get(a))&&b(a)});e.push(a)}var c=new Map,d=new Set,
e=[];a.forEach(function(a){c.set(a.name,a)});a.forEach(function(a){d.has(a.name)||b(a)});return e}function ub(a){var b=tb(a);return vb.reduce(function(a,d){return a.concat(b.filter(function(a){return a.phase===d}))},[])}function wb(a){var b;return function(){b||(b=new Promise(function(c){Promise.resolve().then(function(){b=void 0;c(a())})}));return b}}function D(a){return a.split("-")[0]}function xb(a){var b=a.reduce(function(a,b){var c=a[b.name];a[b.name]=c?Object.assign({},c,{},b,{options:Object.assign({},
c.options,{},b.options),data:Object.assign({},c.data,{},b.data)}):b;return a},{});return Object.keys(b).map(function(a){return b[a]})}function Ka(){for(var a=arguments.length,b=Array(a),c=0;c<a;c++)b[c]=arguments[c];return!b.some(function(a){return!(a&&"function"===typeof a.getBoundingClientRect)})}function sa(a){return 0<=["top","bottom"].indexOf(a)?"x":"y"}function La(a){var b=a.reference,c=a.element,d=(a=a.placement)?D(a):null;a=a?a.split("-")[1]:null;var e=b.x+b.width/2-c.width/2,f=b.y+b.height/
2-c.height/2;switch(d){case "top":e={x:e,y:b.y-c.height};break;case "bottom":e={x:e,y:b.y+b.height};break;case "right":e={x:b.x+b.width,y:f};break;case "left":e={x:b.x-c.width,y:f};break;default:e={x:b.x,y:b.y}}d=d?sa(d):null;if(null!=d)switch(f="y"===d?"height":"width",a){case "start":e[d]=Math.floor(e[d])-Math.floor(b[f]/2-c[f]/2);break;case "end":e[d]=Math.floor(e[d])+Math.ceil(b[f]/2-c[f]/2)}return e}function Ma(a){var b,c=a.popper,d=a.popperRect,e=a.placement,f=a.offsets,h=a.position,k=a.gpuAcceleration,
m=a.adaptive,g=window.devicePixelRatio||1;a=Math.round(f.x*g)/g||0;g=Math.round(f.y*g)/g||0;var l=f.hasOwnProperty("x");f=f.hasOwnProperty("y");var q="left",t="top",p=window;if(m){var B=ea(c);B===x(c)&&(B=J(c));"top"===e&&(t="bottom",g-=B.clientHeight-d.height,g*=k?1:-1);"left"===e&&(q="right",a-=B.clientWidth-d.width,a*=k?1:-1)}c=Object.assign({position:h},m&&yb);if(k){var r;return Object.assign({},c,(r={},r[t]=f?"0":"",r[q]=l?"0":"",r.transform=2>(p.devicePixelRatio||1)?"translate("+a+"px, "+g+
"px)":"translate3d("+a+"px, "+g+"px, 0)",r))}return Object.assign({},c,(b={},b[t]=f?g+"px":"",b[q]=l?a+"px":"",b.transform="",b))}function ja(a){return a.replace(/left|right|bottom|top/g,function(a){return zb[a]})}function Na(a){return a.replace(/start|end/g,function(a){return Ab[a]})}function Oa(a,b){var c=!(!b.getRootNode||!b.getRootNode().host);if(a.contains(b))return!0;if(c){do{if(b&&a.isSameNode(b))return!0;b=b.parentNode||b.host}while(b)}return!1}function ta(a){return Object.assign({},a,{left:a.x,
top:a.y,right:a.x+a.width,bottom:a.y+a.height})}function Pa(a,b){if("viewport"===b){var c=x(a);a=c.visualViewport;b=c.innerWidth;c=c.innerHeight;a&&/iPhone|iPod|iPad/.test(navigator.platform)&&(b=a.width,c=a.height);a=ta({width:b,height:c,x:0,y:0})}else C(b)?a=aa(b):(c=J(a),a=x(c),b=pa(c),c=Ga(J(c),a),c.height=Math.max(c.height,a.innerHeight),c.width=Math.max(c.width,a.innerWidth),c.x=-b.scrollLeft,c.y=-b.scrollTop,a=ta(c));return a}function Bb(a){var b=da(a),c=0<=["absolute","fixed"].indexOf(ca(a).position)&&
C(a)?ea(a):a;return ba(c)?b.filter(function(a){return ba(a)&&Oa(a,c)}):[]}function Cb(a,b,c){b="clippingParents"===b?Bb(a):[].concat(b);c=[].concat(b,[c]);c=c.reduce(function(b,c){var d=Pa(a,c);c=C(c)?c:J(a);var e=x(c);var k=C(c)?ca(c):{};parseFloat(k.borderTopWidth);var m=parseFloat(k.borderRightWidth)||0;var g=parseFloat(k.borderBottomWidth)||0;var l=parseFloat(k.borderLeftWidth)||0;k="html"===F(c);var q=Fa(c),t=c.clientWidth+m,p=c.clientHeight+g;k&&50<e.innerHeight-c.clientHeight&&(p=e.innerHeight-
g);g=k?0:c.clientTop;m=c.clientLeft>l?m:k?e.innerWidth-t-q:c.offsetWidth-t;e=k?e.innerHeight-p:c.offsetHeight-p;c=k?q:c.clientLeft;b.top=Math.max(d.top+g,b.top);b.right=Math.min(d.right-m,b.right);b.bottom=Math.min(d.bottom-e,b.bottom);b.left=Math.max(d.left+c,b.left);return b},Pa(a,c[0]));c.width=c.right-c.left;c.height=c.bottom-c.top;c.x=c.left;c.y=c.top;return c}function Qa(a){return Object.assign({},{top:0,right:0,bottom:0,left:0},{},a)}function Ra(a,b){return b.reduce(function(b,d){b[d]=a;return b},
{})}function fa(a,b){void 0===b&&(b={});var c=b;b=c.placement;b=void 0===b?a.placement:b;var d=c.boundary,e=void 0===d?"clippingParents":d;d=c.rootBoundary;var f=void 0===d?"viewport":d;d=c.elementContext;d=void 0===d?"popper":d;var h=c.altBoundary,k=void 0===h?!1:h;c=c.padding;c=void 0===c?0:c;c=Qa("number"!==typeof c?c:Ra(c,ha));var m=a.elements.reference;h=a.rects.popper;k=a.elements[k?"popper"===d?"reference":"popper":d];e=Cb(ba(k)?k:k.contextElement||J(a.elements.popper),e,f);f=aa(m);k=La({reference:f,
element:h,strategy:"absolute",placement:b});h=ta(Object.assign({},h,{},k));f="popper"===d?h:f;var g={top:e.top-f.top+c.top,bottom:f.bottom-e.bottom+c.bottom,left:e.left-f.left+c.left,right:f.right-e.right+c.right};a=a.modifiersData.offset;if("popper"===d&&a){var l=a[b];Object.keys(g).forEach(function(a){var b=0<=["right","bottom"].indexOf(a)?1:-1,c=0<=["top","bottom"].indexOf(a)?"y":"x";g[a]+=l[c]*b})}return g}function Db(a,b){void 0===b&&(b={});var c=b.boundary,d=b.rootBoundary,e=b.padding,f=b.flipVariations,
h=b.allowedAutoPlacements,k=void 0===h?Sa:h,m=b.placement.split("-")[1],g=(m?f?Ta:Ta.filter(function(a){return a.split("-")[1]===m}):ha).filter(function(a){return 0<=k.indexOf(a)}).reduce(function(b,f){b[f]=fa(a,{placement:f,boundary:c,rootBoundary:d,padding:e})[D(f)];return b},{});return Object.keys(g).sort(function(a,b){return g[a]-g[b]})}function Eb(a){if("auto"===D(a))return[];var b=ja(a);return[Na(a),b,Na(b)]}function Ua(a,b,c){void 0===c&&(c={x:0,y:0});return{top:a.top-b.height-c.y,right:a.right-
b.width+c.x,bottom:a.bottom-b.height+c.y,left:a.left-b.width-c.x}}function Va(a){return["top","right","bottom","left"].some(function(b){return 0<=a[b]})}function Fb(){return[{name:"applyStyles",fn({state:a}){Object.keys(a.elements).forEach(b=>{if("popper"===b){var c=a.attributes[b]||{},d=a.elements[b];Object.assign(d.style,{position:"fixed",left:"50%",top:"50%",transform:"translate(-50%, -50%)"});Object.keys(c).forEach(a=>{let b=c[a];!1===b?d.removeAttribute(a):d.setAttribute(a,!0===b?"":b)})}})}},
{name:"computeStyles",options:{adaptive:!1}}]}function Gb(a){let b=Fb(),c={placement:"top",strategy:"fixed",modifiers:[{name:"focusAfterRender",enabled:!0,phase:"afterWrite",fn(){setTimeout(()=>{a.el&&a.el.focus()},300)}}]};return c={...c,modifiers:Array.from(new Set([...c.modifiers,...b]))}}function Wa(a){return Z(a)&&""!==a?"-"!==a.charAt(a.length-1)?`${a}-`:a:""}function ua(a){a=a.options.attachTo||{};let b=Object.assign({},a);if(Z(a.element)){try{b.element=document.querySelector(a.element)}catch(c){}b.element||
console.error(`The element for this Shepherd step was not found ${a.element}`)}return b}function va(){let a=Date.now();return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,b=>{let c=(a+16*Math.random())%16|0;a=Math.floor(a/16);return("x"==b?c:c&3|8).toString(16)})}function Hb(a,b){let c={modifiers:[{name:"preventOverflow",options:{altAxis:!0}},{name:"focusAfterRender",enabled:!0,phase:"afterWrite",fn(){setTimeout(()=>{b.el&&b.el.focus()},300)}}],strategy:"absolute"};b.isCentered()?c=Gb(b):
c.placement=a.on;(a=b.tour&&b.tour.options&&b.tour.options.defaultStepOptions)&&(c=Xa(a,c));return c=Xa(b.options,c)}function Xa(a,b){if(a.popperOptions){let c=Object.assign({},b,a.popperOptions);if(a.popperOptions.modifiers&&0<a.popperOptions.modifiers.length){let d=a.popperOptions.modifiers.map(a=>a.name);b=b.modifiers.filter(a=>!d.includes(a.name));c.modifiers=Array.from(new Set([...b,...a.popperOptions.modifiers]))}return c}return b}function y(){}function Ib(a,b){for(let c in b)a[c]=b[c];return a}
function T(a){return a()}function Ya(a){return"function"===typeof a}function G(a,b){return a!=a?b==b:a!==b||a&&"object"===typeof a||"function"===typeof a}function z(a){a.parentNode.removeChild(a)}function Za(a){return document.createElementNS("http://www.w3.org/2000/svg",a)}function ka(a,b,c,d){a.addEventListener(b,c,d);return()=>a.removeEventListener(b,c,d)}function u(a,b,c){null==c?a.removeAttribute(b):a.getAttribute(b)!==c&&a.setAttribute(b,c)}function $a(a,b){let c=Object.getOwnPropertyDescriptors(a.__proto__);
for(let d in b)null==b[d]?a.removeAttribute(d):"style"===d?a.style.cssText=b[d]:"__value"===d?a.value=a[d]=b[d]:c[d]&&c[d].set?a[d]=b[d]:u(a,d,b[d])}function U(a,b,c){a.classList[c?"add":"remove"](b)}function la(){if(!V)throw Error("Function called outside component initialization");return V}function wa(a){ma.push(a)}function ab(){if(!xa){xa=!0;do{for(var a=0;a<ia.length;a+=1){var b=ia[a];V=b;b=b.$$;if(null!==b.fragment){b.update();b.before_update.forEach(T);let a=b.dirty;b.dirty=[-1];b.fragment&&
b.fragment.p(b.ctx,a);b.after_update.forEach(wa)}}for(ia.length=0;W.length;)W.pop()();for(a=0;a<ma.length;a+=1)b=ma[a],ya.has(b)||(ya.add(b),b());ma.length=0}while(ia.length);for(;bb.length;)bb.pop()();xa=za=!1;ya.clear()}}function M(){N={r:0,c:[],p:N}}function O(){N.r||N.c.forEach(T);N=N.p}function n(a,b){a&&a.i&&(na.delete(a),a.i(b))}function v(a,b,c,d){a&&a.o&&!na.has(a)&&(na.add(a),N.c.push(()=>{na.delete(a);d&&(c&&a.d(1),d())}),a.o(b))}function P(a){a&&a.c()}function K(a,b,c){let {fragment:d,
on_mount:e,on_destroy:f,after_update:h}=a.$$;d&&d.m(b,c);wa(()=>{let b=e.map(T).filter(Ya);f?f.push(...b):b.forEach(T);a.$$.on_mount=[]});h.forEach(wa)}function L(a,b){a=a.$$;null!==a.fragment&&(a.on_destroy.forEach(T),a.fragment&&a.fragment.d(b),a.on_destroy=a.fragment=null,a.ctx=[])}function H(a,b,c,d,e,f,h=[-1]){let k=V;V=a;let m=b.props||{},g=a.$$={fragment:null,ctx:null,props:f,update:y,not_equal:e,bound:Object.create(null),on_mount:[],on_destroy:[],before_update:[],after_update:[],context:new Map(k?
k.$$.context:[]),callbacks:Object.create(null),dirty:h},l=!1;g.ctx=c?c(a,m,(b,c,...d)=>{d=d.length?d[0]:c;if(g.ctx&&e(g.ctx[b],g.ctx[b]=d)){if(g.bound[b])g.bound[b](d);l&&(-1===a.$$.dirty[0]&&(ia.push(a),za||(za=!0,Jb.then(ab)),a.$$.dirty.fill(0)),a.$$.dirty[b/31|0]|=1<<b%31)}return c}):[];g.update();l=!0;g.before_update.forEach(T);g.fragment=d?d(g.ctx):!1;b.target&&(b.hydrate?(c=Array.from(b.target.childNodes),g.fragment&&g.fragment.l(c),c.forEach(z)):g.fragment&&g.fragment.c(),b.intro&&n(a.$$.fragment),
K(a,b.target,b.anchor),ab());V=k}function Kb(a){let b,c,d,e;return{c(){b=document.createElement("button");u(b,"aria-label",c=a[4]?a[4]:null);u(b,"class",d=`${a[1]||""} shepherd-button ${a[2]?"shepherd-button-secondary":""}`);b.disabled=a[5];u(b,"tabindex","0")},m(c,d,k){c.insertBefore(b,d||null);b.innerHTML=a[3];k&&e();e=ka(b,"click",function(){Ya(a[0])&&a[0].apply(this,arguments)})},p(e,[h]){a=e;h&8&&(b.innerHTML=a[3]);h&16&&c!==(c=a[4]?a[4]:null)&&u(b,"aria-label",c);h&6&&d!==(d=`${a[1]||""} shepherd-button ${a[2]?
"shepherd-button-secondary":""}`)&&u(b,"class",d);h&32&&(b.disabled=a[5])},i:y,o:y,d(a){a&&z(b);e()}}}function Lb(a,b,c){let {config:d}=b,{step:e}=b,f,h,k,m,g,l;a.$set=a=>{"config"in a&&c(6,d=a.config);"step"in a&&c(7,e=a.step)};a.$$.update=()=>{if(a.$$.dirty&192){c(0,f=d.action?d.action.bind(e.tour):null);c(1,h=d.classes);c(2,k=d.secondary);c(3,m=d.text);c(4,g=d.label);if(d.disabled){var b=d.disabled;b=S(b)?b.call(e):b}else b=!1;c(5,l=b)}};return[f,h,k,m,g,l,d,e]}function cb(a,b,c){a=a.slice();a[2]=
b[c];return a}function db(a){let b,c,d=a[1],e=[];for(let b=0;b<d.length;b+=1)e[b]=eb(cb(a,d,b));let f=a=>v(e[a],1,1,()=>{e[a]=null});return{c(){for(let a=0;a<e.length;a+=1)e[a].c();b=document.createTextNode("")},m(a,d){for(let b=0;b<e.length;b+=1)e[b].m(a,d);a.insertBefore(b,d||null);c=!0},p(a,c){if(c&3){d=a[1];let h;for(h=0;h<d.length;h+=1){let f=cb(a,d,h);e[h]?(e[h].p(f,c),n(e[h],1)):(e[h]=eb(f),e[h].c(),n(e[h],1),e[h].m(b.parentNode,b))}M();for(h=d.length;h<e.length;h+=1)f(h);O()}},i(a){if(!c){for(a=
0;a<d.length;a+=1)n(e[a]);c=!0}},o(a){e=e.filter(Boolean);for(a=0;a<e.length;a+=1)v(e[a]);c=!1},d(a){var c=e;for(let b=0;b<c.length;b+=1)c[b]&&c[b].d(a);a&&z(b)}}}function eb(a){let b,c=new Mb({props:{config:a[2],step:a[0]}});return{c(){P(c.$$.fragment)},m(a,e){K(c,a,e);b=!0},p(a,b){let d={};b&2&&(d.config=a[2]);b&1&&(d.step=a[0]);c.$set(d)},i(a){b||(n(c.$$.fragment,a),b=!0)},o(a){v(c.$$.fragment,a);b=!1},d(a){L(c,a)}}}function Nb(a){let b,c,d=a[1]&&db(a);return{c(){b=document.createElement("footer");
d&&d.c();u(b,"class","shepherd-footer")},m(a,f){a.insertBefore(b,f||null);d&&d.m(b,null);c=!0},p(a,[c]){a[1]?d?(d.p(a,c),c&2&&n(d,1)):(d=db(a),d.c(),n(d,1),d.m(b,null)):d&&(M(),v(d,1,1,()=>{d=null}),O())},i(a){c||(n(d),c=!0)},o(a){v(d);c=!1},d(a){a&&z(b);d&&d.d()}}}function Ob(a,b,c){let {step:d}=b;a.$set=a=>{"step"in a&&c(0,d=a.step)};let e;a.$$.update=()=>{a.$$.dirty&1&&c(1,e=d.options.buttons)};return[d,e]}function Pb(a){let b,c,d,e;return{c(){b=document.createElement("button");c=document.createElement("span");
c.textContent="\u00d7";u(c,"aria-hidden","true");u(b,"aria-label",d=a[0].label?a[0].label:"Close Tour");u(b,"class","shepherd-cancel-icon");u(b,"type","button")},m(d,h,k){d.insertBefore(b,h||null);b.appendChild(c);k&&e();e=ka(b,"click",a[1])},p(a,[c]){c&1&&d!==(d=a[0].label?a[0].label:"Close Tour")&&u(b,"aria-label",d)},i:y,o:y,d(a){a&&z(b);e()}}}function Qb(a,b,c){let {cancelIcon:d}=b,{step:e}=b;a.$set=a=>{"cancelIcon"in a&&c(0,d=a.cancelIcon);"step"in a&&c(2,e=a.step)};return[d,a=>{a.preventDefault();
e.cancel()},e]}function Rb(a){let b;return{c(){b=document.createElement("h3");u(b,"id",a[1]);u(b,"class","shepherd-title")},m(c,d){c.insertBefore(b,d||null);a[3](b)},p(a,[d]){d&2&&u(b,"id",a[1])},i:y,o:y,d(c){c&&z(b);a[3](null)}}}function Sb(a,b,c){let {labelId:d}=b,{element:e}=b,{title:f}=b;la().$$.after_update.push(()=>{S(f)&&c(2,f=f());c(0,e.innerHTML=f,e)});a.$set=a=>{"labelId"in a&&c(1,d=a.labelId);"element"in a&&c(0,e=a.element);"title"in a&&c(2,f=a.title)};return[e,d,f,function(a){W[a?"unshift":
"push"](()=>{c(0,e=a)})}]}function fb(a){let b,c=new Tb({props:{labelId:a[0],title:a[2]}});return{c(){P(c.$$.fragment)},m(a,e){K(c,a,e);b=!0},p(a,b){let d={};b&1&&(d.labelId=a[0]);b&4&&(d.title=a[2]);c.$set(d)},i(a){b||(n(c.$$.fragment,a),b=!0)},o(a){v(c.$$.fragment,a);b=!1},d(a){L(c,a)}}}function gb(a){let b,c=new Ub({props:{cancelIcon:a[3],step:a[1]}});return{c(){P(c.$$.fragment)},m(a,e){K(c,a,e);b=!0},p(a,b){let d={};b&8&&(d.cancelIcon=a[3]);b&2&&(d.step=a[1]);c.$set(d)},i(a){b||(n(c.$$.fragment,
a),b=!0)},o(a){v(c.$$.fragment,a);b=!1},d(a){L(c,a)}}}function Vb(a){let b,c,d,e=a[2]&&fb(a),f=a[3]&&a[3].enabled&&gb(a);return{c(){b=document.createElement("header");e&&e.c();c=document.createTextNode(" ");f&&f.c();u(b,"class","shepherd-header")},m(a,k){a.insertBefore(b,k||null);e&&e.m(b,null);b.appendChild(c);f&&f.m(b,null);d=!0},p(a,[d]){a[2]?e?(e.p(a,d),d&4&&n(e,1)):(e=fb(a),e.c(),n(e,1),e.m(b,c)):e&&(M(),v(e,1,1,()=>{e=null}),O());a[3]&&a[3].enabled?f?(f.p(a,d),d&8&&n(f,1)):(f=gb(a),f.c(),n(f,
1),f.m(b,null)):f&&(M(),v(f,1,1,()=>{f=null}),O())},i(a){d||(n(e),n(f),d=!0)},o(a){v(e);v(f);d=!1},d(a){a&&z(b);e&&e.d();f&&f.d()}}}function Wb(a,b,c){let {labelId:d}=b,{step:e}=b,f,h;a.$set=a=>{"labelId"in a&&c(0,d=a.labelId);"step"in a&&c(1,e=a.step)};a.$$.update=()=>{a.$$.dirty&2&&(c(2,f=e.options.title),c(3,h=e.options.cancelIcon))};return[d,e,f,h]}function Xb(a){let b;return{c(){b=document.createElement("div");u(b,"class","shepherd-text");u(b,"id",a[1])},m(c,d){c.insertBefore(b,d||null);a[3](b)},
p(a,[d]){d&2&&u(b,"id",a[1])},i:y,o:y,d(c){c&&z(b);a[3](null)}}}function Yb(a,b,c){let {descriptionId:d}=b,{element:e}=b,{step:f}=b;la().$$.after_update.push(()=>{let {text:a}=f.options;S(a)&&(a=a.call(f));a instanceof HTMLElement?e.appendChild(a):c(0,e.innerHTML=a,e)});a.$set=a=>{"descriptionId"in a&&c(1,d=a.descriptionId);"element"in a&&c(0,e=a.element);"step"in a&&c(2,f=a.step)};return[e,d,f,function(a){W[a?"unshift":"push"](()=>{c(0,e=a)})}]}function hb(a){let b,c=new Zb({props:{labelId:a[1],
step:a[2]}});return{c(){P(c.$$.fragment)},m(a,e){K(c,a,e);b=!0},p(a,b){let d={};b&2&&(d.labelId=a[1]);b&4&&(d.step=a[2]);c.$set(d)},i(a){b||(n(c.$$.fragment,a),b=!0)},o(a){v(c.$$.fragment,a);b=!1},d(a){L(c,a)}}}function ib(a){let b,c=new $b({props:{descriptionId:a[0],step:a[2]}});return{c(){P(c.$$.fragment)},m(a,e){K(c,a,e);b=!0},p(a,b){let d={};b&1&&(d.descriptionId=a[0]);b&4&&(d.step=a[2]);c.$set(d)},i(a){b||(n(c.$$.fragment,a),b=!0)},o(a){v(c.$$.fragment,a);b=!1},d(a){L(c,a)}}}function jb(a){let b,
c=new ac({props:{step:a[2]}});return{c(){P(c.$$.fragment)},m(a,e){K(c,a,e);b=!0},p(a,b){let d={};b&4&&(d.step=a[2]);c.$set(d)},i(a){b||(n(c.$$.fragment,a),b=!0)},o(a){v(c.$$.fragment,a);b=!1},d(a){L(c,a)}}}function bc(a){let b,c=void 0!==a[2].options.title||a[2].options.cancelIcon&&a[2].options.cancelIcon.enabled,d,e=void 0!==a[2].options.text,f,h=Array.isArray(a[2].options.buttons)&&a[2].options.buttons.length,k,m=c&&hb(a),g=e&&ib(a),l=h&&jb(a);return{c(){b=document.createElement("div");m&&m.c();
d=document.createTextNode(" ");g&&g.c();f=document.createTextNode(" ");l&&l.c();u(b,"class","shepherd-content")},m(a,c){a.insertBefore(b,c||null);m&&m.m(b,null);b.appendChild(d);g&&g.m(b,null);b.appendChild(f);l&&l.m(b,null);k=!0},p(a,[k]){k&4&&(c=void 0!==a[2].options.title||a[2].options.cancelIcon&&a[2].options.cancelIcon.enabled);c?m?(m.p(a,k),k&4&&n(m,1)):(m=hb(a),m.c(),n(m,1),m.m(b,d)):m&&(M(),v(m,1,1,()=>{m=null}),O());k&4&&(e=void 0!==a[2].options.text);e?g?(g.p(a,k),k&4&&n(g,1)):(g=ib(a),
g.c(),n(g,1),g.m(b,f)):g&&(M(),v(g,1,1,()=>{g=null}),O());k&4&&(h=Array.isArray(a[2].options.buttons)&&a[2].options.buttons.length);h?l?(l.p(a,k),k&4&&n(l,1)):(l=jb(a),l.c(),n(l,1),l.m(b,null)):l&&(M(),v(l,1,1,()=>{l=null}),O())},i(a){k||(n(m),n(g),n(l),k=!0)},o(a){v(m);v(g);v(l);k=!1},d(a){a&&z(b);m&&m.d();g&&g.d();l&&l.d()}}}function cc(a,b,c){let {descriptionId:d}=b,{labelId:e}=b,{step:f}=b;a.$set=a=>{"descriptionId"in a&&c(0,d=a.descriptionId);"labelId"in a&&c(1,e=a.labelId);"step"in a&&c(2,f=
a.step)};return[d,e,f]}function kb(a){let b;return{c(){b=document.createElement("div");u(b,"class","shepherd-arrow");u(b,"data-popper-arrow","")},m(a,d){a.insertBefore(b,d||null)},d(a){a&&z(b)}}}function dc(a){let b,c,d,e,f=a[4].options.arrow&&a[4].options.attachTo&&a[4].options.attachTo.element&&a[4].options.attachTo.on&&kb(),h=new ec({props:{descriptionId:a[2],labelId:a[3],step:a[4]}}),k=[{"aria-describedby":void 0!==a[4].options.text?a[2]:null},{"aria-labelledby":a[4].options.title?a[3]:null},
a[1],{role:"dialog"},{tabindex:"0"}],m={};for(let a=0;a<k.length;a+=1)m=Ib(m,k[a]);return{c(){b=document.createElement("div");f&&f.c();c=document.createTextNode(" ");P(h.$$.fragment);$a(b,m);U(b,"shepherd-has-cancel-icon",a[5]);U(b,"shepherd-has-title",a[6]);U(b,"shepherd-element",!0)},m(g,k,m){g.insertBefore(b,k||null);f&&f.m(b,null);b.appendChild(c);K(h,b,null);a[17](b);d=!0;m&&e();e=ka(b,"keydown",a[7])},p(a,[d]){a[4].options.arrow&&a[4].options.attachTo&&a[4].options.attachTo.element&&a[4].options.attachTo.on?
f||(f=kb(),f.c(),f.m(b,c)):f&&(f.d(1),f=null);var e={};d&4&&(e.descriptionId=a[2]);d&8&&(e.labelId=a[3]);d&16&&(e.step=a[4]);h.$set(e);e=b;{d=[d&20&&{"aria-describedby":void 0!==a[4].options.text?a[2]:null},d&24&&{"aria-labelledby":a[4].options.title?a[3]:null},d&2&&a[1],{role:"dialog"},{tabindex:"0"}];let b={},c={},e={$$scope:1},f=k.length;for(;f--;){let a=k[f],r=d[f];if(r){for(g in a)g in r||(c[g]=1);for(let a in r)e[a]||(b[a]=r[a],e[a]=1);k[f]=r}else for(let b in a)e[b]=1}for(let a in c)a in b||
(b[a]=void 0);var g=b}$a(e,g);U(b,"shepherd-has-cancel-icon",a[5]);U(b,"shepherd-has-title",a[6]);U(b,"shepherd-element",!0)},i(a){d||(n(h.$$.fragment,a),d=!0)},o(a){v(h.$$.fragment,a);d=!1},d(c){c&&z(b);f&&f.d();L(h);a[17](null);e()}}}function lb(a){return a.split(" ").filter(a=>!!a.length)}function fc(a,b,c){function d(){e(w);w=p.options.classes;f(w)}function e(a){Z(a)&&(a=lb(a),a.length&&k.classList.remove(...a))}function f(a){Z(a)&&(a=lb(a),a.length&&k.classList.add(...a))}let {classPrefix:h}=
b,{element:k}=b,{descriptionId:m}=b,{firstFocusableElement:g}=b,{focusableElements:l}=b,{labelId:q}=b,{lastFocusableElement:t}=b,{step:p}=b,{dataStepId:B}=b,r,A,w;la().$$.on_mount.push(()=>{c(1,B={[`data-${h}shepherd-step-id`]:p.id});c(9,l=k.querySelectorAll('a[href], area[href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), button:not([disabled]), [tabindex="0"]'));c(8,g=l[0]);c(10,t=l[l.length-1])});la().$$.after_update.push(()=>{w!==p.options.classes&&d()});a.$set=a=>
{"classPrefix"in a&&c(11,h=a.classPrefix);"element"in a&&c(0,k=a.element);"descriptionId"in a&&c(2,m=a.descriptionId);"firstFocusableElement"in a&&c(8,g=a.firstFocusableElement);"focusableElements"in a&&c(9,l=a.focusableElements);"labelId"in a&&c(3,q=a.labelId);"lastFocusableElement"in a&&c(10,t=a.lastFocusableElement);"step"in a&&c(4,p=a.step);"dataStepId"in a&&c(1,B=a.dataStepId)};a.$$.update=()=>{a.$$.dirty&16&&(c(5,r=p.options&&p.options.cancelIcon&&p.options.cancelIcon.enabled),c(6,A=p.options&&
p.options.title))};return[k,B,m,q,p,r,A,a=>{const {tour:b}=p;switch(a.keyCode){case 9:if(0===l.length){a.preventDefault();break}a.shiftKey?document.activeElement===g&&(a.preventDefault(),t.focus()):document.activeElement===t&&(a.preventDefault(),g.focus());break;case 27:b.options.exitOnEsc&&p.cancel();break;case 37:b.options.keyboardNavigation&&b.back();break;case 39:b.options.keyboardNavigation&&b.next()}},g,l,t,h,()=>k,w,d,e,f,function(a){W[a?"unshift":"push"](()=>{c(0,k=a)})}]}function gc(a){a&&
({steps:a}=a,a.forEach(a=>{a.options&&!1===a.options.canClickTarget&&a.options.attachTo&&a.target instanceof HTMLElement&&a.target.classList.remove("shepherd-target-click-disabled")}))}function hc({width:a,height:b,x:c=0,y:d=0,r:e=0}){let {innerWidth:f,innerHeight:h}=window;return`M${f},${h}\
H0\
V0\
H${f}\
V${h}\
Z\
M${c+e},${d}\
a${e},${e},0,0,0-${e},${e}\
V${b+d-e}\
a${e},${e},0,0,0,${e},${e}\
H${a+c-e}\
a${e},${e},0,0,0,${e}-${e}\
V${d+e}\
a${e},${e},0,0,0-${e}-${e}\
Z`}function ic(a){let b,c,d,e;return{c(){b=Za("svg");c=Za("path");u(c,"d",a[2]);u(b,"class",d=`${a[1]?"shepherd-modal-is-visible":""} shepherd-modal-overlay-container`)},m(d,h,k){d.insertBefore(b,h||null);b.appendChild(c);a[17](b);k&&e();e=ka(b,"touchmove",a[3])},p(a,[e]){e&4&&u(c,"d",a[2]);e&2&&d!==(d=`${a[1]?"shepherd-modal-is-visible":""} shepherd-modal-overlay-container`)&&u(b,"class",d)},i:y,o:y,d(c){c&&z(b);a[17](null);e()}}}function mb(a){if(!a)return null;let b=a instanceof HTMLElement&&window.getComputedStyle(a).overflowY;
return"hidden"!==b&&"visible"!==b&&a.scrollHeight>=a.clientHeight?a:mb(a.parentElement)}function jc(a,b,c){function d(){c(4,q={width:0,height:0,x:0,y:0,r:0})}function e(){c(1,t=!1);m()}function f(a,b,d=0,e=0){if(a.getBoundingClientRect){var f=a.getBoundingClientRect();var g=f.y||f.top;f=f.bottom||g+f.height;if(b){var r=b.getBoundingClientRect();b=r.y||r.top;r=r.bottom||b+r.height;g=Math.max(g,b);f=Math.min(f,r)}g={y:g,height:Math.max(f-g,0)};let {y:h,height:k}=g,{x:l,width:m,left:p}=a.getBoundingClientRect();
c(4,q={width:m+2*d,height:k+2*d,x:(l||p)-d,y:h-d,r:e})}}function h(){c(1,t=!0)}function k(){window.addEventListener("touchmove",r,{passive:!1})}function m(){p&&(cancelAnimationFrame(p),p=void 0);window.removeEventListener("touchmove",r,{passive:!1})}function g(a){let {modalOverlayOpeningPadding:b,modalOverlayOpeningRadius:c}=a.options;if(a.target){let d=mb(a.target),e=()=>{p=void 0;f(a.target,d,b,c);p=requestAnimationFrame(e)};e();k()}else d()}let {element:l}=b,{openingProperties:q}=b;b=va();let t=
!1,p=void 0,B;d();let r=a=>{a.preventDefault()};a.$set=a=>{"element"in a&&c(0,l=a.element);"openingProperties"in a&&c(4,q=a.openingProperties)};a.$$.update=()=>{a.$$.dirty&16&&c(2,B=hc(q))};return[l,t,B,a=>{a.stopPropagation()},q,()=>l,d,e,f,function(a){m();a.tour.options.useModalOverlay?(g(a),h()):e()},h,p,b,r,k,m,g,function(a){W[a?"unshift":"push"](()=>{c(0,l=a)})}]}var qb=function(a){var b;if(b=!!a&&"object"===typeof a)b=Object.prototype.toString.call(a),b=!("[object RegExp]"===b||"[object Date]"===
b||a.$$typeof===kc);return b},kc="function"===typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;R.all=function(a,b){if(!Array.isArray(a))throw Error("first argument should be an array");return a.reduce(function(a,d){return R(a,d,b)},{})};var lc=R;class Aa{on(a,b,c,d=!1){void 0===this.bindings&&(this.bindings={});void 0===this.bindings[a]&&(this.bindings[a]=[]);this.bindings[a].push({handler:b,ctx:c,once:d});return this}once(a,b,c){return this.on(a,b,c,!0)}off(a,b){if(void 0===this.bindings||
void 0===this.bindings[a])return this;void 0===b?delete this.bindings[a]:this.bindings[a].forEach((c,d)=>{c.handler===b&&this.bindings[a].splice(d,1)});return this}trigger(a,...b){void 0!==this.bindings&&this.bindings[a]&&this.bindings[a].forEach((c,d)=>{let {ctx:e,handler:f,once:h}=c;f.apply(e||this,b);h&&this.bindings[a].splice(d,1)});return this}}var ha=["top","bottom","right","left"],Ta=ha.reduce(function(a,b){return a.concat([b+"-start",b+"-end"])},[]),Sa=[].concat(ha,["auto"]).reduce(function(a,
b){return a.concat([b,b+"-start",b+"-end"])},[]),vb="beforeRead read afterRead beforeMain main afterMain beforeWrite write afterWrite".split(" "),nb={placement:"bottom",modifiers:[],strategy:"absolute"},oa={passive:!0},yb={top:"auto",right:"auto",bottom:"auto",left:"auto"},zb={left:"right",right:"left",bottom:"top",top:"bottom"},Ab={start:"end",end:"start"},mc=function(a){void 0===a&&(a={});var b=a.defaultModifiers,c=void 0===b?[]:b;a=a.defaultOptions;var d=void 0===a?nb:a;return function(a,b,h){function e(){g.orderedModifiers.forEach(function(a){var b=
a.name,c=a.options;c=void 0===c?{}:c;a=a.effect;"function"===typeof a&&(b=a({state:g,name:b,instance:t,options:c}),l.push(b||function(){}))})}function f(){l.forEach(function(a){return a()});l=[]}void 0===h&&(h=d);var g={placement:"bottom",orderedModifiers:[],options:Object.assign({},nb,{},d),modifiersData:{},elements:{reference:a,popper:b},attributes:{},styles:{}},l=[],q=!1,t={state:g,setOptions:function(h){f();g.options=Object.assign({},d,{},g.options,{},h);g.scrollParents={reference:ba(a)?da(a):
a.contextElement?da(a.contextElement):[],popper:da(b)};h=ub(xb([].concat(c,g.options.modifiers)));g.orderedModifiers=h.filter(function(a){return a.enabled});e();return t.update()},forceUpdate:function(){if(!q){var a=g.elements,b=a.reference;a=a.popper;if(Ka(b,a))for(g.rects={reference:Ga(b,ea(a),"fixed"===g.options.strategy),popper:ra(a)},g.reset=!1,g.placement=g.options.placement,g.orderedModifiers.forEach(function(a){return g.modifiersData[a.name]=Object.assign({},a.data)}),b=0;b<g.orderedModifiers.length;b++)if(!0===
g.reset)g.reset=!1,b=-1;else{var c=g.orderedModifiers[b];a=c.fn;var d=c.options;d=void 0===d?{}:d;c=c.name;"function"===typeof a&&(g=a({state:g,options:d,name:c,instance:t})||g)}}},update:wb(function(){return new Promise(function(a){t.forceUpdate();a(g)})}),destroy:function(){f();q=!0}};if(!Ka(a,b))return t;t.setOptions(h).then(function(a){if(!q&&h.onFirstUpdate)h.onFirstUpdate(a)});return t}}({defaultModifiers:[{name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(a){var b=
a.state,c=a.instance;a=a.options;var d=a.scroll,e=void 0===d?!0:d;a=a.resize;var f=void 0===a?!0:a,h=x(b.elements.popper),k=[].concat(b.scrollParents.reference,b.scrollParents.popper);e&&k.forEach(function(a){a.addEventListener("scroll",c.update,oa)});f&&h.addEventListener("resize",c.update,oa);return function(){e&&k.forEach(function(a){a.removeEventListener("scroll",c.update,oa)});f&&h.removeEventListener("resize",c.update,oa)}},data:{}},{name:"popperOffsets",enabled:!0,phase:"read",fn:function(a){var b=
a.state;b.modifiersData[a.name]=La({reference:b.rects.reference,element:b.rects.popper,strategy:"absolute",placement:b.placement})},data:{}},{name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(a){var b=a.state,c=a.options;a=c.gpuAcceleration;a=void 0===a?!0:a;c=c.adaptive;c=void 0===c?!0:c;a={placement:D(b.placement),popper:b.elements.popper,popperRect:b.rects.popper,gpuAcceleration:a};null!=b.modifiersData.popperOffsets&&(b.styles.popper=Object.assign({},b.styles.popper,{},Ma(Object.assign({},
a,{offsets:b.modifiersData.popperOffsets,position:b.options.strategy,adaptive:c}))));null!=b.modifiersData.arrow&&(b.styles.arrow=Object.assign({},b.styles.arrow,{},Ma(Object.assign({},a,{offsets:b.modifiersData.arrow,position:"absolute",adaptive:!1}))));b.attributes.popper=Object.assign({},b.attributes.popper,{"data-popper-placement":b.placement})},data:{}},{name:"applyStyles",enabled:!0,phase:"write",fn:function(a){var b=a.state;Object.keys(b.elements).forEach(function(a){var c=b.styles[a]||{},
e=b.attributes[a]||{},f=b.elements[a];C(f)&&F(f)&&(Object.assign(f.style,c),Object.keys(e).forEach(function(a){var b=e[a];!1===b?f.removeAttribute(a):f.setAttribute(a,!0===b?"":b)}))})},effect:function(a){var b=a.state,c={popper:{position:b.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};Object.assign(b.elements.popper.style,c.popper);b.elements.arrow&&Object.assign(b.elements.arrow.style,c.arrow);return function(){Object.keys(b.elements).forEach(function(a){var d=
b.elements[a],f=b.attributes[a]||{};a=Object.keys(b.styles.hasOwnProperty(a)?b.styles[a]:c[a]).reduce(function(a,b){a[b]="";return a},{});C(d)&&F(d)&&(Object.assign(d.style,a),Object.keys(f).forEach(function(a){d.removeAttribute(a)}))})}},requires:["computeStyles"]},{name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(a){var b=a.state,c=a.name;a=a.options.offset;var d=void 0===a?[0,0]:a;a=Sa.reduce(function(a,c){var e=b.rects;var f=D(c);var h=0<=["left","top"].indexOf(f)?
-1:1,k="function"===typeof d?d(Object.assign({},e,{placement:c})):d;e=k[0];k=k[1];e=e||0;k=(k||0)*h;f=0<=["left","right"].indexOf(f)?{x:k,y:e}:{x:e,y:k};a[c]=f;return a},{});var e=a[b.placement],f=e.x;e=e.y;null!=b.modifiersData.popperOffsets&&(b.modifiersData.popperOffsets.x+=f,b.modifiersData.popperOffsets.y+=e);b.modifiersData[c]=a}},{name:"flip",enabled:!0,phase:"main",fn:function(a){var b=a.state,c=a.options;a=a.name;if(!b.modifiersData[a]._skip){var d=c.mainAxis;d=void 0===d?!0:d;var e=c.altAxis;
e=void 0===e?!0:e;var f=c.fallbackPlacements,h=c.padding,k=c.boundary,m=c.rootBoundary,g=c.altBoundary,l=c.flipVariations,q=void 0===l?!0:l,t=c.allowedAutoPlacements;c=b.options.placement;l=D(c);f=f||(l!==c&&q?Eb(c):[ja(c)]);var p=[c].concat(f).reduce(function(a,c){return a.concat("auto"===D(c)?Db(b,{placement:c,boundary:k,rootBoundary:m,padding:h,flipVariations:q,allowedAutoPlacements:t}):c)},[]);c=b.rects.reference;f=b.rects.popper;var n=new Map;l=!0;for(var r=p[0],A=0;A<p.length;A++){var w=p[A],
u=D(w),v="start"===w.split("-")[1],Q=0<=["top","bottom"].indexOf(u),x=Q?"width":"height",y=fa(b,{placement:w,boundary:k,rootBoundary:m,altBoundary:g,padding:h});v=Q?v?"right":"left":v?"bottom":"top";c[x]>f[x]&&(v=ja(v));x=ja(v);Q=[];d&&Q.push(0>=y[u]);e&&Q.push(0>=y[v],0>=y[x]);if(Q.every(function(a){return a})){r=w;l=!1;break}n.set(w,Q)}if(l)for(d=function(a){var b=p.find(function(b){if(b=n.get(b))return b.slice(0,a).every(function(a){return a})});if(b)return r=b,"break"},e=q?3:1;0<e&&"break"!==
d(e);e--);b.placement!==r&&(b.modifiersData[a]._skip=!0,b.placement=r,b.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}},{name:"preventOverflow",enabled:!0,phase:"main",fn:function(a){var b=a.state,c=a.options;a=a.name;var d=c.mainAxis,e=void 0===d?!0:d;d=c.altAxis;d=void 0===d?!1:d;var f=c.tether;f=void 0===f?!0:f;var h=c.tetherOffset,k=void 0===h?0:h;c=fa(b,{boundary:c.boundary,rootBoundary:c.rootBoundary,padding:c.padding,altBoundary:c.altBoundary});h=D(b.placement);var m=b.placement.split("-")[1],
g=!m,l=sa(h);h="x"===l?"y":"x";var q=b.modifiersData.popperOffsets,t=b.rects.reference,p=b.rects.popper,n="function"===typeof k?k(Object.assign({},b.rects,{placement:b.placement})):k;k={x:0,y:0};if(q){if(e){var r="y"===l?"top":"left",A="y"===l?"bottom":"right",w="y"===l?"height":"width";e=q[l];var u=q[l]+c[r],v=q[l]-c[A],x=f?-p[w]/2:0,y="start"===m?t[w]:p[w];m="start"===m?-p[w]:-t[w];p=b.elements.arrow;p=f&&p?ra(p):{width:0,height:0};var z=b.modifiersData["arrow#persistent"]?b.modifiersData["arrow#persistent"].padding:
{top:0,right:0,bottom:0,left:0};r=z[r];A=z[A];p=Math.max(0,Math.min(t[w],p[w]));y=g?t[w]/2-x-p-r-n:y-p-r-n;g=g?-t[w]/2+x+p+A+n:m+p+A+n;n=b.elements.arrow&&ea(b.elements.arrow);t=b.modifiersData.offset?b.modifiersData.offset[b.placement][l]:0;n=q[l]+y-t-(n?"y"===l?n.clientTop||0:n.clientLeft||0:0);g=q[l]+g-t;f=Math.max(f?Math.min(u,n):u,Math.min(e,f?Math.max(v,g):v));q[l]=f;k[l]=f-e}d&&(d=q[h],f=Math.max(d+c["x"===l?"top":"left"],Math.min(d,d-c["x"===l?"bottom":"right"])),q[h]=f,k[h]=f-d);b.modifiersData[a]=
k}},requiresIfExists:["offset"]},{name:"arrow",enabled:!0,phase:"main",fn:function(a){var b,c=a.state;a=a.name;var d=c.elements.arrow,e=c.modifiersData.popperOffsets,f=D(c.placement),h=sa(f);f=0<=["left","right"].indexOf(f)?"height":"width";if(d&&e){var k=c.modifiersData[a+"#persistent"].padding,m=ra(d),g="y"===h?"top":"left",l="y"===h?"bottom":"right",q=c.rects.reference[f]+c.rects.reference[h]-e[h]-c.rects.popper[f];e=e[h]-c.rects.reference[h];d=(d=ea(d))?"y"===h?d.clientHeight||0:d.clientWidth||
0:0;q=d/2-m[f]/2+(q/2-e/2);f=Math.max(k[g],Math.min(q,d-m[f]-k[l]));c.modifiersData[a]=(b={},b[h]=f,b.centerOffset=f-q,b)}},effect:function(a){var b=a.state,c=a.options;a=a.name;var d=c.element;d=void 0===d?"[data-popper-arrow]":d;c=c.padding;c=void 0===c?0:c;if(null!=d){if("string"===typeof d&&(d=b.elements.popper.querySelector(d),!d))return;Oa(b.elements.popper,d)&&(b.elements.arrow=d,b.modifiersData[a+"#persistent"]={padding:Qa("number"!==typeof c?c:Ra(c,ha))})}},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]},
{name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(a){var b=a.state;a=a.name;var c=b.rects.reference,d=b.rects.popper,e=b.modifiersData.preventOverflow,f=fa(b,{elementContext:"reference"}),h=fa(b,{altBoundary:!0});c=Ua(f,c);d=Ua(h,d,e);e=Va(c);h=Va(d);b.modifiersData[a]={referenceClippingOffsets:c,popperEscapeOffsets:d,isReferenceHidden:e,hasPopperEscaped:h};b.attributes.popper=Object.assign({},b.attributes.popper,{"data-popper-reference-hidden":e,"data-popper-escaped":h})}}]});
let V,ia=[],W=[],ma=[],bb=[],Jb=Promise.resolve(),za=!1,xa=!1,ya=new Set,na=new Set,N;class I{$destroy(){L(this,1);this.$destroy=y}$on(a,b){let c=this.$$.callbacks[a]||(this.$$.callbacks[a]=[]);c.push(b);return()=>{let a=c.indexOf(b);-1!==a&&c.splice(a,1)}}$set(){}}class Mb extends I{constructor(a){super();H(this,a,Lb,Kb,G,{config:6,step:7})}}class ac extends I{constructor(a){super();H(this,a,Ob,Nb,G,{step:0})}}class Ub extends I{constructor(a){super();H(this,a,Qb,Pb,G,{cancelIcon:0,step:2})}}class Tb extends I{constructor(a){super();
H(this,a,Sb,Rb,G,{labelId:1,element:0,title:2})}}class Zb extends I{constructor(a){super();H(this,a,Wb,Vb,G,{labelId:0,step:1})}}class $b extends I{constructor(a){super();H(this,a,Yb,Xb,G,{descriptionId:1,element:0,step:2})}}class ec extends I{constructor(a){super();H(this,a,cc,bc,G,{descriptionId:0,labelId:1,step:2})}}class nc extends I{constructor(a){super();H(this,a,fc,dc,G,{classPrefix:11,element:0,descriptionId:2,firstFocusableElement:8,focusableElements:9,labelId:3,lastFocusableElement:10,step:4,
dataStepId:1,getElement:12})}get getElement(){return this.$$.ctx[12]}}(function(a,b){return b={exports:{}},a(b,b.exports),b.exports})(function(a,b){(function(){a.exports={polyfill:function(){function a(a,b){this.scrollLeft=a;this.scrollTop=b}function b(a){if(null===a||"object"!==typeof a||void 0===a.behavior||"auto"===a.behavior||"instant"===a.behavior)return!0;if("object"===typeof a&&"smooth"===a.behavior)return!1;throw new TypeError("behavior member of ScrollOptions "+a.behavior+" is not a valid value for enumeration ScrollBehavior.");
}function e(a,b){if("Y"===b)return a.clientHeight+u<a.scrollHeight;if("X"===b)return a.clientWidth+u<a.scrollWidth}function f(a,b){a=g.getComputedStyle(a,null)["overflow"+b];return"auto"===a||"scroll"===a}function h(a){var b=e(a,"Y")&&f(a,"Y");a=e(a,"X")&&f(a,"X");return b||a}function k(a){var b=(p()-a.startTime)/468;var c=.5*(1-Math.cos(Math.PI*(1<b?1:b)));b=a.startX+(a.x-a.startX)*c;c=a.startY+(a.y-a.startY)*c;a.method.call(a.scrollable,b,c);b===a.x&&c===a.y||g.requestAnimationFrame(k.bind(g,a))}
function m(b,c,d){var e=p();if(b===l.body){var f=g;var h=g.scrollX||g.pageXOffset;b=g.scrollY||g.pageYOffset;var r=n.scroll}else f=b,h=b.scrollLeft,b=b.scrollTop,r=a;k({scrollable:f,method:r,startTime:e,startX:h,startY:b,x:c,y:d})}var g=window,l=document;if(!("scrollBehavior"in l.documentElement.style&&!0!==g.__forceSmoothScrollPolyfill__)){var q=g.HTMLElement||g.Element,n={scroll:g.scroll||g.scrollTo,scrollBy:g.scrollBy,elementScroll:q.prototype.scroll||a,scrollIntoView:q.prototype.scrollIntoView},
p=g.performance&&g.performance.now?g.performance.now.bind(g.performance):Date.now,u=/MSIE |Trident\/|Edge\//.test(g.navigator.userAgent)?1:0;g.scroll=g.scrollTo=function(a,c){void 0!==a&&(!0===b(a)?n.scroll.call(g,void 0!==a.left?a.left:"object"!==typeof a?a:g.scrollX||g.pageXOffset,void 0!==a.top?a.top:void 0!==c?c:g.scrollY||g.pageYOffset):m.call(g,l.body,void 0!==a.left?~~a.left:g.scrollX||g.pageXOffset,void 0!==a.top?~~a.top:g.scrollY||g.pageYOffset))};g.scrollBy=function(a,c){void 0!==a&&(b(a)?
n.scrollBy.call(g,void 0!==a.left?a.left:"object"!==typeof a?a:0,void 0!==a.top?a.top:void 0!==c?c:0):m.call(g,l.body,~~a.left+(g.scrollX||g.pageXOffset),~~a.top+(g.scrollY||g.pageYOffset)))};q.prototype.scroll=q.prototype.scrollTo=function(a,c){if(void 0!==a)if(!0===b(a)){if("number"===typeof a&&void 0===c)throw new SyntaxError("Value could not be converted");n.elementScroll.call(this,void 0!==a.left?~~a.left:"object"!==typeof a?~~a:this.scrollLeft,void 0!==a.top?~~a.top:void 0!==c?~~c:this.scrollTop)}else c=
a.left,a=a.top,m.call(this,this,"undefined"===typeof c?this.scrollLeft:~~c,"undefined"===typeof a?this.scrollTop:~~a)};q.prototype.scrollBy=function(a,c){void 0!==a&&(!0===b(a)?n.elementScroll.call(this,void 0!==a.left?~~a.left+this.scrollLeft:~~a+this.scrollLeft,void 0!==a.top?~~a.top+this.scrollTop:~~c+this.scrollTop):this.scroll({left:~~a.left+this.scrollLeft,top:~~a.top+this.scrollTop,behavior:a.behavior}))};q.prototype.scrollIntoView=function(a){if(!0===b(a))n.scrollIntoView.call(this,void 0===
a?!0:a);else{for(a=this;a!==l.body&&!1===h(a);)a=a.parentNode||a.host;var c=a.getBoundingClientRect(),d=this.getBoundingClientRect();a!==l.body?(m.call(this,a,a.scrollLeft+d.left-c.left,a.scrollTop+d.top-c.top),"fixed"!==g.getComputedStyle(a).position&&g.scrollBy({left:c.left,top:c.top,behavior:"smooth"})):g.scrollBy({left:d.left,top:d.top,behavior:"smooth"})}}}}}})()}).polyfill();class Ba extends Aa{constructor(a,b={}){super(a,b);this.tour=a;this.classPrefix=this.tour.options?Wa(this.tour.options.classPrefix):
"";this.styles=a.styles;Ea(this);this._setOptions(b);return this}cancel(){this.tour.cancel();this.trigger("cancel")}complete(){this.tour.complete();this.trigger("complete")}destroy(){this.tooltip&&(this.tooltip.destroy(),this.tooltip=null);this.el instanceof HTMLElement&&this.el.parentNode&&(this.el.parentNode.removeChild(this.el),this.el=null);this.target&&this._updateStepTargetOnHide();this.trigger("destroy")}getTour(){return this.tour}hide(){this.tour.modal.hide();this.trigger("before-hide");this.el&&
(this.el.hidden=!0);this.target&&this._updateStepTargetOnHide();this.trigger("hide")}isCentered(){let a=ua(this);return!a.element||!a.on}isOpen(){return!(!this.el||this.el.hidden)}show(){if(S(this.options.beforeShowPromise)){let a=this.options.beforeShowPromise();if(void 0!==a)return a.then(()=>this._show())}this._show()}updateStepOptions(a){Object.assign(this.options,a);this.shepherdElementComponent&&this.shepherdElementComponent.$set({step:this})}_createTooltipContent(){this.shepherdElementComponent=
new nc({target:document.body,props:{classPrefix:this.classPrefix,descriptionId:`${this.id}-description`,labelId:`${this.id}-label`,step:this,styles:this.styles}});return this.shepherdElementComponent.getElement()}_scrollTo(a){let {element:b}=ua(this);S(this.options.scrollToHandler)?this.options.scrollToHandler(b):b instanceof HTMLElement&&"function"===typeof b.scrollIntoView&&b.scrollIntoView(a)}_getClassOptions(a){var b=this.tour&&this.tour.options&&this.tour.options.defaultStepOptions;b=b&&b.classes?
b.classes:"";a=[...(a.classes?a.classes:"").split(" "),...b.split(" ")];a=new Set(a);return Array.from(a).join(" ").trim()}_setOptions(a={}){let b=this.tour&&this.tour.options&&this.tour.options.defaultStepOptions;b=lc({},b||{});this.options=Object.assign({arrow:!0},b,a);let {when:c}=this.options;this.options.classes=this._getClassOptions(a);this.destroy();this.id=this.options.id||`step-${va()}`;c&&Object.keys(c).forEach(a=>{this.on(a,c[a],this)})}_setupElements(){void 0!==this.el&&this.destroy();
this.el=this._createTooltipContent();this.options.advanceOn&&sb(this);{this.tooltip&&this.tooltip.destroy();let a=ua(this),b=a.element,c=Hb(a,this);this.isCentered()&&(b=document.body,this.shepherdElementComponent.getElement().classList.add("shepherd-centered"));this.tooltip=mc(b,this.el,c);this.target=a.element}}_show(){this.trigger("before-show");this._setupElements();this.tour.modal||this.tour._setupModal();this.tour.modal.setupForStep(this);this._styleTargetElementForStep(this);this.el.hidden=
!1;this.options.scrollTo&&setTimeout(()=>{this._scrollTo(this.options.scrollTo)});this.el.hidden=!1;let a=this.shepherdElementComponent.getElement(),b=this.target||document.body;b.classList.add(`${this.classPrefix}shepherd-enabled`);b.classList.add(`${this.classPrefix}shepherd-target`);a.classList.add("shepherd-enabled");this.trigger("show")}_styleTargetElementForStep(a){let b=a.target;b&&(a.options.highlightClass&&b.classList.add(a.options.highlightClass),!1===a.options.canClickTarget&&b.classList.add("shepherd-target-click-disabled"))}_updateStepTargetOnHide(){this.options.highlightClass&&
this.target.classList.remove(this.options.highlightClass);this.target.classList.remove(`${this.classPrefix}shepherd-enabled`,`${this.classPrefix}shepherd-target`)}}class oc extends I{constructor(a){super();H(this,a,jc,ic,G,{element:0,openingProperties:4,getElement:5,closeModalOpening:6,hide:7,positionModalOpening:8,setupForStep:9,show:10})}get getElement(){return this.$$.ctx[5]}get closeModalOpening(){return this.$$.ctx[6]}get hide(){return this.$$.ctx[7]}get positionModalOpening(){return this.$$.ctx[8]}get setupForStep(){return this.$$.ctx[9]}get show(){return this.$$.ctx[10]}}
let X=new Aa;class pc extends Aa{constructor(a={}){super(a);Ea(this);this.options=Object.assign({},{exitOnEsc:!0,keyboardNavigation:!0},a);this.classPrefix=Wa(this.options.classPrefix);this.steps=[];this.addSteps(this.options.steps);"active cancel complete inactive show start".split(" ").map(a=>{(a=>{this.on(a,b=>{b=b||{};b.tour=this;X.trigger(a,b)})})(a)});this._setTourID();return this}addStep(a,b){a instanceof Ba?a.tour=this:a=new Ba(this,a);void 0!==b?this.steps.splice(b,0,a):this.steps.push(a);
return a}addSteps(a){Array.isArray(a)&&a.forEach(a=>{this.addStep(a)});return this}back(){let a=this.steps.indexOf(this.currentStep);this.show(a-1,!1)}cancel(){this.options.confirmCancel?window.confirm(this.options.confirmCancelMessage||"Are you sure you want to stop the tour?")&&this._done("cancel"):this._done("cancel")}complete(){this._done("complete")}getById(a){return this.steps.find(b=>b.id===a)}getCurrentStep(){return this.currentStep}hide(){let a=this.getCurrentStep();if(a)return a.hide()}isActive(){return X.activeTour===
this}next(){let a=this.steps.indexOf(this.currentStep);a===this.steps.length-1?this.complete():this.show(a+1,!0)}removeStep(a){let b=this.getCurrentStep();this.steps.some((b,d)=>{if(b.id===a)return b.isOpen()&&b.hide(),b.destroy(),this.steps.splice(d,1),!0});b&&b.id===a&&(this.currentStep=void 0,this.steps.length?this.show(0):this.cancel())}show(a=0,b=!0){if(a=Z(a)?this.getById(a):this.steps[a])this._updateStateBeforeShow(),S(a.options.showOn)&&!a.options.showOn()?this._skipStep(a,b):(this.trigger("show",
{step:a,previous:this.currentStep}),this.currentStep=a,a.show())}start(){this.trigger("start");this.focusedElBeforeOpen=document.activeElement;this.currentStep=null;this._setupModal();this._setupActiveTour();this.next()}_done(a){let b=this.steps.indexOf(this.currentStep);Array.isArray(this.steps)&&this.steps.forEach(a=>a.destroy());gc(this);this.trigger(a,{index:b});X.activeTour=null;this.trigger("inactive",{tour:this});this.modal&&this.modal.hide();"cancel"!==a&&"complete"!==a||!this.modal||(a=document.querySelector(".shepherd-modal-overlay-container"))&&
a.remove();this.focusedElBeforeOpen instanceof HTMLElement&&this.focusedElBeforeOpen.focus()}_setupActiveTour(){this.trigger("active",{tour:this});X.activeTour=this}_setupModal(){this.modal=new oc({target:this.options.modalContainer||document.body,props:{classPrefix:this.classPrefix,styles:this.styles}})}_skipStep(a,b){a=this.steps.indexOf(a);this.show(b?a+1:a-1,b)}_updateStateBeforeShow(){this.currentStep&&this.currentStep.hide();this.isActive()||this._setupActiveTour()}_setTourID(){this.id=`${this.options.tourName||
"tour"}--${va()}`}}Object.assign(X,{Tour:pc,Step:Ba});return X})
//# sourceMappingURL=shepherd.min.js.map
|
cdnjs/cdnjs
|
ajax/libs/shepherd.js/8.0.1/js/shepherd.min.js
|
JavaScript
|
mit
| 49,444
|
require './common'
require './fft'
$pulse_25 = [
+80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80,
+80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80,
+80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80,
+80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
]
$pulse_12 = [
+80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80,
+80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80, +80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
-80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
]
$pseudo_tri = [
+5, +5, +5, +5, +5, +5, +5, +5, +15, +15, +15, +15, +15, +15, +15, +15,
+25, +25, +25, +25, +25, +25, +25, +25, +35, +35, +35, +35, +35, +35, +35, +35,
+45, +45, +45, +45, +45, +45, +45, +45, +55, +55, +55, +55, +55, +55, +55, +55,
+65, +65, +65, +65, +65, +65, +65, +65, +75, +75, +75, +75, +75, +75, +75, +75,
+75, +75, +75, +75, +75, +75, +75, +75, +65, +65, +65, +65, +65, +65, +65, +65,
+55, +55, +55, +55, +55, +55, +55, +55, +45, +45, +45, +45, +45, +45, +45, +45,
+35, +35, +35, +35, +35, +35, +35, +35, +25, +25, +25, +25, +25, +25, +25, +25,
+15, +15, +15, +15, +15, +15, +15, +15, +5, +5, +5, +5, +5, +5, +5, +5,
-5, -5, -5, -5, -5, -5, -5, -5, -15, -15, -15, -15, -15, -15, -15, -15,
-25, -25, -25, -25, -25, -25, -25, -25, -35, -35, -35, -35, -35, -35, -35, -35,
-45, -45, -45, -45, -45, -45, -45, -45, -55, -55, -55, -55, -55, -55, -55, -55,
-65, -65, -65, -65, -65, -65, -65, -65, -75, -75, -75, -75, -75, -75, -75, -75,
-75, -75, -75, -75, -75, -75, -75, -75, -65, -65, -65, -65, -65, -65, -65, -65,
-55, -55, -55, -55, -55, -55, -55, -55, -45, -45, -45, -45, -45, -45, -45, -45,
-35, -35, -35, -35, -35, -35, -35, -35, -25, -25, -25, -25, -25, -25, -25, -25,
-15, -15, -15, -15, -15, -15, -15, -15, -5, -5, -5, -5, -5, -5, -5, -5,
]
$fft_pulse_25 = fft($pulse_25)
$fft_pulse_12 = fft($pulse_12)
$fft_pseudo_tri = fft($pseudo_tri)
$file = File::open("wave_table_2.rb", "w")
def generate_wave_table(max, name, amp, ffta)
$file.printf("$wave_table_%s_m%d = [\n ", name, max)
a = ifft(lpf_fft(ffta, max), amp)
a.each_with_index do |level, n|
$file.printf("%+4d,", level)
if n == 255
$file.printf("\n")
elsif n % 16 == 15
$file.printf("\n ")
else
$file.printf(" ")
end
end
$file.printf("]\n\n")
end
def generate_wave_table_pulse_25(max)
generate_wave_table(max, "pulse_25", 1.0 / Math::sqrt(3.0), $fft_pulse_25)
end
def generate_wave_table_pulse_12(max)
generate_wave_table(max, "pulse_12", 1.0 / Math::sqrt(3.0), $fft_pulse_12)
end
def generate_wave_table_pseudo_tri(max)
generate_wave_table(max, "pseudo_tri", 1.0, $fft_pseudo_tri)
end
FREQ_MAX = 8819 # refs "freq_table.rb"
def max_from_i(i)
max = 128 / (i + 1)
max = 64 if max == 128
max = max - 1 if max % 2 == 0
return max
end
def generate_wave_tables(name)
wave_table_sels = (0..(FREQ_MAX / 256))
$file.printf("$wave_tables_%s = [\n", name)
wave_table_sels.each do |i|
$file.printf(" $wave_table_%s_m%d,\n", name, max_from_i(i))
end
$file.printf("]\n\n")
end
overtones = (0..(FREQ_MAX / 256)).map { |i| max_from_i(i) }.uniq
overtones.each do |max|
generate_wave_table_pulse_25(max)
end
overtones.each do |max|
generate_wave_table_pulse_12(max)
end
overtones.each do |max|
generate_wave_table_pseudo_tri(max)
end
generate_wave_tables("pulse_25")
generate_wave_tables("pulse_12")
generate_wave_tables("pseudo_tri")
$file.close
|
risgk/DigitalSynthVRA8
|
vra8_ruby/generate_wave_table_2.rb
|
Ruby
|
cc0-1.0
| 6,437
|
package com.foo.rest;
public class Constantes {
/**
* Fichero de configuración
*/
public static final String NOMBRE_PROPERTIES = "sksm0016";
public static final String VEP_ORDERNO_FORMAT = "EEECCCCTTTTRRRRFFFFFFFFHHHHHH";
/**
* CODIGOS
*/
public static final String CODIGO_EFECTIVO = "01";
public static final String CODIGO_TARJETA_COMPRA = "02";
public static final String CODIGO_TARJETA_ECI = "03";
public static final String CODIGO_TARJETA_ECI_PT = "05";
public static final String CODIGO_CUENTA_OC = "06";
public static final String CODIGO_BANCOS = "07";
public static final String CODIGO_FPP = "08";
public static final String CODIGO_DIVISION_COM = "09";
public static final String CODIGO_AGNC_VIAJES = "10";
public static final String CODIGO_DATAFONO = "11";
public static final String CODIGO_PPP = "18";
public static final String CODIGO_IMPORTE_A_COBRAR = "99";
/**
* TIPOS
*/
public static final String TIPO_MP_OV = "0";
public static final String TIPO_MP_COBRADO = "2";
public static final String TIPO_MP_DEVUELTO = "1";
/**
* ORIGENES
*/
public static final String ORIGEN_FRONT = "0";
public static final String ORIGEN_SAC = "1";
public static final String ORIGEN_PENDIENTE = "2";
public static final String ORIGEN_VEP = "3";
/**
* SUBTIPOS
*/
public static final String SUBTIPO_SOLRED_BANCOS = "001";
public static final String SUBTIPO_SOLRED_CONTING = "002";
public static final String SUBTIPO_CHEQUE_COMBUST = "003";
public static final String SUBTIPO_SOLRED_DESCUENTOS = "004";
public static final String SUBTIPO_FUGAS= "005";
public static final String SUBTIPO_CONSUMO_INTERNO = "006";
public static final String SUBTIPO_VALES_REPSOL = "007";
public static final String SUBTIPO_TRJT_REGALO_ES = "011";
public static final String SUBTIPO_TRJT_REGALO_PT = "012";
public static final String SUBTIPO_TRJT_ABONO_ES = "021";
public static final String SUBTIPO_TRJT_ABONO_PT = "022";
public static final String SUBTIPO_TRJT_REGALO_2_ES = "031";
public static final String SUBTIPO_TRJT_REGALO_2_PT = "032";
public static final String SUBTIPO_TRJT_PROMO_ES = "041";
public static final String SUBTIPO_TRJT_PROMO_PT = "042";
public static final String SUBTIPO_TRJT_FIDELIZACION = "061";
/**
* TYPE
*/
public static final String TIPO_OV = "01";
public static final String TIPO_SUBOPERACION = "02";
/**
* TIPO_VENTA
*/
public static final String TIPOVENTA_RESCISION = "05";
public static final String TIPOVENTA_CUMPLIMENTACION = "06";
public static final String TIPOVENTA_RECOGIDA = "07";
public static final String TIPOVENTA_ENTREGA_CXI = "08";
public static final String TIPOVENTA_RECOGIDA_CXI = "09";
public static final String TIPOVENTA_ENTREGA_PARCIAL = "10";
/**
* MONEDA
*/
public static final String MONEDA_001 = "001";
public static final String MONEDA_002 = "002";
public static final String MONEDA_003 = "003";
public static final String MONEDA_004 = "004";
public static final String MONEDA_005 = "005";
public static final String MONEDA_006 = "006";
public static final String MONEDA_007 = "007";
public static final String MONEDA_008 = "008";
public static final String MONEDA_009 = "009";
public static final String MONEDA_010 = "010";
public static final String MONEDA_011 = "011";
public static final String MONEDA_149 = "149";
public static final String MONEDA_150 = "150";
public static final String MONEDA_151 = "151";
public static final String MONEDA_152 = "152";
public static final String MONEDA_153 = "153";
public static final String MONEDA_154 = "154";
public static final String MONEDA_155 = "155";
public static final String MONEDA_156 = "156";
public static final String MONEDA_157 = "157";
public static final String MONEDA_158 = "158";
public static final String MONEDA_159 = "159";
public static final String MONEDA_999 = "999";
/**
* Datos del servicio web
*/
public static final String NAMESPACE_SERVICIO = "http://es.eci.servicios.sksm0016";
public static final String NOMBRE_SERVICIO = "sksm0016ws";
public static final String NOMBRE_EXCEPCION = "Sksm0016Exception";
public static final String PARAM_OPERTATION_RQ = "RQ";
public static final String PARAM_OPERTATION_RS = "RS";
public static final String STR_ERROR = "ERROR";
/**
* Parámetros de entrada y salida interfaz SOAP
*/
public static final String PARAM_GET_BASKET_TOTALS_INFORMATION_RS = "getBasketTotalsInformationRS";
public static final String PARAM_GET_BASKET_TOTALS_INFORMATION_RQ = "getBasketTotalsInformationRQ";
public static final String PARAM_GET_SALEOP_TOTALS_INFORMATION_RS = "getSaleOpTotalsInformationRS";
public static final String PARAM_GET_SALEOP_TOTALS_INFORMATION_RQ = "getSaleOpTotalsInformationRQ";
/**
* Respuestas del servicio
*/
public static final String RESPONSE_OK = "OK";
public static final String RESPONSE_MESSAGE_OK = "Campos de totalizacion recuperados correctamente.";
public static final String RESPONSE_KO = "KO";
public static final String RESPONSE_MESSAGE_KO = "No se han recuperados campos de totalizacion.";
public static final String RESPONSE_VEP_KO = "VEP_KO";
public static final String RESPONSE_MESSAGE_VEP_KO = "No se han recuperados todos los campos de Venta en Proceso.";
/**
* Servicio Rest VeP
*/
public static final String APPLICATION_JSON = "application/json";
public static final String CONTENT_TYPE = "Content-Type";
public static final String POST = "POST";
public static final String TIME_OUT = "10000";
// ## Servicio Rest VeP - DES
// servicioRestVeP=http://serviciosvep.des.eci.geci/serviciosvep/rest/2_0/mediosPagoOper//
// ## Servicio Rest VeP - PRE
// #servicioRestVeP=http://serviciosvep.pre.eci.geci/serviciosvep/rest/2_0/mediosPagoOper
public static final String URL_SERVICIO_REST_VEP = PropertiesReader.get("servicioRestVeP");
/**
* Parámetros de entrada interfaz REST
*/
public static final String PARAM_LIST_ECI_CUSTOMER_ORDER_NO_RQ = "eciCustomerOrderNo";
public static final String PARAM_LIST_TOTALS_INFO_JSON_RQ = "totalsInfoJSON";
public static final String PARAM_LIST_ECI_ORDER_HEADER_KEY_RQ = "eciOrderHeaderKey";
/**
* Campos de BBDD
*/
public static final int NUM_CONEXIONES_TOTALES = Integer.valueOf(PropertiesReader.getInt("numConexionesTotal"));
public static final String DS_NOMBRE = PropertiesReader.get("dsnombre");
// public static final String FIELD_LINE_KEY ="LINE_KEY";
// public static final String FIELD_HEADER_KEY = "HEADER_KEY";
/**
* Nombres de parámetros de cabecera
*/
public static final String HEADER_PARAM_APP_ID = "appId";
public static final String HEADER_PARAM_TXN_ID = "txnId";
/**
* Constantes auxiliares
*/
public static final String FORMATO_FECHA_ORACLE="YYYY-MM-DD HH:mm:ss.SSS";
public static final String FORMATO_FECHA_LOG_KEY="YYYYMMDDHHmmssSSS";
public static final String STR_VACIA = "";
public static final String LITERAL_0 = "0";
public static final String LITERAL_1 = "1";
// public static final String VALOR_0 = "0.0";
public static final double VALOR_0 = 0.0;
public static final String BARRAN = "\n";
public static final String BARRAT = "\t";
public static final String BARRANT = "\n\t";
public static final String BARRANGUION = "\n - ";
public static final String STR_ESPACIO_ABREPARENTESIS = " (";
public static final String STR_COMA_ESPACIO = ", ";
public static final String STR_CIERRAPARENTESIS_ESPACIO_DOSPUNTOS_ESPACIO = ") : ";
public static final String STR_ARRAY_DEFINE = "[L";
public static final String STR_ARRAY_VIEW = "[ ] ";
public static final String STR_PUNTOYCOMA = ";";
public static final String STR_ESPACIO_DOSPUNTOS_ESPACIO = " : ";
public static final String STR_ESPACIO = " ";
/**
* Constantes de estado del pedido.
*/
public static final String REJECTED_STL_STATUS_ID = "3700.800";
public static final String COMPLETED_STL_STATUS_ID = "3700.100";
public static final String DOC_TYPE_STL_ENTREGA = "0001";
public static final String DOC_TYPE_STL_DEVOLUCION = "0003";
public static final String EMP_ES = "001";
public static final String EMP_PT = "004";
public static final String ECI_PAY_STATUS_NOT_CHARGED = "NOT CHARGED";
public static final String SI = "S";
public static final String YES = "Y";
public static final String NO = "N";
public static final String CREDIT_CARD = "004";
public static final String PAY_PAL = "154";
public static final String CONTRAREEMBOLSO = "003";
public static final String CODIGO_300 = "300";
public static final String COBRO_DIFERIDO = "004-dif";
public static final String CHARGED = "CHARGED";
/**
* LINE_TYPE
*/
public static final String LINE_TYPE_ISPU = "ISPU";
public static final String LINE_TYPE_CLICKNSEND = "CLICKNSEND";
/**
* Error Codes
*/
public static final String ERROR_CODE_201 = "201";
public static final String ERROR_CODE_205 = "205";
public static final String ERROR_CODE_205_DESCRIPTION = "No se ha podido insertar la informaci�n de totales para la cesta.";
public static final String PARAM_OPERTATION_RQEE = "RQSE";
public static final String CONSULTA_VEP = "Consulta VeP";
public static final String PARAM_OPERTATION_RSEE = "RSSE";
public static final String RESPUESTA_VEP = "Respuesta VeP";
}
|
gManzanoMerida/FooFighters
|
Foo/src/com/foo/rest/Constantes.java
|
Java
|
cc0-1.0
| 9,662
|
jsonp({"cep":"67013886","logradouro":"Rua Jarbas Passarinho","bairro":"Atalaia","cidade":"Ananindeua","uf":"PA","estado":"Par\u00e1"});
|
lfreneda/cepdb
|
api/v1/67013886.jsonp.js
|
JavaScript
|
cc0-1.0
| 136
|
jsonp({"cep":"14803665","logradouro":"Avenida Affonso Celso Alves","bairro":"Portal das Laranjeiras","cidade":"Araraquara","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/14803665.jsonp.js
|
JavaScript
|
cc0-1.0
| 162
|
jsonp({"cep":"17021350","logradouro":"Rua Joaquim Felippe de Mello","bairro":"Jardim Godoy","cidade":"Bauru","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/17021350.jsonp.js
|
JavaScript
|
cc0-1.0
| 148
|
jsonp({"cep":"86081080","logradouro":"Rua Gabriel Cestari","bairro":"Conjunto Parigot de Souza 3","cidade":"Londrina","uf":"PR","estado":"Paran\u00e1"});
|
lfreneda/cepdb
|
api/v1/86081080.jsonp.js
|
JavaScript
|
cc0-1.0
| 154
|
jsonp({"cep":"22753190","logradouro":"Rua Altevir Soares","bairro":"Itanhang\u00e1","cidade":"Rio de Janeiro","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/22753190.jsonp.js
|
JavaScript
|
cc0-1.0
| 149
|
jsonp({"cep":"26540001","logradouro":"Rua Antonio Pereira de Carvalho","bairro":"Centro","cidade":"Nil\u00f3polis","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/26540001.jsonp.js
|
JavaScript
|
cc0-1.0
| 154
|
jsonp({"cep":"14403277","logradouro":"Rua dos Jasmins","bairro":"Jardim Fl\u00f3rida","cidade":"Franca","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/14403277.jsonp.js
|
JavaScript
|
cc0-1.0
| 143
|
jsonp({"cep":"08695730","logradouro":"Rua Reinald Leal","bairro":"Jardim S\u00e3o Bernardino","cidade":"Suzano","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/08695730.jsonp.js
|
JavaScript
|
cc0-1.0
| 151
|
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<title>105年第十四任總統副總統及第九屆立法委員選舉</title>
<link href="../css/style.css" rel="stylesheet" type="text/css">
<link href="../css/style2.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="../js/ftiens4.js"></script>
<script type="text/javascript" src="../js/ua.js"></script>
<script type="text/javascript" src="../js/func.js"></script>
<script type="text/javascript" src="../js/treeP1.js"></script>
<script type="text/javascript" src="../js/refresh.js"></script>
</head>
<body id="main-body">
<div id="main-header">
<div id="main-top">
<a class="main-top-logo" href="#">中央選舉委員會</a>
<ul class="main-top-list">
<li class="main-top-item"><a class="main-top-link main-top-link-home" href="../index.html">回首頁</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-cec" href="http://2016.cec.gov.tw">中選會網站</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-english" href="../../en/index.html">English</a></li>
</ul>
</div>
</div>
<div id="main-wrap">
<div id="main-banner">
<div class="slideshow">
<img src="../img/main_bg_1.jpg" width="1024" height="300" alt="background" title="background">
</div>
<div class="main-deco"></div>
<div class="main-title"></div>
<a class="main-pvpe main-pvpe-current" href="../IDX/indexP1.html">總統副總統選舉</a>
<a class="main-le" href="../IDX/indexT.html">立法委員選舉</a>
</div>
<div id="main-container">
<div id="main-content">
<table width="1024" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="180" valign="top">
<div id="divMenu">
<table border="0">
<tr>
<td><a style="text-decoration:none;color:silver" href="http://www.treemenu.net/" target=_blank></a></td>
</tr>
</table>
<span class="TreeviewSpanArea">
<script>initializeDocument()</script>
<noscript>請開啟Javascript功能</noscript>
</span>
</div>
</td>
<td width="796" valign="top">
<div id="divContent">
<!-- 修改區塊 -->
<table width="100%" border="0" cellpadding="0" cellspacing="4">
<tr>
<td><img src="../images/search.png" alt="候選人得票數" title="候選人得票數"> <b>總統副總統選舉 候選人在 高雄市 茄萣區得票數 </b></td>
</tr>
<tr valign="bottom">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td class="fontNumber"> <img src="../images/nav.gif" alt="候選組數" title="候選組數"> <img src="../images/nav.gif" alt="候選組數" title="候選組數"> 候選組數:3 <img src="../images/nav.gif" alt="應選組數" title="應選組數"> <img src="../images/nav.gif" alt="應選組數" title="應選組數"> 應選組數:1</td>
<td align="right">
<select name="selector_order" class="selectC" tabindex="1" id="orderBy" onChange="changeOrder();">
<option value="n">依號次排序</option>
<option value="s">依得票排序</option>
</select>
</td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="6" cellspacing="1" class="tableT">
<tr class="trHeaderT">
<td>註記</td>
<td>號次</td>
<td><table><tr><td>總統</td><td rowspan=2> 候選人姓名</td></tr><td>副總統</td></table></td>
<td>性別</td>
<td>得票數</td>
<td>得票率%</td>
<td>登記方式</td>
</tr>
<tr class="trT">
<td> </td>
<td>1</td>
<td>朱立倫<br>王如玄</td>
<td>男<br>女</td>
<td class="tdAlignRight">3,018</td>
<td class="tdAlignRight">18.6989</td>
<td>中國國民黨 推薦</td>
</tr>
<tr class="trT">
<td> </td>
<td>2</td>
<td>蔡英文<br>陳建仁</td>
<td>女<br>男</td>
<td class="tdAlignRight">11,172</td>
<td class="tdAlignRight">69.2193</td>
<td>民主進步黨 推薦</td>
</tr>
<tr class="trT">
<td> </td>
<td>3</td>
<td>宋楚瑜<br>徐欣瑩</td>
<td>男<br>女</td>
<td class="tdAlignRight">1,950</td>
<td class="tdAlignRight">12.0818</td>
<td>親民黨 推薦</td>
</tr>
<tr class="trFooterT">
<td colspan="7" align="right">投開票所數 已送/應送: 20/20 </td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="10"></td>
<td valign="top" class="fontNote">
<table>
<tr>
<td>註記說明:</td>
<td align="center">◎</td>
<td>自然當選</td>
</tr>
<tr>
<td></td>
<td align="center">?</td>
<td>同票待抽籤</td>
</tr>
</table>
</td>
<td valign="top" class="fontTimer"><img src="../images/clock2.png" alt="Sat, 16 Jan 2016 22:00:12 +0800" title="Sat, 16 Jan 2016 22:00:12 +0800"> 資料更新時間: 01/16 22:00:07 <br>(網頁每3分鐘自動更新一次)</td>
</tr>
<tr>
<td colspan="3" class="fontNote"></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- 修改區塊 -->
</div>
</td>
</tr>
</table>
</div>
<div class="main-footer"></div>
<div id="divFooter" align=center>[中央選舉委員會] </div>
<!--main-content-->
</div><!--main-container-->
</div><!--END main-wrap-->
<script>setOrder();</script>
<script>setMenuScrollPosY();</script>
</body>
</html>
|
gugod/vote-watch-2016
|
data/president/n600001500000000/20160116140110/page.html
|
HTML
|
cc0-1.0
| 6,578
|
jsonp({"cep":"49038772","logradouro":"Rua Expedicion\u00e1rio Lourival Silva","bairro":"Zona de Expans\u00e3o (Aruana)","cidade":"Aracaju","uf":"SE","estado":"Sergipe"});
|
lfreneda/cepdb
|
api/v1/49038772.jsonp.js
|
JavaScript
|
cc0-1.0
| 171
|
jsonp({"cep":"25010500","logradouro":"Rua Carlos Sampaio","bairro":"Engenho do Porto","cidade":"Duque de Caxias","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/25010500.jsonp.js
|
JavaScript
|
cc0-1.0
| 152
|
jsonp({"cep":"40718194","logradouro":"Rua Juiz de Fora","bairro":"Plataforma","cidade":"Salvador","uf":"BA","estado":"Bahia"});
|
lfreneda/cepdb
|
api/v1/40718194.jsonp.js
|
JavaScript
|
cc0-1.0
| 128
|
jsonp({"cep":"86710009","logradouro":"Rua Filipe","bairro":"Residencial Arauc\u00e1rias","cidade":"Arapongas","uf":"PR","estado":"Paran\u00e1"});
|
lfreneda/cepdb
|
api/v1/86710009.jsonp.js
|
JavaScript
|
cc0-1.0
| 146
|
jsonp({"cep":"93351090","logradouro":"Rua Joventino Joaquim da Rosa","bairro":"Rosel\u00e2ndia","cidade":"Novo Hamburgo","uf":"RS","estado":"Rio Grande do Sul"});
|
lfreneda/cepdb
|
api/v1/93351090.jsonp.js
|
JavaScript
|
cc0-1.0
| 163
|
jsonp({"cep":"20930050","logradouro":"Rua C\u00e9lio Nascimento","bairro":"Benfica","cidade":"Rio de Janeiro","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/20930050.jsonp.js
|
JavaScript
|
cc0-1.0
| 149
|
jsonp({"cep":"24457275","logradouro":"Rua Itumbiara","bairro":"Trindade","cidade":"S\u00e3o Gon\u00e7alo","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/24457275.jsonp.js
|
JavaScript
|
cc0-1.0
| 145
|
jsonp({"cep":"75133892","logradouro":"Rua S\u00e3o Jos\u00e9","bairro":"Jardim Esperan\u00e7a","cidade":"An\u00e1polis","uf":"GO","estado":"Goi\u00e1s"});
|
lfreneda/cepdb
|
api/v1/75133892.jsonp.js
|
JavaScript
|
cc0-1.0
| 155
|
jsonp({"cep":"23070460","logradouro":"Rua S\u00e3o Jacinto","bairro":"Campo Grande","cidade":"Rio de Janeiro","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/23070460.jsonp.js
|
JavaScript
|
cc0-1.0
| 149
|
<!--
Automatically generated HTML file from DocOnce source
(https://github.com/hplgit/doconce/)
-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/hplgit/doconce/" />
<meta name="description" content="Many-body perturbation theory">
<title>Many-body perturbation theory</title>
<!-- Bootstrap style: bootstrap -->
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
<!-- not necessary
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
-->
<style type="text/css">
/* Add scrollbar to dropdown menus in bootstrap navigation bar */
.dropdown-menu {
height: auto;
max-height: 400px;
overflow-x: hidden;
}
/* Adds an invisible element before each target to offset for the navigation
bar */
.anchor::before {
content:"";
display:block;
height:50px; /* fixed header height for style bootstrap */
margin:-50px 0 0; /* negative fixed header height */
}
</style>
</head>
<!-- tocinfo
{'highest level': 2,
'sections': [('Many-body perturbation theory', 2, None, '___sec0'),
('Many-body perturbation theory', 2, None, '___sec1'),
('Many-body perturbation theory', 2, None, '___sec2'),
('Many-body perturbation theory', 2, None, '___sec3'),
('Many-body perturbation theory', 2, None, '___sec4'),
('Many-body perturbation theory', 2, None, '___sec5'),
('Many-body perturbation theory', 2, None, '___sec6'),
('Many-body perturbation theory', 2, None, '___sec7'),
('Many-body perturbation theory', 2, None, '___sec8'),
('Many-body perturbation theory', 2, None, '___sec9'),
('Many-body perturbation theory', 2, None, '___sec10'),
('Many-body perturbation theory', 2, None, '___sec11'),
('Many-body perturbation theory', 2, None, '___sec12'),
('Many-body perturbation theory', 2, None, '___sec13'),
('Interpreting the correlation energy and the wave operator',
2,
None,
'___sec14'),
('Interpreting the correlation energy and the wave operator',
2,
None,
'___sec15'),
('Interpreting the correlation energy and the wave operator',
2,
None,
'___sec16'),
('Interpreting the correlation energy and the wave operator',
2,
None,
'___sec17'),
('Interpreting the correlation energy and the wave operator',
2,
None,
'___sec18'),
('Interpreting the correlation energy and the wave operator',
2,
None,
'___sec19')]}
end of tocinfo -->
<body>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
TeX: {
equationNumbers: { autoNumber: "none" },
extensions: ["AMSmath.js", "AMSsymbols.js", "autobold.js", "color.js"]
}
});
</script>
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<!-- Bootstrap navigation bar -->
<div class="navbar navbar-default navbar-fixed-top">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="mbpt-bs.html">Many-body perturbation theory</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Contents <b class="caret"></b></a>
<ul class="dropdown-menu">
<!-- navigation toc: --> <li><a href="._mbpt-bs001.html#___sec0" style="font-size: 80%;">Many-body perturbation theory</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs002.html#___sec1" style="font-size: 80%;">Many-body perturbation theory</a></li>
<!-- navigation toc: --> <li><a href="#___sec2" style="font-size: 80%;">Many-body perturbation theory</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs004.html#___sec3" style="font-size: 80%;">Many-body perturbation theory</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs005.html#___sec4" style="font-size: 80%;">Many-body perturbation theory</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs006.html#___sec5" style="font-size: 80%;">Many-body perturbation theory</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs007.html#___sec6" style="font-size: 80%;">Many-body perturbation theory</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs008.html#___sec7" style="font-size: 80%;">Many-body perturbation theory</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs009.html#___sec8" style="font-size: 80%;">Many-body perturbation theory</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs010.html#___sec9" style="font-size: 80%;">Many-body perturbation theory</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs011.html#___sec10" style="font-size: 80%;">Many-body perturbation theory</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs012.html#___sec11" style="font-size: 80%;">Many-body perturbation theory</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs013.html#___sec12" style="font-size: 80%;">Many-body perturbation theory</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs014.html#___sec13" style="font-size: 80%;">Many-body perturbation theory</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs015.html#___sec14" style="font-size: 80%;">Interpreting the correlation energy and the wave operator</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs016.html#___sec15" style="font-size: 80%;">Interpreting the correlation energy and the wave operator</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs017.html#___sec16" style="font-size: 80%;">Interpreting the correlation energy and the wave operator</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs018.html#___sec17" style="font-size: 80%;">Interpreting the correlation energy and the wave operator</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs019.html#___sec18" style="font-size: 80%;">Interpreting the correlation energy and the wave operator</a></li>
<!-- navigation toc: --> <li><a href="._mbpt-bs020.html#___sec19" style="font-size: 80%;">Interpreting the correlation energy and the wave operator</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div> <!-- end of navigation bar -->
<div class="container">
<p> </p><p> </p><p> </p> <!-- add vertical space -->
<a name="part0003"></a>
<!-- !split -->
<h2 id="___sec2" class="anchor">Many-body perturbation theory </h2>
This equation forms the starting point for all perturbative derivations. However,
as it stands it represents nothing but a mere formal rewriting of Schroedinger's equation and is not of much practical use. The exact wave function \( \vert \Psi_0\rangle \) is unknown. In order to obtain a perturbative expansion, we need to expand the exact wave function in terms of the interaction \( \hat{H}_I \).
<p>
Here we have assumed that our model space defined by the operator \( \hat{P} \) is one-dimensional, meaning that
$$
\hat{P}= \vert \Phi_0\rangle \langle \Phi_0\vert ,
$$
and
$$
\hat{Q}=\sum_{m=1}^{\infty}\vert \Phi_m\rangle \langle \Phi_m\vert .
$$
<p>
<p>
<!-- navigation buttons at the bottom of the page -->
<ul class="pagination">
<li><a href="._mbpt-bs002.html">«</a></li>
<li><a href="._mbpt-bs000.html">1</a></li>
<li><a href="._mbpt-bs001.html">2</a></li>
<li><a href="._mbpt-bs002.html">3</a></li>
<li class="active"><a href="._mbpt-bs003.html">4</a></li>
<li><a href="._mbpt-bs004.html">5</a></li>
<li><a href="._mbpt-bs005.html">6</a></li>
<li><a href="._mbpt-bs006.html">7</a></li>
<li><a href="._mbpt-bs007.html">8</a></li>
<li><a href="._mbpt-bs008.html">9</a></li>
<li><a href="._mbpt-bs009.html">10</a></li>
<li><a href="._mbpt-bs010.html">11</a></li>
<li><a href="._mbpt-bs011.html">12</a></li>
<li><a href="._mbpt-bs012.html">13</a></li>
<li><a href="">...</a></li>
<li><a href="._mbpt-bs020.html">21</a></li>
<li><a href="._mbpt-bs004.html">»</a></li>
</ul>
<!-- ------------------- end of main content --------------- -->
</div> <!-- end container -->
<!-- include javascript, jQuery *first* -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<!-- Bootstrap footer
<footer>
<a href="http://..."><img width="250" align=right src="http://..."></a>
</footer>
-->
<center style="font-size:80%">
<!-- copyright only on the titlepage -->
</center>
</body>
</html>
|
ManyBodyPhysics/AbInitioNuclearPhysicsSchool
|
doc/pub/mbpt/html/._mbpt-bs003.html
|
HTML
|
cc0-1.0
| 9,246
|
/**
* Title CountFactors
* URL https://codility.com/programmers/task/count_factors/
*
* Author Norman Gamage <norman.gamage@gmail.com>
* Version 2.0
* Last Update 2016 Jul 02
*/
function solution(N) {
var cnt = 0, i;
for (i = 1; i <= Math.sqrt(N); i++) {
if (N % i === 0) {
cnt += (i * i === N) ? 1 : 2;
}
}
return cnt;
}
|
norman-gamage/codility
|
Lesson 10 - Prime and composite numbers/CountFactors.js
|
JavaScript
|
cc0-1.0
| 391
|
""" Notices indicate how a regulation has changed since the last version. This
module contains code to compile a regulation from a notice's changes. """
from bisect import bisect
from collections import defaultdict
import copy
import itertools
import logging
from regparser.grammar.tokens import Verb
from regparser.tree.struct import Node, find
from regparser.tree.xml_parser import interpretations
from regparser.tree.xml_parser import tree_utils
from regparser.utils import roman_nums
def get_parent_label(node):
""" Given a node, get the label of it's parent. """
if node.node_type == Node.SUBPART:
return node.label[0]
elif node.node_type == Node.INTERP:
marker_position = node.label.index(Node.INTERP_MARK)
interpreting = node.label[:marker_position]
comment_pars = node.label[marker_position + 1:]
if comment_pars: # 111-3-a-Interp-4-i
return '-'.join(node.label[:-1])
elif len(interpreting) > 1: # 111-3-a-Interp
return '-'.join(interpreting[:-1] + [Node.INTERP_MARK])
else: # 111-Interp
return node.label[0]
else:
parent_label = node.label[:-1]
return '-'.join(parent_label)
def make_label_sortable(label, roman=False):
""" Make labels sortable, but converting them as appropriate.
Also, appendices have labels that look like 30(a), we make those
appropriately sortable. """
if label.isdigit():
return (int(label),)
if roman:
romans = list(itertools.islice(roman_nums(), 0, 50))
return (1 + romans.index(label),)
# segment the label piece into component parts
# e.g. 45Ai33b becomes (45, 'A', 'i', 33, 'b')
INT, UPPER, LOWER = 1, 2, 3
segments, segment, seg_type = [], "", None
for ch in label:
if ch.isdigit():
ch_type = INT
elif ch.isalpha() and ch == ch.upper():
ch_type = UPPER
elif ch.isalpha() and ch == ch.lower():
ch_type = LOWER
else:
# other character, e.g. parens, guarantee segmentation
ch_type = None
if ch_type != seg_type and segment: # new type of character
segments.append(segment)
segment = ""
seg_type = ch_type
if ch_type:
segment += ch
if segment: # ended with something other than a paren
segments.append(segment)
segments = [int(seg) if seg.isdigit() else seg for seg in segments]
return tuple(segments)
def make_root_sortable(label, node_type):
""" Child nodes of the root contain nodes of various types, these
need to be sorted correctly. This returns a tuple to help
sort these first level nodes. """
if node_type == Node.SUBPART or node_type == Node.EMPTYPART:
return (0, label[-1])
elif node_type == Node.APPENDIX:
return (1, label[-1])
elif node_type == Node.INTERP:
return (2,)
def replace_first_sentence(text, replacement):
""" Replace the first sentence in text with replacement. This makes
some incredibly simplifying assumptions - so buyer beware. """
no_periods_replacement = replacement.replace('.', '')
sentences = text.split('.', 1)
if len(sentences) > 1:
sentences[0] = no_periods_replacement
return '.'.join(sentences)
else:
return replacement
def overwrite_marker(origin, new_label):
""" The node passed in has a label, but we're going to give it a
new one (new_label). This is necessary during node moves. """
if origin.node_type == Node.REGTEXT:
marker_list = tree_utils.get_paragraph_markers(origin.text)
if len(marker_list) > 0:
marker = '(%s)' % marker_list[0]
new_marker = '(%s)' % new_label
origin.text = origin.text.replace(marker, new_marker, 1)
elif origin.node_type == Node.INTERP:
marker = interpretations.get_first_interp_marker(origin.text)
marker = marker + '.'
new_marker = new_label + '.'
origin.text = origin.text.replace(marker, new_marker, 1)
return origin
def is_reserved_node(node):
""" Return true if the node is reserved. """
reserved_title = node.title and '[Reserved]' in node.title
reserved_text = node.text and '[Reserved]' in node.text
return (reserved_title or reserved_text)
def is_interp_placeholder(node):
"""Interpretations may have nodes that exist purely to enforce
structure. Knowing if a node is such a placeholder makes it easier to
know if a POST should really just modify the existing placeholder."""
return (Node.INTERP_MARK in node.label
and not node.text and not node.title)
class RegulationTree(object):
""" This encapsulates a regulation tree, and methods to change that tree.
"""
def __init__(self, previous_tree):
self.tree = copy.deepcopy(previous_tree)
self._kept__by_parent = defaultdict(list)
def keep(self, labels):
"""The 'KEEP' verb tells us that a node should not be removed
(generally because it would had we dropped the children of its
parent). "Keeping" those nodes makes sure they do not disappear when
editing their parent"""
for label in labels:
node = self.find_node(label)
parent_label = get_parent_label(node)
self._kept__by_parent[parent_label].append(node)
def get_parent(self, node):
""" Get the parent of a node. Returns None if parent not found. """
parent_label_id = get_parent_label(node)
return find(self.tree, parent_label_id)
def add_to_root(self, node):
""" Add a child to the root of the tree. """
self.tree.children.append(node)
for c in self.tree.children:
c.sortable = make_root_sortable(c.label, c.node_type)
self.tree.children.sort(key=lambda x: x.sortable)
for c in self.tree.children:
del c.sortable
def add_child(self, children, node, order=None):
""" Add a child to the children, and sort appropriately. This is used
for non-root nodes. """
children = children + [node] # non-destructive
if order and set(order) == set(c.label_id() for c in children):
lookup = {}
for c in children:
lookup[c.label_id()] = c
return [lookup[label_id] for label_id in order]
else:
sort_order = []
for c in children:
if c.label[-1] == Node.INTERP_MARK:
sort_order.append((2,) + make_label_sortable(
c.label[-2], roman=(len(c.label) == 6)))
elif Node.INTERP_MARK in c.label:
marker_idx = c.label.index(Node.INTERP_MARK)
comment_pars = c.label[marker_idx + 1:]
sort_order.append((1,) + make_label_sortable(
comment_pars[-1], roman=(len(comment_pars) == 2)))
elif c.node_type == Node.APPENDIX:
sort_order.append(make_label_sortable(c.label[-1], False))
else:
sort_order.append(make_label_sortable(
c.label[-1], roman=(len(c.label) == 5)))
new_el_sort = sort_order[-1]
sort_order = sort_order[:-1]
# Use bisect so the whole list isn't resorted (the original list
# may not be strictly sorted)
insert_idx = bisect(sort_order, new_el_sort)
return children[:insert_idx] + [node] + children[insert_idx:-1]
def delete_from_parent(self, node):
""" Delete node from it's parent, effectively removing it from the
tree. """
parent = self.get_parent(node)
other_children = [c for c in parent.children if c.label != node.label]
parent.children = other_children
def delete(self, label_id):
""" Delete the node with label_id from the tree. """
node = find(self.tree, label_id)
if node is None:
logging.warning("Attempting to delete %s failed", label_id)
else:
self.delete_from_parent(node)
def reserve(self, label_id, node):
""" Reserve either an existing node (by replacing it) or
reserve by adding a new node. When a node is reserved, it's
represented in the FR XML. We simply use that representation here
instead of doing something else. """
existing_node = find(self.tree, label_id)
if existing_node is None:
self.add_node(node)
else:
self.replace_node_and_subtree(node)
def move(self, origin, destination):
""" Move a node from one part in the tree to another. """
origin = find(self.tree, origin)
self.delete_from_parent(origin)
origin = overwrite_marker(origin, destination[-1])
origin.label = destination
self.add_node(origin)
def get_section_parent(self, node):
""" If we're trying to get the parent of an existing section, it
might be part of a subpart. So, let's find the correct subpart. """
subpart = self.get_subpart_for_node(node.label_id())
if subpart is not None:
return subpart
else:
return self.get_parent(node)
def replace_node_and_subtree(self, node):
""" Replace an existing node in the tree with node. """
if len(node.label) == 2 and node.node_type == Node.REGTEXT:
parent = self.get_section_parent(node)
else:
parent = self.get_parent(node)
prev_idx = [idx for idx, c in enumerate(parent.children)
if c.label == node.label]
if prev_idx:
# replace existing element in place
prev_idx = prev_idx[0]
parent.children = (parent.children[:prev_idx] + [node] +
parent.children[prev_idx + 1:])
else:
# actually adding a new element
parent.children = self.add_child(parent.children, node,
getattr(parent, 'child_labels',
[]))
# Finally, we see if this node is the parent of any 'kept' children.
# If so, add them back
label_id = node.label_id()
if label_id in self._kept__by_parent:
for kept in self._kept__by_parent[label_id]:
node.children = self.add_child(node.children, kept,
getattr(node, 'child_labels',
[]))
def create_empty_node(self, node_label):
""" In rare cases, we need to flush out the tree by adding
an empty node. Returns the created node"""
node_label = node_label.split('-')
if Node.INTERP_MARK in node_label:
node_type = Node.INTERP
elif len(node_label) > 1 and not node_label[1].isdigit():
node_type = Node.APPENDIX
else:
node_type = Node.REGTEXT
node = Node(label=node_label, node_type=node_type)
parent = self.get_parent(node)
if not parent:
parent = self.create_empty_node(get_parent_label(node))
parent.children = self.add_child(parent.children, node,
getattr(parent, 'child_labels', []))
return node
def contains(self, label):
"""Is this label already in the tree? label can be a list or a
string"""
return bool(self.find_node(label))
def find_node(self, label):
if isinstance(label, list):
label = '-'.join(label)
return find(self.tree, label)
def add_node(self, node):
""" Add an entirely new node to the regulation tree. """
existing = find(self.tree, node.label_id())
if existing and is_reserved_node(existing):
logging.warning('Replacing reserved node: %s' % node.label_id())
return self.replace_node_and_subtree(node)
elif existing and is_interp_placeholder(existing):
existing.title = node.title
existing.text = node.text
if hasattr(node, 'tagged_text'):
existing.tagged_text = node.tagged_text
# Unfortunately, the same nodes (particularly headers) might be
# added by multiple notices...
elif (existing and existing.text == node.text
and existing.title == node.title
and getattr(existing, 'tagged_text', '') == getattr(
node, 'tagged_text', '')):
pass
else:
if existing:
logging.warning(
'Adding a node that already exists: %s' % node.label_id())
print '%s %s' % (existing.text, node.label)
print '----'
if ((node.node_type == Node.APPENDIX and len(node.label) == 2)
or node.node_type == Node.SUBPART):
return self.add_to_root(node)
else:
parent = self.get_parent(node)
if parent is None:
# This is a corner case, where we're trying to add a child
# to a parent that should exist.
logging.warning('No existing parent for: %s' %
node.label_id())
parent = self.create_empty_node(get_parent_label(node))
# Fix the case where the node with label "<PART>-Subpart" is
# the correct parent.
if (parent.children
and parent.children[0].node_type == Node.EMPTYPART):
parent = parent.children[0]
parent.children = self.add_child(
parent.children, node, getattr(parent, 'child_labels',
[]))
def add_section(self, node, subpart_label):
""" Add a new section to a subpart. """
subpart = find(self.tree, '-'.join(subpart_label))
subpart.children = self.add_child(subpart.children, node)
def replace_node_text(self, label, change):
""" Replace just a node's text. """
node = find(self.tree, label)
node.text = change['node']['text']
def replace_node_title(self, label, change):
""" Replace just a node's title. """
node = find(self.tree, label)
node.title = change['node']['title']
def replace_node_heading(self, label, change):
""" A node's heading is it's keyterm. We handle this here, but not
well, I think. """
node = find(self.tree, label)
node.text = replace_first_sentence(node.text, change['node']['text'])
if hasattr(node, 'tagged_text') and 'tagged_text' in change['node']:
node.tagged_text = replace_first_sentence(
node.tagged_text, change['node']['tagged_text'])
def get_subparts(self):
""" Get all the subparts and empty parts in the tree. """
def subpart_type(c):
""" Return True if a subpart or an empty part. """
return c.node_type in (Node.EMPTYPART, Node.SUBPART)
return [c for c in self.tree.children if subpart_type(c)]
def create_new_subpart(self, subpart_label):
""" Create a whole new subpart. """
# XXX Subparts need titles. We'll need to pull this up from parsing.
subpart_node = Node('', [], subpart_label, None, Node.SUBPART)
self.add_to_root(subpart_node)
return subpart_node
def get_subpart_for_node(self, label_id):
""" Return the subpart a node resides in. Note that this can't be
determined by simply looking at a node's label. """
subparts = self.get_subparts()
subparts_with_label = [s for s in subparts
if find(s, label_id) is not None]
if len(subparts_with_label) > 0:
return subparts_with_label[0]
def move_to_subpart(self, label, subpart_label):
""" Move an existing node to another subpart. If the new subpart
doesn't exist, create it. """
destination = find(self.tree, '-'.join(subpart_label))
if destination is None:
destination = self.create_new_subpart(subpart_label)
subpart_with_node = self.get_subpart_for_node(label)
if destination and subpart_with_node:
node = find(subpart_with_node, label)
other_children = [c for c in subpart_with_node.children
if c.label_id() != label]
subpart_with_node.children = other_children
destination.children = self.add_child(destination.children, node)
if not subpart_with_node.children:
self.delete('-'.join(subpart_with_node.label))
def dict_to_node(node_dict):
""" Convert a dictionary representation of a node into a Node object if
it contains the minimum required fields. Otherwise, pass it through
unchanged. """
minimum_fields = set(('text', 'label', 'node_type'))
if minimum_fields.issubset(node_dict.keys()):
node = Node(
node_dict['text'], [], node_dict['label'],
node_dict.get('title', None), node_dict['node_type'])
if 'tagged_text' in node_dict:
node.tagged_text = node_dict['tagged_text']
if 'child_labels' in node_dict:
node.child_labels = node_dict['child_labels']
return node
else:
return node_dict
def sort_labels(labels):
""" Deal with higher up elements first. """
sorted_labels = sorted(labels, key=lambda x: len(x))
# The length of a Subpart label doesn't indicate it's level in the tree
subparts = [l for l in sorted_labels if 'Subpart' in l]
non_subparts = [l for l in sorted_labels if 'Subpart' not in l]
return subparts + non_subparts
def replace_node_field(reg, label, change):
""" Call one of the field appropriate methods if we're changing just
a field on a node. """
if change['action'] == 'PUT' and change['field'] == '[text]':
reg.replace_node_text(label, change)
elif change['action'] == 'PUT' and change['field'] == '[title]':
reg.replace_node_title(label, change)
elif change['action'] == 'PUT' and change['field'] == '[heading]':
reg.replace_node_heading(label, change)
def one_change(reg, label, change):
"""Notices are generally composed of many changes; this method handles a
single change to the tree."""
field_list = ['[text]', '[title]', '[heading]']
replace_subtree = 'field' not in change
if change['action'] == 'PUT' and replace_subtree:
node = dict_to_node(change['node'])
reg.replace_node_and_subtree(node)
elif change['action'] == 'PUT' and change['field'] in field_list:
replace_node_field(reg, label, change)
elif change['action'] == 'POST':
node = dict_to_node(change['node'])
if 'subpart' in change and len(node.label) == 2:
reg.add_section(node, change['subpart'])
else:
reg.add_node(node)
elif change['action'] == 'DESIGNATE':
if 'Subpart' in change['destination']:
reg.move_to_subpart(label, change['destination'])
elif change['action'] == 'MOVE':
reg.move(label, change['destination'])
elif change['action'] == 'DELETE':
reg.delete(label)
elif change['action'] == 'RESERVE':
node = dict_to_node(change['node'])
reg.reserve(label, node)
else:
print "%s: %s" % (change['action'], label)
def _needs_delay(reg, change):
"""Determine whether we should delay processing this change. This will
be used in a second pass when compiling the reg"""
action = change['action']
if action == 'MOVE':
return reg.contains(change['destination'])
if action == 'POST':
existing = reg.find_node(change['node']['label'])
return existing and not is_reserved_node(existing)
return False
def compile_regulation(previous_tree, notice_changes):
""" Given a last full regulation tree, and the set of changes from the
next final notice, construct the next full regulation tree. """
reg = RegulationTree(previous_tree)
labels = sort_labels(notice_changes.keys())
reg_part = previous_tree.label[0]
labels = filter(lambda l: l.split('-')[0] == reg_part, labels)
next_pass = [(label, change)
for label in labels
for change in notice_changes[label]]
pass_len = len(next_pass) + 1
reg.keep(l for l, change in next_pass if change['action'] == Verb.KEEP)
next_pass = [pair for pair in next_pass if pair[1]['action'] != Verb.KEEP]
# Monotonically decreasing length - guarantees we'll end
while pass_len > len(next_pass):
pass_len = len(next_pass)
current_pass, next_pass = next_pass, []
for label, change in current_pass:
if _needs_delay(reg, change):
next_pass.append((label, change))
else:
one_change(reg, label, change)
# Force any remaining changes -- generally means something went wrong
for label, change in next_pass:
logging.warning('Conflicting Change: %s:%s', label, change['action'])
one_change(reg, label, change)
return reg.tree
|
EricSchles/regulations-parser
|
regparser/notice/compiler.py
|
Python
|
cc0-1.0
| 21,565
|
jsonp({"cep":"13212463","logradouro":"Avenida Eunice Cavalcante de Souza Queiroz","bairro":"Parque Residencial Jundia\u00ed","cidade":"Jundia\u00ed","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/13212463.jsonp.js
|
JavaScript
|
cc0-1.0
| 188
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Delimited Pattern Matching</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="R.css" />
</head><body>
<table width="100%" summary="page for delimMatch {tools}"><tr><td>delimMatch {tools}</td><td style="text-align: right;">R Documentation</td></tr></table>
<h2>Delimited Pattern Matching</h2>
<h3>Description</h3>
<p>Match delimited substrings in a character vector, with proper nesting.
</p>
<h3>Usage</h3>
<pre>
delimMatch(x, delim = c("{", "}"), syntax = "Rd")
</pre>
<h3>Arguments</h3>
<table summary="R argblock">
<tr valign="top"><td><code>x</code></td>
<td>
<p>a character vector.</p>
</td></tr>
<tr valign="top"><td><code>delim</code></td>
<td>
<p>a character vector of length 2 giving the start and end
delimiters. Future versions might allow for arbitrary regular
expressions.</p>
</td></tr>
<tr valign="top"><td><code>syntax</code></td>
<td>
<p>currently, always the string <code>"Rd"</code> indicating Rd
syntax (i.e., <span class="samp">%</span> starts a comment extending till the end of
the line, and <span class="samp">\</span> escapes). Future versions might know about
other syntax, perhaps via ‘syntax tables’ allowing to
flexibly specify comment, escape, and quote characters.</p>
</td></tr>
</table>
<h3>Value</h3>
<p>An integer vector of the same length as <code>x</code> giving the starting
position (in characters) of the first match, or <i>-1</i> if there is
none, with attribute <code>"match.length"</code> giving the length (in
characters) of the matched text (or <i>-1</i> for no match).
</p>
<h3>See Also</h3>
<p><code><a href="../../base/html/grep.html">regexpr</a></code> for ‘simple’ pattern matching.
</p>
<h3>Examples</h3>
<pre>
x <- c("\\value{foo}", "function(bar)")
delimMatch(x)
delimMatch(x, c("(", ")"))
</pre>
<hr /><div style="text-align: center;">[Package <em>tools</em> version 3.6.1 <a href="00Index.html">Index</a>]</div>
</body></html>
|
ColumbusCollaboratory/electron-quick-start
|
R-Portable-Win/library/tools/html/delimMatch.html
|
HTML
|
cc0-1.0
| 2,242
|
jsonp({"cep":"24420275","logradouro":"Rua Antenor Nunes Neto","bairro":"Lindo Parque","cidade":"S\u00e3o Gon\u00e7alo","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/24420275.jsonp.js
|
JavaScript
|
cc0-1.0
| 158
|
jsonp({"cep":"74983500","logradouro":"Rua Ant\u00f4nio L. D. de Oliveira","bairro":"Parque Karaj\u00e1","cidade":"Aparecida de Goi\u00e2nia","uf":"GO","estado":"Goi\u00e1s"});
|
lfreneda/cepdb
|
api/v1/74983500.jsonp.js
|
JavaScript
|
cc0-1.0
| 176
|
jsonp({"cep":"44024212","logradouro":"Rua Jacobina","bairro":"Jardim Cruzeiro","cidade":"Feira de Santana","uf":"BA","estado":"Bahia"});
|
lfreneda/cepdb
|
api/v1/44024212.jsonp.js
|
JavaScript
|
cc0-1.0
| 137
|
jsonp({"cep":"13178655","logradouro":"Rua Seis","bairro":"Jardim Am\u00e9lia","cidade":"Sumar\u00e9","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/13178655.jsonp.js
|
JavaScript
|
cc0-1.0
| 140
|
jsonp({"cep":"38307008","logradouro":"Rua Coronel Concei\u00e7\u00e3o Barbosa","bairro":"Central","cidade":"Ituiutaba","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/38307008.jsonp.js
|
JavaScript
|
cc0-1.0
| 156
|
jsonp({"cep":"87075500","logradouro":"Rua Pioneiro Jos\u00e9 Lopes de Covos","bairro":"Conjunto Habitacional Jo\u00e3o de Barro Tha\u00eds","cidade":"Maring\u00e1","uf":"PR","estado":"Paran\u00e1"});
|
lfreneda/cepdb
|
api/v1/87075500.jsonp.js
|
JavaScript
|
cc0-1.0
| 200
|
jsonp({"cep":"13218005","logradouro":"Rua Carlos Gomes","bairro":"Ponte de S\u00e3o Jo\u00e3o","cidade":"Jundia\u00ed","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/13218005.jsonp.js
|
JavaScript
|
cc0-1.0
| 158
|
jsonp({"cep":"76960280","logradouro":"Rua Raul Pomp\u00e9ia","bairro":"Sociedade Bela Vista","cidade":"Cacoal","uf":"RO","estado":"Rond\u00f4nia"});
|
lfreneda/cepdb
|
api/v1/76960280.jsonp.js
|
JavaScript
|
cc0-1.0
| 149
|
jsonp({"cep":"29172612","logradouro":"Rua R","bairro":"Castel\u00e2ndia","cidade":"Serra","uf":"ES","estado":"Esp\u00edrito Santo"});
|
lfreneda/cepdb
|
api/v1/29172612.jsonp.js
|
JavaScript
|
cc0-1.0
| 134
|
jsonp({"cep":"12906670","logradouro":"Rua Tropical","bairro":"Cruzeiro","cidade":"Bragan\u00e7a Paulista","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/12906670.jsonp.js
|
JavaScript
|
cc0-1.0
| 145
|
jsonp({"cep":"58745000","cidade":"Imaculada","uf":"PB","estado":"Para\u00edba"});
|
lfreneda/cepdb
|
api/v1/58745000.jsonp.js
|
JavaScript
|
cc0-1.0
| 82
|
jsonp({"cep":"69028090","logradouro":"Rua Holanda","bairro":"Flores","cidade":"Manaus","uf":"AM","estado":"Amazonas"});
|
lfreneda/cepdb
|
api/v1/69028090.jsonp.js
|
JavaScript
|
cc0-1.0
| 120
|
jsonp({"cep":"91060411","logradouro":"Beco Dois","bairro":"Sarandi","cidade":"Porto Alegre","uf":"RS","estado":"Rio Grande do Sul"});
|
lfreneda/cepdb
|
api/v1/91060411.jsonp.js
|
JavaScript
|
cc0-1.0
| 134
|
jsonp({"cep":"88351557","logradouro":"Rua Wally Von Buettner Erbe","bairro":"S\u00e3o Luiz","cidade":"Brusque","uf":"SC","estado":"Santa Catarina"});
|
lfreneda/cepdb
|
api/v1/88351557.jsonp.js
|
JavaScript
|
cc0-1.0
| 150
|
jsonp({"cep":"09290250","logradouro":"Rua Sapucaia","bairro":"Parque Jo\u00e3o Ramalho","cidade":"Santo Andr\u00e9","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/09290250.jsonp.js
|
JavaScript
|
cc0-1.0
| 155
|
jsonp({"cep":"61626370","logradouro":"Rua S\u00e3o Jos\u00e9","bairro":"Pacheco","cidade":"Caucaia","uf":"CE","estado":"Cear\u00e1"});
|
lfreneda/cepdb
|
api/v1/61626370.jsonp.js
|
JavaScript
|
cc0-1.0
| 135
|
Located at: [https://pro.europeana.eu/page/the-data-exchange-agreement](https://pro.europeana.eu/page/the-data-exchange-agreement)
# Europeana Data Exchange Agreement
## Parties:
### Europeana Foundation
Address:
Phone:
URL:
Name of authorised person:
Title/role in organisation:
Work phone:
Work email:
**Hereafter named: ‘Europeana’**
And
### Name of organisation:
Address:
Phone:
Email:
URL:
Name of authorised person:
Title/role in organisation:
Work phone:
Work email:
**Hereafter named: ‘Data Partner’**
**Whereas**
1. Europeana has the objective to provide access to Europe’s cultural and scientific heritage;
2. Europeana has, for this purpose, undertaken the task of ingesting, indexing, enriching and making available descriptive Metadata (hereafter called Metadata), Thumbnails and Digital Objects that are part of that heritage,
3. Europeana thereby intends to benefit both the holders of these Digital Objects and the public at large;
4. For this purpose Europeana maintains a database that includes Metadata and Thumbnails;
5. The Data Partner has and/or can create Metadata relating to Content that are appropriate to form part of this database;
6. The Data Partner is willing to make (a part of) these Metadata available for this database, under the conditions of this agreement;
7. In some domains (such as museums) it can be difficult to differentiate clearly between Content and Metadata, and as a result whatever data is given to Europeana is called, for purposes of this agreement, Metadata; and
8. Europeana wishes to make all Metadata in its database available for reuse to all its Data Partners and the public at large.
**The Parties have agreed to the following:**
## Article 1 Definitions
* **CC0 1.0 Universal Public Domain Dedication:** The Creative Commons Universal Public Domain Dedication as published at: [http://creativecommons.org/publicdomain/zero/1.0/](http://creativecommons.org/publicdomain/zero/1.0/).
* **Content:** a physical or Digital Object that is part of Europe’s cultural and/or scientific heritage, typically held by the Data Partner or by a data provider of the Data Partner.
* **Digital Object:** A digital representation of an object that is part of Europe's cultural and/or scientific heritage. The Digital Object can also be the original object when born digital.
* **Effective Date:** The date on which this agreement commences, in accordance with article 5, paragraph 1.
* **Europeana.eu:** The Europeana website, its data and its machine interfaces, all without necessarily being disclosed under URL europeana.eu.
* **Europeana Data Use Guidelines:** Non-binding guidelines for users of data published by Europeana, on the Effective Date made available at [http://www.europeana.eu/portal/data-usage-guide.html](http://www.europeana.eu/portal/data-usage-guide.html).
* **Europeana Network Association:** The association incorporated under the same name made up of the members of the Europeana Network.
* **Intellectual Property Rights:** Intellectual property rights including, but not limited to copyrights, related (or neighbouring) rights and database rights.
* **Metadata:** textual information (including hyperlinks) that may serve to identify, discover, interpret and/or manage Content.
* **Metadata Specifications:** The most recent version of the Metadata Specifications published by Europeana and available at [http://europeana.eu/schemas/](http://europeana.eu/schemas/) on the Effective Date.
* **Thumbnail:** A visual representation of Content, in the form of an image.
* **Public Domain:** Content, Metadata or other subject matter not protected by Intellectual Property Rights and/or subject to a waiver of Intellectual Property Rights.
* **Third Party:** Any natural or legal person who is not party to this Agreement.
* **URI:** Uniform Resource Identifier, URLs (Uniform Resource Locators) are URIs.
## Article 2 Provision of Metadata and Thumbnails
1. Notwithstanding the minimum requirements of paragraphs 2 and 3 of this article, it is in the discretion of the Data Partner to decide which Metadata and Thumbnails it provides to Europeana, including the right to submit only Metadata and Thumbnails with regard to a part of the Content held by it or its data providers and the right to submit only a part of the Metadata and Thumbnails it has or its data providers have with regard to particular Content.
2. The Data Partner shall submit Metadata in accordance with the Metadata Specifications.
3. The Data Partner must make best efforts to provide Europeana with correct Metadata on the Intellectual Property Rights to the Content, including the identification of Content that is Public Domain as being Public Domain.
4. Europeana shall ensure that future versions of the Metadata Specifications are compatible with the Metadata Specifications in place on the Effective Date.
5. Europeana shall collaborate with the Data Partner within thirty (30) days upon the latter’s request, for the correction, update and removal of Metadata provided by the Data Partner.
## Article 3 Use of Metadata
1. Under the condition that the requirements of paragraphs 2 and 3 of article 2 are met, Europeana shall include the Metadata provided by the Data Partner in the database held by Europeana and shall publish these Metadata as a part of this database.
2. Europeana shall publish all Metadata, including the Metadata provided by the Data Partner prior to the Effective Date, under the terms of the CC0 1.0 Universal Public Domain Dedication and is hereby authorised by the Data Partner to do so. The Data Partner recognises that it hereby waives – to the greatest extent permitted by, but not in contravention of, applicable law – all Intellectual Property Rights in the Metadata it has provided and will provide to Europeana. If – according to the applicable law – such waivers are not legally binding in particular territories the 'Public License Fallback' in section 3 of the CC0 1.0 Universal Public Domain Dedication will apply, and the Metadata provided by the Data Partner is licensed non-exclusively, unconditionally, free-of-charge for all types of use and for all territories to the public.
3. In as far as the Data Partner has provided or will provide Europeana with Metadata that it has aggregated from Third Parties or that otherwise originate from Third Parties, the Data Partner shall ensure that these Third Parties have authorised the Data Partner to authorise Europeana in accordance with paragraph 2 of this article.
4. When Europeana publishes Metadata that can be (in whole or in part) attributed to the Data Partner, Europeana is obliged to give attribution to the Data Partner and to the party or parties referred to by the Data Partner through the ``edm:dataProvider`` field (or its equivalent in a later version) of the Metadata Specification.
5. In the event that Europeana publishes a translation or transcription based on Metadata provided by the Data Partner, Europeana shall identify the translation or transcription as such.
## Article 4 Use of Thumbnails
1. Notwithstanding paragraphs 2 and 3 of this article, Europeana is entitled to allow use of the Thumbnails by visitors of Europeana.eu and Third Parties in accordance with terms specified by the Data Partner in the ``edm:rights`` field (or its equivalent in a later version) of the Metadata Specifications.
2. Europeana is entitled to store and publish on Europeana.eu all Thumbnails provided by the Data Partner, though only in combination with the Metadata that pertain to the same Content.
3. In as far as the Data Partner is the proprietor of Intellectual Property Rights to the Thumbnails it provides to Europeana, the Data Partner hereby grants Europeana a licence to use these rights in accordance with this article, without affecting any moral rights that it may have in these Thumbnails.
4. In as far as the Data Partner has provided or will provide Europeana with Thumbnails that it has aggregated from Third Parties or that otherwise originate from Third Parties, the Data Partner ensures that these Third Parties have authorised the Data Partner to enable Europeana to perform paragraphs 1 and 2 of this article.
## Article 5 Use of Digital Objects
1. If the Metadata provided to Europeana contains direct links to the associated Digital Objects, Europeana will provide visitors of Europeana.eu the ability to view such Digital Objects without leaving Europeana.eu.
2. Other than in situations as described in paragraph 3 of this article, Europeana will not store copies of the Digital Objects.
3. Europeana is entitled to use Digital Objects referenced in the Metadata provided by the Data Partner in accordance with the conditions established by the rights statement contained in the Metadata associated with the Digital Objects.
## Article 6 Liability and Notice and Take Down
1. The Data Partner must make best efforts to ensure that performance by Europeana of articles 3 and 4 does not constitute an unlawful act towards a Third Party, including but not limited to:
1. violation of Intellectual Property Rights of a Third Party;
2. an infringement of personality, privacy, publicity or other rights; or
3. an infringement of public order or morality (hate speech, obscenity, etc.).
2. In the event that performance by Europeana of articles 3 and 4 constitutes an unlawful act towards a Third Party, Europeana shall assist the Data Partner in limiting the negative consequences of such unlawful act, however without accepting any liability. In the performance of this obligation, Europeana shall use the notice and take down procedure of paragraph 3 of this article.
3. In the event that a Data Partner or a Third Party notifies Europeana that it is of the opinion that performance by Europeana of articles 3 and 4 constitutes an unlawful act towards any party, Europeana shall within five (5) working days decide whether it considers the notice (i) void of grounds, (ii) readily awardable or (iii) subject to debate, and Europeana shall perform the following:
1. In the event that Europeana considers the notice void of grounds, it shall inform the notifying party accordingly.
2. In the event that Europeana considers the notice readily awardable, it shall take all required measures to end the unlawful state. Europeana shall inform both the notifying party and the Data Partner of its decision and the measures undertaken.
3. In the event that Europeana considers the notice subject to debate, it shall inform the notifying party of this decision and allow the Data Partner to provide its views on the opinion within five (5) working days from the date that Europeana has forwarded the opinion to the Data Partner. Upon receipt of the views of the Data Partner, Europeana shall decide within five (5) working days whether measures are required to end an unlawful state. Europeana may decide to request the notifying party and, subsequently, the Data Partner, to provide further views.
4. Both parties shall hold the other party free and harmless of any action, recourse or claims made by any Third Party due to the non-observance of its obligations under this agreement.
## Article 7 Termination
1. Either party may terminate this agreement at any time on the material breach or repeated other breaches by the other party of any obligation on its part under this agreement, by serving a written notice on the other party identifying the nature of the breach. The termination will become effective thirty (30) days after receipt of the written notice, unless during the relevant period of thirty (30) days the defaulting party remedies the breach.
2. This agreement may be terminated by either party on written notice if the other party becomes insolvent or bankrupt, if the Data Partner's project ends or if the Data Partner withdraws or ceases operations. The termination will become effective thirty (30) days after receipt of the written notice.
3. Upon termination of this agreement, Europeana shall only be obliged to remove Metadata and Thumbnails provided by the Data Partner if the Data Partner requests Europeana to remove the Metadata and Thumbnails. Removal shall happen no later than 30 days after such a request has been received by Europeana.
4. Termination of this agreement does not affect any prior valid agreement made by either party with Third Parties.
5. This Agreement enters into force as of the date of signature of the parties.
6. The Agreement shall end on the 31 December following the Effective Date. The Agreement will be renewed automatically for a period of one year every 1 January, unless terminated by one of the parties, by written notice received by the other party ultimately on 30 September of that year.
## Article 8 Assignment
1. Conditional only to the appointment of a new operator of the current Europeana Foundation activities, the Data Partner hereby provides its explicit and unconditional consent to Europeana to assign all rights and obligations under this agreement to the newly appointed operator.
## Article 9 Miscellaneous
1. If any term of this agreement is held by a court of competent jurisdiction to be invalid or unenforceable, then this agreement, including all of the remaining terms, will remain in full force and effect as if such invalid or unenforceable term had never been included.
2. This agreement replaces all data provider and/or data aggregator agreements concluded by Europeana and the Data Partner before the Effective Date. All Metadata and Thumbnails provided to Europeana by the Data Partner under the conditions of such other agreement are, as of the Effective Date, considered to be provided under the conditions of the present agreement.
3. This agreement may be supplemented, amended or modified only by the mutual agreement of the parties. Any modification proposed by Europeana must be notified to the Data Partner in writing. The Data Partner shall be allowed at least two (2) months from the date of reception of the notice to accept the new agreement. If the modifications are not accepted by the Data Partner in writing within the allowed period, the modifications are presumed to have been rejected. If the proposed modifications are rejected by the Data Partner, Europeana has the right to terminate this agreement against 31 December of any year, with a one (1) month notice.
4. This agreement is drawn up in English, which language shall govern all documents, notices, meetings, arbitral proceedings and processes relative thereto.
5. This agreement shall be construed in accordance with and governed by the laws of The Netherlands.
6. All disputes arising out of or in connection with this agreement, which cannot be solved through consensus, shall be referred to the management board of the Europeana Network Association for mediation. The outcome of the mediation process will be binding on the parties.
|
Kennisland/EuropeanaLicensingFramework
|
dea.md
|
Markdown
|
cc0-1.0
| 14,952
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Projekt by luftschiffkollektiv</title>
<link rel="stylesheet" href="stylesheets/page.css">
<link rel="stylesheet" href="stylesheets/latex.css">
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<!--script src="javascripts/helpers.js"></script>
<script src="javascripts/make_movable.js"></script-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body class="A4pages latex">
<!--header>
<h1>Projekt</h1>
<p>Luftschiff-Projekt 2015</p>
<p class="view"><a href="https://github.com/luftschiffkollektiv/projekt">View the Project on GitHub <small>luftschiffkollektiv/projekt</small></a></p>
<ul>
<li><a href="https://github.com/luftschiffkollektiv/projekt/zipball/master">Download <strong>ZIP File</strong></a></li>
<li><a href="https://github.com/luftschiffkollektiv/projekt/tarball/master">Download <strong>TAR Ball</strong></a></li>
<li><a href="https://github.com/luftschiffkollektiv/projekt">View On <strong>GitHub</strong></a></li>
</ul>
</header-->
<div class="" style="z-index:43;position:fixed;top:0;right:0;width:100px;text-align:right;"><button id="ueberblick" onclick="zoom">↑ Kapitel</button><hr/>
<a class="button" id="de" style="background:rgb(180,160,10);" href="index.html">deutsch</a>
<a class="button" id="en" style="background:rgb(240,30,10);" href="en.html">english</a>
<a class="button" id="fr" style="background:rgb(60,0,180);" href="fr.html">francais</a></div>
<script>
var zoomedOut = false;
document.addEventListener("DOMContentLoaded", function(event) {
//nix
});
function scroll(target){
console.log("TARGET: "+target.className)
var scroller=setInterval(function(){target.tagName ? target.scrollIntoView() : null;},20);
setTimeout(function(){clearInterval(scroller)},1010)
}
document.getElementById("ueberblick").addEventListener("click", zoom);
function zoom(e){
if (zoomedOut) {
pagecontainer.className = pagecontainer.className.replace(' zoomed-out', '');
zoomedOut= false;
var pages = document.getElementsByClassName('page');
for (var i = 0; i<pages.length; i++) {
pages[i].removeEventListener("click", zoom);
pages[i].removeEventListener("click", scroll(e.currentTarget));
}
} else {
pagecontainer.className += ' zoomed-out';
zoomedOut = true;
var pages = document.getElementsByClassName('page');
for (var i = 0; i<pages.length; i++) {
pages[i].addEventListener("click", zoom);
pages[i].addEventListener("click", scroll);
}
scroll(pagecontainer);
}
}
</script>
<div id="pagecontainer">
<section id="Exposée">
<div alt="Luftschiff-Projekt" class="page newchapter"><div class="page-inner">
<h1>Exposée</h1>
</div></div>
<div alt="Luftschiff-Projekt" class="page" style="background-image:url('img/1.jpg');background-size: 100% 100%;"><div class="page-inner">
<small class="page-number">1</small>
</div></div>
<div alt="Luftschiff-Projekt" class="page" style="background-image:url('img/2.jpg');background-size: 100% 100%;"><div class="page-inner">
<p class="textbox movable" style="top: 50mm; left: 67mm;">
1917.
ADINE und BONI leben auf ihrem
Luftschiff über der Ostsee ihre
Utopie. Sie komponieren Musik
und drehen Filme über ihren
Helden, Prinz Kropotkin, der
zum Revolutionär geworden ist.
Fiebrig erwarten sie
einen Auftrag von ihrer
anarchistischen Zelle, um die
Weltrevolution anzuzetteln.
</p>
<small class="page-number">1/4</small>
</div></div>
<div alt="Luftschiff-Projekt" class="page" style="background-image:url('img/3.jpg');background-size: 100% 100%;"><div class="page-inner">
<p class="textbox movable" style="top: 41mm; left: 0mm;color:white;">
Im Sturm rettet Adine eine
Schiffbrüchige: CLÉO.
Cléo provoziert Adine, die ihrerseits
kontert, und es kommt zu einem
stürmischen Tanz der Drei.
Als Cléo schläft, finden Adine und
Boni in einem versteckten Kuvert
den Auftrag. Sie stürzen sich in die
Vorbereitung des für den Folgetag
angesetzten Coups. Dabei kommt es
zu einer Diskussion über Cléo. Boni
möchte sie im Luftschiff aufnehmen;
Adine will sie bald loswerden.</p>
<small class="page-number">2/4</small>
</div></div>
<div alt="Luftschiff-Projekt" class="page" style="background-image:url('img/4.jpg');background-size: 100% 100%;"><div class="page-inner">
<p class="textbox movable" style="top: 15mm; left: 74mm;">
Adine nähert sich Cléo an und verliert
dabei mehr und mehr die Kontrolle.
Im Spiel der beiden steigert Cléo
ihre Provokation, bis es zu einem
brutalen Kampf im Meer kommt. </p>
<small class="page-number">3/4</small>
</div></div>
<div alt="Luftschiff-Projekt" class="page" style="background-image:url('img/5.jpg');background-size: 100% 100%;"><div class="page-inner">
<p class="textbox movable" style="top: 20mm; left: -7mm;">
Auf der Landstraße werden
Adine und Boni von Cléo überholt.
Ein General, ihr Vater, empfängt
Cléo am Adelssitz, wo sich die
Noblesse Europas zum Ball
eingefunden hat.
Unter den Gästen erkennen
wir einen gewissen Prinzen:
Peter Kropotkin.</p>
<small class="page-number">4/4</small>
</div></div>
</section><section id="Finanzierung">
<div class="page newchapter"><div class="page-inner">
<h1>Finanzierung</h1>
</div></div>
<div class="page"><div class="page-inner">
<h1></h1>
</div></div>
</section><section id="Team">
<div class="page newchapter" ><div class="page-inner">
<h1>Team</h1>
</div></div>
<div class="page"><div class="page-inner">
<h1></h1>
</div></div>
</section>
</div>
<footer>
<p>Kontaktiere das <a href="https://github.com/luftschiffkollektiv">Luftschiffkollektiv</a>-Team via <b>luftschiffkollektiv@yandex.com</b></p>
</footer>
<script src="javascripts/scale.fix.js"></script>
</body>
</html>
|
luftschiffkollektiv/projekt
|
index.html
|
HTML
|
cc0-1.0
| 6,665
|
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<title>105年第十四任總統副總統及第九屆立法委員選舉</title>
<link href="../css/style.css" rel="stylesheet" type="text/css">
<link href="../css/style2.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="../js/ftiens4.js"></script>
<script type="text/javascript" src="../js/ua.js"></script>
<script type="text/javascript" src="../js/func.js"></script>
<script type="text/javascript" src="../js/treeP1.js"></script>
<script type="text/javascript" src="../js/refresh.js"></script>
</head>
<body id="main-body">
<div id="main-header">
<div id="main-top">
<a class="main-top-logo" href="#">中央選舉委員會</a>
<ul class="main-top-list">
<li class="main-top-item"><a class="main-top-link main-top-link-home" href="../index.html">回首頁</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-cec" href="http://2016.cec.gov.tw">中選會網站</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-english" href="../../en/index.html">English</a></li>
</ul>
</div>
</div>
<div id="main-wrap">
<div id="main-banner">
<div class="slideshow">
<img src="../img/main_bg_1.jpg" width="1024" height="300" alt="background" title="background">
</div>
<div class="main-deco"></div>
<div class="main-title"></div>
<a class="main-pvpe main-pvpe-current" href="../IDX/indexP1.html">總統副總統選舉</a>
<a class="main-le" href="../IDX/indexT.html">立法委員選舉</a>
</div>
<div id="main-container">
<div id="main-content">
<table width="1024" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="180" valign="top">
<div id="divMenu">
<table border="0">
<tr>
<td><a style="text-decoration:none;color:silver" href="http://www.treemenu.net/" target=_blank></a></td>
</tr>
</table>
<span class="TreeviewSpanArea">
<script>initializeDocument()</script>
<noscript>請開啟Javascript功能</noscript>
</span>
</div>
</td>
<td width="796" valign="top">
<div id="divContent">
<!-- 修改區塊 -->
<table width="100%" border="0" cellpadding="0" cellspacing="4">
<tr>
<td><img src="../images/search.png" alt="候選人得票數" title="候選人得票數"> <b>總統副總統選舉 候選人在 桃園市 得票數 </b></td>
</tr>
<tr valign="bottom">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td class="fontNumber"> <img src="../images/nav.gif" alt="候選組數" title="候選組數"> <img src="../images/nav.gif" alt="候選組數" title="候選組數"> 候選組數:3 <img src="../images/nav.gif" alt="應選組數" title="應選組數"> <img src="../images/nav.gif" alt="應選組數" title="應選組數"> 應選組數:1</td>
<td align="right">
<select name="selector_order" class="selectC" tabindex="1" id="orderBy" onChange="changeOrder();">
<option value="n">依號次排序</option>
<option value="s">依得票排序</option>
</select>
</td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="6" cellspacing="1" class="tableT">
<tr class="trHeaderT">
<td>註記</td>
<td>號次</td>
<td><table><tr><td>總統</td><td rowspan=2> 候選人姓名</td></tr><td>副總統</td></table></td>
<td>性別</td>
<td>得票數</td>
<td>得票率%</td>
<td>登記方式</td>
</tr>
<tr class="trT">
<td> </td>
<td>1</td>
<td>朱立倫<br>王如玄</td>
<td>男<br>女</td>
<td class="tdAlignRight">364,479</td>
<td class="tdAlignRight">34.3870</td>
<td>中國國民黨 推薦</td>
</tr>
<tr class="trT">
<td> </td>
<td>2</td>
<td>蔡英文<br>陳建仁</td>
<td>女<br>男</td>
<td class="tdAlignRight">540,957</td>
<td class="tdAlignRight">51.0369</td>
<td>民主進步黨 推薦</td>
</tr>
<tr class="trT">
<td> </td>
<td>3</td>
<td>宋楚瑜<br>徐欣瑩</td>
<td>男<br>女</td>
<td class="tdAlignRight">154,498</td>
<td class="tdAlignRight">14.5762</td>
<td>親民黨 推薦</td>
</tr>
<tr class="trFooterT">
<td colspan="7" align="right">投開票所數 已送/應送: 1077/1088 </td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="10"></td>
<td valign="top" class="fontNote">
<table>
<tr>
<td>註記說明:</td>
<td align="center">◎</td>
<td>自然當選</td>
</tr>
<tr>
<td></td>
<td align="center">?</td>
<td>同票待抽籤</td>
</tr>
</table>
</td>
<td valign="top" class="fontTimer"><img src="../images/clock2.png" alt="Sat, 16 Jan 2016 21:27:11 +0800" title="Sat, 16 Jan 2016 21:27:11 +0800"> 資料更新時間: 01/16 21:27:06 <br>(網頁每3分鐘自動更新一次)</td>
</tr>
<tr>
<td colspan="3" class="fontNote"></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- 修改區塊 -->
</div>
</td>
</tr>
</table>
</div>
<div class="main-footer"></div>
<div id="divFooter" align=center>[中央選舉委員會] </div>
<!--main-content-->
</div><!--main-container-->
</div><!--END main-wrap-->
<script>setOrder();</script>
<script>setMenuScrollPosY();</script>
</body>
</html>
|
gugod/vote-watch-2016
|
data/president/n300000000000000/20160116133015/page.html
|
HTML
|
cc0-1.0
| 6,578
|
jsonp({"cep":"13484045","logradouro":"Rua Capit\u00e3o Paulo Sim\u00f5es","bairro":"Vila Paulista","cidade":"Limeira","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/13484045.jsonp.js
|
JavaScript
|
cc0-1.0
| 157
|
jsonp({"cep":"29704392","logradouro":"Travessa Frederico Botan","bairro":"Hon\u00f3rio Fraga","cidade":"Colatina","uf":"ES","estado":"Esp\u00edrito Santo"});
|
lfreneda/cepdb
|
api/v1/29704392.jsonp.js
|
JavaScript
|
cc0-1.0
| 158
|
jsonp({"cep":"41815370","logradouro":"Rua S\u00edlvio Valente","bairro":"Itaigara","cidade":"Salvador","uf":"BA","estado":"Bahia"});
|
lfreneda/cepdb
|
api/v1/41815370.jsonp.js
|
JavaScript
|
cc0-1.0
| 133
|
jsonp({"cep":"35702042","logradouro":"Rua Patativa","bairro":"Itapo\u00e3 II","cidade":"Sete Lagoas","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/35702042.jsonp.js
|
JavaScript
|
cc0-1.0
| 138
|
jsonp({"cep":"78730760","logradouro":"Rua Joaquim Martins de Oliveira","bairro":"Jardim Residencial S\u00e3o Jos\u00e9","cidade":"Rondon\u00f3polis","uf":"MT","estado":"Mato Grosso"});
|
lfreneda/cepdb
|
api/v1/78730760.jsonp.js
|
JavaScript
|
cc0-1.0
| 185
|
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content=".">
<meta name="author" content="Amelia Chu">
<link rel="icon" href="../../../assets/favicon.ico">
<title>NYCAASC | API Flower Power: Understanding Personal Identity and the Connection to Privilege</title>
<!-- Bootstrap core CSS -->
<link href="../../../assets/css/bootstrap.min.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="../../../assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="../../../assets/css/navbar-fixed-top.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="../../../assets/css/nycaasc-custom.css" rel="stylesheet">
<!-- Streetvertising Font CSS -->
<link href="../../../assets/css/font-streetvertising.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="..//../../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="../../../assets/js/ie-emulation-modes-warning.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style>
.speaker {
padding-bottom: 25px;
}
</style>
</head>
<body>
<header id="header">
</header>
<main role="main">
<div class="container">
<h1>NYCAASC 2017 Workshops</h1>
<a href="../../../conference.html"><< Back to NYCAASC 2017</a>
<h2>Track 1</h2>
<h3>API Flower Power: Understanding Personal Identity and the Connection to Privilege</h3>
<h4>Room 388</h4>
<p><strong>Description:</strong> API: Flower Power is an interactive workshop where participants unpack the complexities of the Asian identity using the Power Flower model. The “Power Flower” is a tool developed by Canadian social change educators
when working with groups to “identify who we are (and who we aren’t) as individuals and as a group in relation to those who wield power in our society.” (<em>Educating for a Change</em>, p. 87) The goal is to understand our personal identity and
their connections to privilege.
<strong>Workshop is limited to 12 participants.</strong></p>
<h3>Speakers</h3>
<div class="row speaker">
<div class="col-md-4">
<img class="img-responsive" src="../../../assets/img/wks/2017/headshots/1/101/jkyon.png">
</div>
<div class="col-md-8">
<h4>Jasmine Kyon</h4>
<p>J./Jasmine Kyon is a queer Burmese-Chinese sunflower who grew up traveling between Chinatown and Queens, helping them perfect the art of sleeping in the subway. J. grew up witnessing how space has offered or denied accessibility to
immigrant, queer people of color, inspiring them to research on the equity of public transportation as a Student Research Fellow at the Arcus Center of Social Justice Leadership. Jasmine is also the co-organizer of the Kalamazoo
Poetry Collective, connecting Kalamazoo College to local artists and facilitating storytelling workshops to QTPoC youth. Jasmine has introduced the Flower Power workshop to Fire Historical and Arts Collaborative and smART, and
is grateful to be in the space of NYCAASC to share an API-centric version of the Flower Power for the first time. </p>
<p></p>
<!--Social media/website links-->
</div>
</div>
</div>
</main>
<footer id="footer"></footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-68409586-1', 'auto');
ga('send', 'pageview');
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="../../../assets/js/vendor/jquery.min.js"><\/script>')
</script>
<script src="../../../assets/js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="../../../assets/js/ie10-viewport-bug-workaround.js"></script>
<!--Import site header-->
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(function() {
$("#header").load("../../../wksheader.html");
$("#footer").load("../../../wksfooter.html");
});
</script>
</body>
</html>
|
NYCAASC/nycaasc
|
wks/2017/1/101.html
|
HTML
|
cc0-1.0
| 5,803
|
jsonp({"cep":"76820780","logradouro":"Avenida Calama","bairro":"Embratel","cidade":"Porto Velho","uf":"RO","estado":"Rond\u00f4nia"});
|
lfreneda/cepdb
|
api/v1/76820780.jsonp.js
|
JavaScript
|
cc0-1.0
| 135
|
import React, { PropTypes } from 'react'
import {connect} from 'react-redux';
import {bindActionCreators} from 'redux';
import * as TinderActions from '../actions/tinderActions';
import Profile from '../components/Profile';
import '../sass/matchesPage.scss';
const MatchesPage = React.createClass({
componentWillMount() {
this.actions = bindActionCreators(TinderActions, this.props.dispatch);
},
componentDidMount: function() {
this.actions.getHistory();
},
render () {
let {tinderStore} = this.props;
return (
<div className="matches-page">
<div className="profiles">
{
tinderStore.matches.map(profile=>
<Profile key={profile._id} profile={profile}/>
)
}
</div>
</div>
)
}
})
export default connect(state => { return {tinderStore : state.tinder.toJS()} })(MatchesPage);
|
datpham23/tinder-wingman
|
public/pages/MatchesPage.js
|
JavaScript
|
cc0-1.0
| 988
|
jsonp({"cep":"26562280","logradouro":"Travessa Jo\u00e3o Rodrigues","bairro":"Jacutinga","cidade":"Mesquita","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/26562280.jsonp.js
|
JavaScript
|
cc0-1.0
| 148
|
jsonp({"cep":"77015507","logradouro":"Quadra 309 Sul Rua 1","bairro":"Plano Diretor Sul","cidade":"Palmas","uf":"TO","estado":"Tocantins"});
|
lfreneda/cepdb
|
api/v1/77015507.jsonp.js
|
JavaScript
|
cc0-1.0
| 141
|
jsonp({"cep":"31975220","logradouro":"Rua Professor Am\u00edlcar Viana Martins","bairro":"Jardim Vit\u00f3ria","cidade":"Belo Horizonte","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/31975220.jsonp.js
|
JavaScript
|
cc0-1.0
| 174
|
jsonp({"cep":"09381222","logradouro":"Travessa Torres","bairro":"Jardim Orat\u00f3rio","cidade":"Mau\u00e1","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/09381222.jsonp.js
|
JavaScript
|
cc0-1.0
| 147
|
jsonp({"cep":"89070800","logradouro":"Rua Nilton Jos\u00e9 Possamai","bairro":"Badenfurt","cidade":"Blumenau","uf":"SC","estado":"Santa Catarina"});
|
lfreneda/cepdb
|
api/v1/89070800.jsonp.js
|
JavaScript
|
cc0-1.0
| 149
|
jsonp({"cep":"18047626","logradouro":"Rua Emygdia Campolim","bairro":"Parque Campolim","cidade":"Sorocaba","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/18047626.jsonp.js
|
JavaScript
|
cc0-1.0
| 146
|
jsonp({"cep":"89265100","logradouro":"Rua Germano Stricker","bairro":"Tifa Monos","cidade":"Jaragu\u00e1 do Sul","uf":"SC","estado":"Santa Catarina"});
|
lfreneda/cepdb
|
api/v1/89265100.jsonp.js
|
JavaScript
|
cc0-1.0
| 152
|
jsonp({"cep":"97037178","logradouro":"Rua N","bairro":"Nova Santa Marta","cidade":"Santa Maria","uf":"RS","estado":"Rio Grande do Sul"});
|
lfreneda/cepdb
|
api/v1/97037178.jsonp.js
|
JavaScript
|
cc0-1.0
| 138
|
jsonp({"cep":"25575614","logradouro":"Rua Jos\u00e9 Gomes de Miranda","bairro":"Jardim \u00cdris","cidade":"S\u00e3o Jo\u00e3o de Meriti","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/25575614.jsonp.js
|
JavaScript
|
cc0-1.0
| 177
|
jsonp({"cep":"36092550","logradouro":"Rua Ant\u00f4nio Scapim","bairro":"Benfica","cidade":"Juiz de Fora","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/36092550.jsonp.js
|
JavaScript
|
cc0-1.0
| 143
|
jsonp({"cep":"13309530","logradouro":"Avenida Brasil","bairro":"Parque Industrial","cidade":"Itu","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/13309530.jsonp.js
|
JavaScript
|
cc0-1.0
| 137
|
require('newrelic');
var _ = require("underscore");
var Twit = require('twit'),
debug = false;
// Express server page:
var express = require('express');
var app = express();
app.set('port', (process.env.PORT || 5000));
app.use(express.static(__dirname + '/public'));
app.listen(app.get('port'), function() {
console.log("Node app is running at localhost:" + app.get('port'));
});
// Work out whether a search term matches a given tweet
function hasKeyword(searchterms, text){
return _.some(searchterms,function(d){
return new RegExp(d, 'ig').test(text);
});
}
var valid = function (tweet) {
// Don't reply to tweets mentioning November 19th:
var November = hasKeyword(['November','Nov','19','19th'], tweet.text);
// Don't reply to Richard Herring
var Richard = tweet.user.screen_name === 'Herring1967';
// Don't reply to RTs
var RT = tweet.retweeted_status !== undefined;
return !November && !Richard && !RT;
};
// Matched array of keywords and corresponding replies:
var keywords = [
"international men's day",
"international man's day",
"international mens day",
"international mans day",
"national men's day",
"national man's day",
"national mens day",
"national mans day"
];
var reply = "It's November 19th.";
var backlog = [];
var auto = true;
// Start the twitter stream:
var T = new Twit({
consumer_key: process.env.consumer_key,
consumer_secret: process.env.consumer_secret,
access_token: process.env.access_token,
access_token_secret: process.env.access_token_secret
});
var stream = T.stream('statuses/filter', { track: keywords });
stream.on('tweet', function (tweet) {
if (valid(tweet)) {
if (auto) {
// Reply:
sendTweet(tweet);
} else {
// Add tweet to backlog:
backlog.push(tweet);
}
}
});
function sendTweet(tweet){
var response = '@'+ tweet.user.screen_name + ' ' + reply;
if (!debug) {
var params = {
status: response,
in_reply_to_status_id: tweet.id_str
};
T.post('statuses/update', params, function (err, reply) {
if (err) {
console.log(err);
} else {
var now = new Date();
console.log('[' + now.toJSON() + '] SENT: ' + response);
}
});
} else {
var now = new Date();
console.log('[' + now.toJSON() + '] ' + response);
}
}
stream.on('warning', function (item) { console.log('WARNING: ' + item); });
stream.on('disconnect', function (item) { console.log('Stream disconnected.'); });
stream.on('connect', function (item) { console.log('Stream connected.'); });
stream.on('reconnect', function (item) { console.log('Stream reconnected.'); });
// Handle AJAX requests
app.get('/query', function(req, res){
var p = req.query;
if (p.clear === 'clear') {
backlog = [];
}
if (p.approve !== undefined) {
var tweet = _.find(backlog,function(d){
return +d.id === +p.id;
});
var now = new Date();
if (p.approve === 'true' || p.approve === true) {
console.log('[' + now.toJSON() + '] Approved tweet: @' + tweet.user.screen_name + ':' + tweet.text);
sendTweet(tweet);
} else {
console.log('[' + now.toJSON() + '] Rejected tweet: @' + tweet.user.screen_name + ':' + tweet.text);
}
backlog = _.reject(backlog,function(d){
return +d.id === +p.id;
});
}
if (p.mode !== undefined) {
// Toggle mode
auto = p.mode !== 'Auto';
}
res.send({
mode: auto ? 'Auto' : 'Manual',
backlog: backlog
});
});
|
richardwestenra/mensdaybot
|
bot.js
|
JavaScript
|
cc0-1.0
| 3,771
|
jsonp({"cep":"54325410","logradouro":"Rua Piripiri","bairro":"Guararapes","cidade":"Jaboat\u00e3o dos Guararapes","uf":"PE","estado":"Pernambuco"});
|
lfreneda/cepdb
|
api/v1/54325410.jsonp.js
|
JavaScript
|
cc0-1.0
| 149
|
Clazz.declarePackage ("JU");
Clazz.load (["JU.V3"], "JU.Measure", ["java.lang.Float", "javajs.api.Interface", "JU.Lst", "$.P3", "$.P4", "$.Quat"], function () {
c$ = Clazz.declareType (JU, "Measure");
c$.computeAngle = Clazz.defineMethod (c$, "computeAngle",
function (pointA, pointB, pointC, vectorBA, vectorBC, asDegrees) {
vectorBA.sub2 (pointA, pointB);
vectorBC.sub2 (pointC, pointB);
var angle = vectorBA.angle (vectorBC);
return (asDegrees ? angle / 0.017453292 : angle);
}, "JU.T3,JU.T3,JU.T3,JU.V3,JU.V3,~B");
c$.computeAngleABC = Clazz.defineMethod (c$, "computeAngleABC",
function (pointA, pointB, pointC, asDegrees) {
var vectorBA = new JU.V3 ();
var vectorBC = new JU.V3 ();
return JU.Measure.computeAngle (pointA, pointB, pointC, vectorBA, vectorBC, asDegrees);
}, "JU.T3,JU.T3,JU.T3,~B");
c$.computeTorsion = Clazz.defineMethod (c$, "computeTorsion",
function (p1, p2, p3, p4, asDegrees) {
var ijx = p1.x - p2.x;
var ijy = p1.y - p2.y;
var ijz = p1.z - p2.z;
var kjx = p3.x - p2.x;
var kjy = p3.y - p2.y;
var kjz = p3.z - p2.z;
var klx = p3.x - p4.x;
var kly = p3.y - p4.y;
var klz = p3.z - p4.z;
var ax = ijy * kjz - ijz * kjy;
var ay = ijz * kjx - ijx * kjz;
var az = ijx * kjy - ijy * kjx;
var cx = kjy * klz - kjz * kly;
var cy = kjz * klx - kjx * klz;
var cz = kjx * kly - kjy * klx;
var ai2 = 1 / (ax * ax + ay * ay + az * az);
var ci2 = 1 / (cx * cx + cy * cy + cz * cz);
var ai = Math.sqrt (ai2);
var ci = Math.sqrt (ci2);
var denom = ai * ci;
var cross = ax * cx + ay * cy + az * cz;
var cosang = cross * denom;
if (cosang > 1) {
cosang = 1;
}if (cosang < -1) {
cosang = -1;
}var torsion = Math.acos (cosang);
var dot = ijx * cx + ijy * cy + ijz * cz;
var absDot = Math.abs (dot);
torsion = (dot / absDot > 0) ? torsion : -torsion;
return (asDegrees ? torsion / 0.017453292 : torsion);
}, "JU.T3,JU.T3,JU.T3,JU.T3,~B");
c$.computeHelicalAxis = Clazz.defineMethod (c$, "computeHelicalAxis",
function (a, b, dq) {
var vab = new JU.V3 ();
vab.sub2 (b, a);
var theta = dq.getTheta ();
var n = dq.getNormal ();
var v_dot_n = vab.dot (n);
if (Math.abs (v_dot_n) < 0.0001) v_dot_n = 0;
var va_prime_d = new JU.V3 ();
va_prime_d.cross (vab, n);
if (va_prime_d.dot (va_prime_d) != 0) va_prime_d.normalize ();
var vda = new JU.V3 ();
var vcb = JU.V3.newV (n);
if (v_dot_n == 0) v_dot_n = 1.4E-45;
vcb.scale (v_dot_n);
vda.sub2 (vcb, vab);
vda.scale (0.5);
va_prime_d.scale (theta == 0 ? 0 : (vda.length () / Math.tan (theta / 2 / 180 * 3.141592653589793)));
var r = JU.V3.newV (va_prime_d);
if (theta != 0) r.add (vda);
var pt_a_prime = JU.P3.newP (a);
pt_a_prime.sub (r);
if (v_dot_n != 1.4E-45) n.scale (v_dot_n);
var pt_b_prime = JU.P3.newP (pt_a_prime);
pt_b_prime.add (n);
theta = JU.Measure.computeTorsion (a, pt_a_prime, pt_b_prime, b, true);
if (Float.isNaN (theta) || r.length () < 0.0001) theta = dq.getThetaDirectedV (n);
var residuesPerTurn = Math.abs (theta == 0 ? 0 : 360 / theta);
var pitch = Math.abs (v_dot_n == 1.4E-45 ? 0 : n.length () * (theta == 0 ? 1 : 360 / theta));
return Clazz.newArray (-1, [pt_a_prime, n, r, JU.P3.new3 (theta, pitch, residuesPerTurn), pt_b_prime]);
}, "JU.P3,JU.P3,JU.Quat");
c$.getPlaneThroughPoints = Clazz.defineMethod (c$, "getPlaneThroughPoints",
function (pointA, pointB, pointC, vNorm, vAB, plane) {
var w = JU.Measure.getNormalThroughPoints (pointA, pointB, pointC, vNorm, vAB);
plane.set4 (vNorm.x, vNorm.y, vNorm.z, w);
return plane;
}, "JU.T3,JU.T3,JU.T3,JU.V3,JU.V3,JU.P4");
c$.getPlaneThroughPoint = Clazz.defineMethod (c$, "getPlaneThroughPoint",
function (pt, normal, plane) {
plane.set4 (normal.x, normal.y, normal.z, -normal.dot (pt));
}, "JU.T3,JU.V3,JU.P4");
c$.distanceToPlane = Clazz.defineMethod (c$, "distanceToPlane",
function (plane, pt) {
return (plane == null ? NaN : (plane.dot (pt) + plane.w) / Math.sqrt (plane.dot (plane)));
}, "JU.P4,JU.T3");
c$.directedDistanceToPlane = Clazz.defineMethod (c$, "directedDistanceToPlane",
function (pt, plane, ptref) {
var f = plane.dot (pt) + plane.w;
var f1 = plane.dot (ptref) + plane.w;
return Math.signum (f1) * f / Math.sqrt (plane.dot (plane));
}, "JU.P3,JU.P4,JU.P3");
c$.distanceToPlaneD = Clazz.defineMethod (c$, "distanceToPlaneD",
function (plane, d, pt) {
return (plane == null ? NaN : (plane.dot (pt) + plane.w) / d);
}, "JU.P4,~N,JU.P3");
c$.distanceToPlaneV = Clazz.defineMethod (c$, "distanceToPlaneV",
function (norm, w, pt) {
return (norm == null ? NaN : (norm.dot (pt) + w) / Math.sqrt (norm.dot (norm)));
}, "JU.V3,~N,JU.P3");
c$.calcNormalizedNormal = Clazz.defineMethod (c$, "calcNormalizedNormal",
function (pointA, pointB, pointC, vNormNorm, vAB) {
vAB.sub2 (pointB, pointA);
vNormNorm.sub2 (pointC, pointA);
vNormNorm.cross (vAB, vNormNorm);
vNormNorm.normalize ();
}, "JU.T3,JU.T3,JU.T3,JU.T3,JU.T3");
c$.getDirectedNormalThroughPoints = Clazz.defineMethod (c$, "getDirectedNormalThroughPoints",
function (pointA, pointB, pointC, ptRef, vNorm, vAB) {
var nd = JU.Measure.getNormalThroughPoints (pointA, pointB, pointC, vNorm, vAB);
if (ptRef != null) {
var pt0 = JU.P3.newP (pointA);
pt0.add (vNorm);
var d = pt0.distance (ptRef);
pt0.sub2 (pointA, vNorm);
if (d > pt0.distance (ptRef)) {
vNorm.scale (-1);
nd = -nd;
}}return nd;
}, "JU.T3,JU.T3,JU.T3,JU.T3,JU.V3,JU.V3");
c$.getNormalThroughPoints = Clazz.defineMethod (c$, "getNormalThroughPoints",
function (pointA, pointB, pointC, vNorm, vTemp) {
JU.Measure.calcNormalizedNormal (pointA, pointB, pointC, vNorm, vTemp);
vTemp.setT (pointA);
return -vTemp.dot (vNorm);
}, "JU.T3,JU.T3,JU.T3,JU.T3,JU.T3");
c$.getPlaneProjection = Clazz.defineMethod (c$, "getPlaneProjection",
function (pt, plane, ptProj, vNorm) {
var dist = JU.Measure.distanceToPlane (plane, pt);
vNorm.set (plane.x, plane.y, plane.z);
vNorm.normalize ();
vNorm.scale (-dist);
ptProj.add2 (pt, vNorm);
}, "JU.P3,JU.P4,JU.P3,JU.V3");
c$.getNormalFromCenter = Clazz.defineMethod (c$, "getNormalFromCenter",
function (ptCenter, ptA, ptB, ptC, isOutward, normal, vTemp) {
var d = JU.Measure.getNormalThroughPoints (ptA, ptB, ptC, normal, vTemp);
var isReversed = (JU.Measure.distanceToPlaneV (normal, d, ptCenter) > 0);
if (isReversed == isOutward) normal.scale (-1.0);
return !isReversed;
}, "JU.P3,JU.P3,JU.P3,JU.P3,~B,JU.V3,JU.V3");
c$.getNormalToLine = Clazz.defineMethod (c$, "getNormalToLine",
function (pointA, pointB, vNormNorm) {
vNormNorm.sub2 (pointA, pointB);
vNormNorm.cross (vNormNorm, JU.Measure.axisY);
vNormNorm.normalize ();
if (Float.isNaN (vNormNorm.x)) vNormNorm.set (1, 0, 0);
}, "JU.P3,JU.P3,JU.V3");
c$.getBisectingPlane = Clazz.defineMethod (c$, "getBisectingPlane",
function (pointA, vAB, ptTemp, vTemp, plane) {
ptTemp.scaleAdd2 (0.5, vAB, pointA);
vTemp.setT (vAB);
vTemp.normalize ();
JU.Measure.getPlaneThroughPoint (ptTemp, vTemp, plane);
}, "JU.P3,JU.V3,JU.T3,JU.V3,JU.P4");
c$.projectOntoAxis = Clazz.defineMethod (c$, "projectOntoAxis",
function (point, axisA, axisUnitVector, vectorProjection) {
vectorProjection.sub2 (point, axisA);
var projectedLength = vectorProjection.dot (axisUnitVector);
point.scaleAdd2 (projectedLength, axisUnitVector, axisA);
vectorProjection.sub2 (point, axisA);
}, "JU.P3,JU.P3,JU.V3,JU.V3");
c$.calcBestAxisThroughPoints = Clazz.defineMethod (c$, "calcBestAxisThroughPoints",
function (points, axisA, axisUnitVector, vectorProjection, nTriesMax) {
var nPoints = points.length;
axisA.setT (points[0]);
axisUnitVector.sub2 (points[nPoints - 1], axisA);
axisUnitVector.normalize ();
JU.Measure.calcAveragePointN (points, nPoints, axisA);
var nTries = 0;
while (nTries++ < nTriesMax && JU.Measure.findAxis (points, nPoints, axisA, axisUnitVector, vectorProjection) > 0.001) {
}
var tempA = JU.P3.newP (points[0]);
JU.Measure.projectOntoAxis (tempA, axisA, axisUnitVector, vectorProjection);
axisA.setT (tempA);
}, "~A,JU.P3,JU.V3,JU.V3,~N");
c$.findAxis = Clazz.defineMethod (c$, "findAxis",
function (points, nPoints, axisA, axisUnitVector, vectorProjection) {
var sumXiYi = new JU.V3 ();
var vTemp = new JU.V3 ();
var pt = new JU.P3 ();
var ptProj = new JU.P3 ();
var a = JU.V3.newV (axisUnitVector);
var sum_Xi2 = 0;
for (var i = nPoints; --i >= 0; ) {
pt.setT (points[i]);
ptProj.setT (pt);
JU.Measure.projectOntoAxis (ptProj, axisA, axisUnitVector, vectorProjection);
vTemp.sub2 (pt, ptProj);
vTemp.cross (vectorProjection, vTemp);
sumXiYi.add (vTemp);
sum_Xi2 += vectorProjection.lengthSquared ();
}
var m = JU.V3.newV (sumXiYi);
m.scale (1 / sum_Xi2);
vTemp.cross (m, axisUnitVector);
axisUnitVector.add (vTemp);
axisUnitVector.normalize ();
vTemp.sub2 (axisUnitVector, a);
return vTemp.length ();
}, "~A,~N,JU.P3,JU.V3,JU.V3");
c$.calcAveragePoint = Clazz.defineMethod (c$, "calcAveragePoint",
function (pointA, pointB, pointC) {
pointC.set ((pointA.x + pointB.x) / 2, (pointA.y + pointB.y) / 2, (pointA.z + pointB.z) / 2);
}, "JU.P3,JU.P3,JU.P3");
c$.calcAveragePointN = Clazz.defineMethod (c$, "calcAveragePointN",
function (points, nPoints, averagePoint) {
averagePoint.setT (points[0]);
for (var i = 1; i < nPoints; i++) averagePoint.add (points[i]);
averagePoint.scale (1 / nPoints);
}, "~A,~N,JU.P3");
c$.transformPoints = Clazz.defineMethod (c$, "transformPoints",
function (vPts, m4, center) {
var v = new JU.Lst ();
for (var i = 0; i < vPts.size (); i++) {
var pt = JU.P3.newP (vPts.get (i));
pt.sub (center);
m4.rotTrans (pt);
pt.add (center);
v.addLast (pt);
}
return v;
}, "JU.Lst,JU.M4,JU.P3");
c$.isInTetrahedron = Clazz.defineMethod (c$, "isInTetrahedron",
function (pt, ptA, ptB, ptC, ptD, plane, vTemp, vTemp2, fullyEnclosed) {
var b = (JU.Measure.distanceToPlane (JU.Measure.getPlaneThroughPoints (ptC, ptD, ptA, vTemp, vTemp2, plane), pt) >= 0);
if (b != (JU.Measure.distanceToPlane (JU.Measure.getPlaneThroughPoints (ptA, ptD, ptB, vTemp, vTemp2, plane), pt) >= 0)) return false;
if (b != (JU.Measure.distanceToPlane (JU.Measure.getPlaneThroughPoints (ptB, ptD, ptC, vTemp, vTemp2, plane), pt) >= 0)) return false;
var d = JU.Measure.distanceToPlane (JU.Measure.getPlaneThroughPoints (ptA, ptB, ptC, vTemp, vTemp2, plane), pt);
if (fullyEnclosed) return (b == (d >= 0));
var d1 = JU.Measure.distanceToPlane (plane, ptD);
return d1 * d <= 0 || Math.abs (d1) > Math.abs (d);
}, "JU.P3,JU.P3,JU.P3,JU.P3,JU.P3,JU.P4,JU.V3,JU.V3,~B");
c$.getIntersectionPP = Clazz.defineMethod (c$, "getIntersectionPP",
function (plane1, plane2) {
var a1 = plane1.x;
var b1 = plane1.y;
var c1 = plane1.z;
var d1 = plane1.w;
var a2 = plane2.x;
var b2 = plane2.y;
var c2 = plane2.z;
var d2 = plane2.w;
var norm1 = JU.V3.new3 (a1, b1, c1);
var norm2 = JU.V3.new3 (a2, b2, c2);
var nxn = new JU.V3 ();
nxn.cross (norm1, norm2);
var ax = Math.abs (nxn.x);
var ay = Math.abs (nxn.y);
var az = Math.abs (nxn.z);
var x;
var y;
var z;
var diff;
var type = (ax > ay ? (ax > az ? 1 : 3) : ay > az ? 2 : 3);
switch (type) {
case 1:
x = 0;
diff = (b1 * c2 - b2 * c1);
if (Math.abs (diff) < 0.01) return null;
y = (c1 * d2 - c2 * d1) / diff;
z = (b2 * d1 - d2 * b1) / diff;
break;
case 2:
diff = (a1 * c2 - a2 * c1);
if (Math.abs (diff) < 0.01) return null;
x = (c1 * d2 - c2 * d1) / diff;
y = 0;
z = (a2 * d1 - d2 * a1) / diff;
break;
case 3:
default:
diff = (a1 * b2 - a2 * b1);
if (Math.abs (diff) < 0.01) return null;
x = (b1 * d2 - b2 * d1) / diff;
y = (a2 * d1 - d2 * a1) / diff;
z = 0;
}
var list = new JU.Lst ();
list.addLast (JU.P3.new3 (x, y, z));
nxn.normalize ();
list.addLast (nxn);
return list;
}, "JU.P4,JU.P4");
c$.getIntersection = Clazz.defineMethod (c$, "getIntersection",
function (pt1, v, plane, ptRet, tempNorm, vTemp) {
JU.Measure.getPlaneProjection (pt1, plane, ptRet, tempNorm);
tempNorm.set (plane.x, plane.y, plane.z);
tempNorm.normalize ();
if (v == null) v = JU.V3.newV (tempNorm);
var l_dot_n = v.dot (tempNorm);
if (Math.abs (l_dot_n) < 0.01) return null;
vTemp.sub2 (ptRet, pt1);
ptRet.scaleAdd2 (vTemp.dot (tempNorm) / l_dot_n, v, pt1);
return ptRet;
}, "JU.P3,JU.V3,JU.P4,JU.P3,JU.V3,JU.V3");
c$.calculateQuaternionRotation = Clazz.defineMethod (c$, "calculateQuaternionRotation",
function (centerAndPoints, retStddev) {
retStddev[1] = NaN;
var q = new JU.Quat ();
var ptsA = centerAndPoints[0];
var ptsB = centerAndPoints[1];
var nPts = ptsA.length - 1;
if (nPts < 2 || ptsA.length != ptsB.length) return q;
var Sxx = 0;
var Sxy = 0;
var Sxz = 0;
var Syx = 0;
var Syy = 0;
var Syz = 0;
var Szx = 0;
var Szy = 0;
var Szz = 0;
var ptA = new JU.P3 ();
var ptB = new JU.P3 ();
var ptA0 = ptsA[0];
var ptB0 = ptsB[0];
for (var i = nPts + 1; --i >= 1; ) {
ptA.sub2 (ptsA[i], ptA0);
ptB.sub2 (ptsB[i], ptB0);
Sxx += ptA.x * ptB.x;
Sxy += ptA.x * ptB.y;
Sxz += ptA.x * ptB.z;
Syx += ptA.y * ptB.x;
Syy += ptA.y * ptB.y;
Syz += ptA.y * ptB.z;
Szx += ptA.z * ptB.x;
Szy += ptA.z * ptB.y;
Szz += ptA.z * ptB.z;
}
retStddev[0] = JU.Measure.getRmsd (centerAndPoints, q);
var N = Clazz.newDoubleArray (4, 4, 0);
N[0][0] = Sxx + Syy + Szz;
N[0][1] = N[1][0] = Syz - Szy;
N[0][2] = N[2][0] = Szx - Sxz;
N[0][3] = N[3][0] = Sxy - Syx;
N[1][1] = Sxx - Syy - Szz;
N[1][2] = N[2][1] = Sxy + Syx;
N[1][3] = N[3][1] = Szx + Sxz;
N[2][2] = -Sxx + Syy - Szz;
N[2][3] = N[3][2] = Syz + Szy;
N[3][3] = -Sxx - Syy + Szz;
var v = (javajs.api.Interface.getInterface ("JU.Eigen")).setM (N).getEigenvectorsFloatTransposed ()[3];
q = JU.Quat.newP4 (JU.P4.new4 (v[1], v[2], v[3], v[0]));
retStddev[1] = JU.Measure.getRmsd (centerAndPoints, q);
return q;
}, "~A,~A");
c$.getTransformMatrix4 = Clazz.defineMethod (c$, "getTransformMatrix4",
function (ptsA, ptsB, m, centerA) {
var cptsA = JU.Measure.getCenterAndPoints (ptsA);
var cptsB = JU.Measure.getCenterAndPoints (ptsB);
var retStddev = Clazz.newFloatArray (2, 0);
var q = JU.Measure.calculateQuaternionRotation ( Clazz.newArray (-1, [cptsA, cptsB]), retStddev);
var r = q.getMatrix ();
if (centerA == null) r.rotate (cptsA[0]);
else centerA.setT (cptsA[0]);
var t = JU.V3.newVsub (cptsB[0], cptsA[0]);
m.setMV (r, t);
return retStddev[1];
}, "JU.Lst,JU.Lst,JU.M4,JU.P3");
c$.getCenterAndPoints = Clazz.defineMethod (c$, "getCenterAndPoints",
function (vPts) {
var n = vPts.size ();
var pts = new Array (n + 1);
pts[0] = new JU.P3 ();
if (n > 0) {
for (var i = 0; i < n; i++) {
pts[0].add (pts[i + 1] = vPts.get (i));
}
pts[0].scale (1 / n);
}return pts;
}, "JU.Lst");
c$.getRmsd = Clazz.defineMethod (c$, "getRmsd",
function (centerAndPoints, q) {
var sum2 = 0;
var ptsA = centerAndPoints[0];
var ptsB = centerAndPoints[1];
var cA = ptsA[0];
var cB = ptsB[0];
var n = ptsA.length - 1;
var ptAnew = new JU.P3 ();
for (var i = n + 1; --i >= 1; ) {
ptAnew.sub2 (ptsA[i], cA);
q.transform2 (ptAnew, ptAnew).add (cB);
sum2 += ptAnew.distanceSquared (ptsB[i]);
}
return Math.sqrt (sum2 / n);
}, "~A,JU.Quat");
Clazz.defineStatics (c$,
"radiansPerDegree", (0.017453292519943295));
c$.axisY = c$.prototype.axisY = JU.V3.new3 (0, 1, 0);
});
|
stuchalk/OSDB
|
app/webroot/js/jsmol/j2s/JU/Measure.js
|
JavaScript
|
cc0-1.0
| 14,764
|
/*
* This file is part of memoization.java. It is subject to the license terms in the LICENSE file found in the top-level
* directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of memoization.java,
* including this file, may be copied, modified, propagated, or distributed except according to the terms contained
* in the LICENSE file.
*/
package de.xn__ho_hia.memoization.map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.function.ObjIntConsumer;
import org.junit.Assert;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.mockito.Mockito;
import de.xn__ho_hia.memoization.shared.ObjIntFunction;
import de.xn__ho_hia.quality.suppression.CompilerWarnings;
/**
*
*/
@SuppressWarnings({ CompilerWarnings.NLS, CompilerWarnings.STATIC_METHOD })
public class ConcurrentMapBasedObjIntConsumerMemoizerTest {
/**
*
*/
@Rule
public ExpectedException thrown = ExpectedException.none();
/**
*
*/
@Test
public void shouldAcceptCacheAndKeyFunctionAndConsumer() {
// given
final ConcurrentMap<String, String> cache = new ConcurrentHashMap<>();
final ObjIntFunction<String, String> keyFunction = (first, second) -> first + second;
final ObjIntConsumer<String> consumer = (first, second) -> System.out.println(first + second);
// when
final ConcurrentMapBasedObjIntConsumerMemoizer<String, String> memoizer = new ConcurrentMapBasedObjIntConsumerMemoizer<>(
cache, keyFunction, consumer);
// then
Assert.assertNotNull("Memoizer is NULL", memoizer);
}
/**
*
*/
@Test
@SuppressWarnings(CompilerWarnings.UNUSED)
public void shouldRequireNonNullCache() {
// given
final ConcurrentMap<String, String> cache = null;
final ObjIntFunction<String, String> keyFunction = (first, second) -> first + second;
final ObjIntConsumer<String> consumer = (first, second) -> System.out.println(first + second);
// when
thrown.expect(NullPointerException.class);
thrown.expectMessage("Provide an empty map instead of NULL.");
// then
new ConcurrentMapBasedObjIntConsumerMemoizer<>(cache, keyFunction, consumer);
}
/**
*
*/
@Test
@SuppressWarnings(CompilerWarnings.UNUSED)
public void shouldRequireNonNullKeyFunction() {
// given
final ConcurrentMap<String, String> cache = new ConcurrentHashMap<>();
final ObjIntFunction<String, String> keyFunction = null;
final ObjIntConsumer<String> consumer = (first, second) -> System.out.println(first + second);
// when
thrown.expect(NullPointerException.class);
thrown.expectMessage(
"Provide a key function, might just be 'MemoizationDefaults.objIntConsumerHashCodeKeyFunction()'.");
// then
new ConcurrentMapBasedObjIntConsumerMemoizer<>(cache, keyFunction, consumer);
}
/**
*
*/
@Test
@SuppressWarnings(CompilerWarnings.UNUSED)
public void shouldRequireNonNullConsumer() {
// given
final ConcurrentMap<String, String> cache = new ConcurrentHashMap<>();
final ObjIntFunction<String, String> keyFunction = (first, second) -> first + second;
final ObjIntConsumer<String> consumer = null;
// when
thrown.expect(NullPointerException.class);
thrown.expectMessage("Cannot memoize a NULL Consumer - provide an actual Consumer to fix this.");
// then
new ConcurrentMapBasedObjIntConsumerMemoizer<>(cache, keyFunction, consumer);
}
/**
*
*/
@Test
public void shouldMemoizeConsumer() {
// given
final ConcurrentMap<String, String> cache = new ConcurrentHashMap<>();
final ObjIntFunction<String, String> keyFunction = (first, second) -> first + second;
final ObjIntConsumer<String> consumer = (first, second) -> System.out.println(first + second);
// when
final ConcurrentMapBasedObjIntConsumerMemoizer<String, String> memoizer = new ConcurrentMapBasedObjIntConsumerMemoizer<>(
cache, keyFunction, consumer);
// then
memoizer.accept("test", 123);
}
/**
*
*/
@Test
public void shouldUseSetCacheKeyAndValue() {
// given
final ConcurrentMap<String, String> cache = new ConcurrentHashMap<>();
final ObjIntFunction<String, String> keyFunction = (first, second) -> first + second;
final ObjIntConsumer<String> consumer = (first, second) -> System.out.println(first + second);
// when
final ConcurrentMapBasedObjIntConsumerMemoizer<String, String> memoizer = new ConcurrentMapBasedObjIntConsumerMemoizer<>(
cache, keyFunction, consumer);
// then
memoizer.accept("test", 123);
Assert.assertFalse("Cache is still empty after memoization", memoizer.viewCacheForTest().isEmpty());
Assert.assertEquals("Memoization key does not match expectations", "test123",
memoizer.viewCacheForTest().keySet().iterator().next());
Assert.assertEquals("Memoization value does not match expectations", "test",
memoizer.viewCacheForTest().values().iterator().next());
}
/**
*
*/
@Test
@SuppressWarnings(CompilerWarnings.UNCHECKED)
public void shouldUseCallWrappedConsumer() {
// given
final ConcurrentMap<String, String> cache = new ConcurrentHashMap<>();
final ObjIntFunction<String, String> keyFunction = (first, second) -> first + second;
final ObjIntConsumer<String> consumer = Mockito.mock(ObjIntConsumer.class);
// when
final ConcurrentMapBasedObjIntConsumerMemoizer<String, String> memoizer = new ConcurrentMapBasedObjIntConsumerMemoizer<>(
cache, keyFunction, consumer);
// then
memoizer.accept("test", 123);
Mockito.verify(consumer).accept("test", 123);
}
}
|
sebhoss/memoization.java
|
memoization-core/src/test/java/de/xn__ho_hia/memoization/map/ConcurrentMapBasedObjIntConsumerMemoizerTest.java
|
Java
|
cc0-1.0
| 6,140
|
jsonp({"cep":"15051080","logradouro":"Rua Luiz Valente","bairro":"Jardim Jo\u00e3o Paulo II","cidade":"S\u00e3o Jos\u00e9 do Rio Preto","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/15051080.jsonp.js
|
JavaScript
|
cc0-1.0
| 175
|
jsonp({"cep":"74482394","logradouro":"Avenida Osmira Moreira","bairro":"Residencial Beatriz Nascimento","cidade":"Goi\u00e2nia","uf":"GO","estado":"Goi\u00e1s"});
|
lfreneda/cepdb
|
api/v1/74482394.jsonp.js
|
JavaScript
|
cc0-1.0
| 163
|
jsonp({"cep":"03908040","logradouro":"Rua Desembargador Amaral Vieira","bairro":"Jardim Novo Carr\u00e3o","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/03908040.jsonp.js
|
JavaScript
|
cc0-1.0
| 171
|
jsonp({"cep":"13562070","logradouro":"Rua Manoel Jos\u00e9 Serpa","bairro":"Planalto Para\u00edso","cidade":"S\u00e3o Carlos","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/13562070.jsonp.js
|
JavaScript
|
cc0-1.0
| 165
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.