Version Description
Release Date: 2016-09-14
- Fixed uncommon bug that was breaking the plugin on some environments;
- Fixed bugs with PollDaddy urls;
- A lot of other bug fixes.
Download this release
Release Info
| Developer | pressshack |
| Plugin | |
| Version | 1.1.0 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.0 to 1.1.0
- EmbedPress/AutoLoader.php +58 -21
- EmbedPress/Disabler.php +13 -6
- EmbedPress/Ends/Back/Handler.php +14 -6
- EmbedPress/Ends/Back/Settings.php +16 -16
- EmbedPress/Ends/Front/Handler.php +8 -5
- EmbedPress/Ends/Handler.php +14 -7
- EmbedPress/Loader.php +26 -20
- EmbedPress/Plugin.php +27 -14
- EmbedPress/Providers/GoogleDocs.php +3 -3
- EmbedPress/Providers/GoogleMaps.php +4 -4
- EmbedPress/Providers/index.html +0 -0
- EmbedPress/Shortcode.php +13 -13
- PROVIDERS.md +0 -0
- assets/bootstrap.config.json +0 -400
- assets/css/font.css +0 -0
- assets/css/vendor/bootstrap/bootstrap.css +1039 -2396
- assets/css/vendor/bootstrap/bootstrap.css.map +1 -0
- assets/css/vendor/bootstrap/bootstrap.min.css +5 -9
- assets/js/preview.js +233 -127
- assets/js/vendor/bootbox.min.js +0 -0
- assets/js/vendor/bootstrap/bootstrap.js +13 -11
- assets/js/vendor/bootstrap/bootstrap.min.js +4 -4
- autoloader.php +2 -2
- changelog.txt +8 -1
- embedpress.php +2 -2
- includes.php +3 -3
- providers.php +1 -1
- readme.txt +10 -3
EmbedPress/AutoLoader.php
CHANGED
|
@@ -10,7 +10,7 @@ namespace EmbedPress;
|
|
| 10 |
* @author PressShack <help@pressshack.com>
|
| 11 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 12 |
* @license GPLv2 or later
|
| 13 |
-
* @since 1.0
|
| 14 |
*/
|
| 15 |
class AutoLoader
|
| 16 |
{
|
|
@@ -18,7 +18,11 @@ class AutoLoader
|
|
| 18 |
* Associative array where the key is a namespace prefix and the value
|
| 19 |
* is an array of base directories for classes in that namespace.
|
| 20 |
*
|
| 21 |
-
* @
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
*/
|
| 23 |
protected static $prefixes = array();
|
| 24 |
|
|
@@ -26,15 +30,33 @@ class AutoLoader
|
|
| 26 |
* Associative array of prefixes for loading specialized camelCase classes
|
| 27 |
* where Uppercase letters in the class name indicate directory structure
|
| 28 |
*
|
| 29 |
-
* @
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
*/
|
| 31 |
protected static $camelPrefixes = array();
|
| 32 |
|
| 33 |
/**
|
| 34 |
-
* @
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
*/
|
| 36 |
protected static $instance = null;
|
| 37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
protected static function registerLoader($method)
|
| 39 |
{
|
| 40 |
if (static::$instance === null) {
|
|
@@ -47,14 +69,15 @@ class AutoLoader
|
|
| 47 |
/**
|
| 48 |
* Register a psr4 namespace
|
| 49 |
*
|
| 50 |
-
* @
|
| 51 |
-
* @
|
| 52 |
-
* namespace.
|
| 53 |
-
* @param bool $prepend If true, prepend the base directory to the stack
|
| 54 |
-
* instead of appending it; this causes it to be searched first rather
|
| 55 |
-
* than last.
|
| 56 |
*
|
| 57 |
-
* @
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
*/
|
| 59 |
public static function register($prefix = null, $baseDir = null, $prepend = false)
|
| 60 |
{
|
|
@@ -90,9 +113,13 @@ class AutoLoader
|
|
| 90 |
/**
|
| 91 |
* Loads the class file for a given class name.
|
| 92 |
*
|
| 93 |
-
* @
|
|
|
|
|
|
|
|
|
|
|
|
|
| 94 |
*
|
| 95 |
-
* @return
|
| 96 |
*/
|
| 97 |
protected function loadClass($class)
|
| 98 |
{
|
|
@@ -115,10 +142,14 @@ class AutoLoader
|
|
| 115 |
/**
|
| 116 |
* Load the mapped file for a namespace prefix and class.
|
| 117 |
*
|
| 118 |
-
* @
|
| 119 |
-
* @
|
|
|
|
| 120 |
*
|
| 121 |
-
* @
|
|
|
|
|
|
|
|
|
|
| 122 |
*/
|
| 123 |
protected function loadMappedFile($prefix, $className)
|
| 124 |
{
|
|
@@ -147,8 +178,11 @@ class AutoLoader
|
|
| 147 |
* if there is a matching file in the directory tree starting with $baseDir.
|
| 148 |
* File names and directory names are all expected to be lower case.
|
| 149 |
*
|
| 150 |
-
* @
|
| 151 |
-
* @
|
|
|
|
|
|
|
|
|
|
| 152 |
*
|
| 153 |
* @return void
|
| 154 |
* @throws \Exception
|
|
@@ -172,9 +206,12 @@ class AutoLoader
|
|
| 172 |
/**
|
| 173 |
* Autoload a class using the camelCase structure
|
| 174 |
*
|
| 175 |
-
* @
|
|
|
|
|
|
|
|
|
|
| 176 |
*
|
| 177 |
-
* @return
|
| 178 |
*/
|
| 179 |
protected function loadCamelClass($class)
|
| 180 |
{
|
|
@@ -197,4 +234,4 @@ class AutoLoader
|
|
| 197 |
// No file found
|
| 198 |
return false;
|
| 199 |
}
|
| 200 |
-
}
|
| 10 |
* @author PressShack <help@pressshack.com>
|
| 11 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 12 |
* @license GPLv2 or later
|
| 13 |
+
* @since 1.0.0
|
| 14 |
*/
|
| 15 |
class AutoLoader
|
| 16 |
{
|
| 18 |
* Associative array where the key is a namespace prefix and the value
|
| 19 |
* is an array of base directories for classes in that namespace.
|
| 20 |
*
|
| 21 |
+
* @since 1.0.0
|
| 22 |
+
* @access protected
|
| 23 |
+
* @static
|
| 24 |
+
*
|
| 25 |
+
* @var array
|
| 26 |
*/
|
| 27 |
protected static $prefixes = array();
|
| 28 |
|
| 30 |
* Associative array of prefixes for loading specialized camelCase classes
|
| 31 |
* where Uppercase letters in the class name indicate directory structure
|
| 32 |
*
|
| 33 |
+
* @since 1.0.0
|
| 34 |
+
* @access protected
|
| 35 |
+
* @static
|
| 36 |
+
*
|
| 37 |
+
* @var array
|
| 38 |
*/
|
| 39 |
protected static $camelPrefixes = array();
|
| 40 |
|
| 41 |
/**
|
| 42 |
+
* @since 1.0.0
|
| 43 |
+
* @access protected
|
| 44 |
+
* @static
|
| 45 |
+
*
|
| 46 |
+
* @var AutoLoader
|
| 47 |
*/
|
| 48 |
protected static $instance = null;
|
| 49 |
|
| 50 |
+
/**
|
| 51 |
+
* Register a new loader.
|
| 52 |
+
*
|
| 53 |
+
* @since 1.0.0
|
| 54 |
+
* @access protected
|
| 55 |
+
* @static
|
| 56 |
+
*
|
| 57 |
+
* @param string $method The method name which will be called.
|
| 58 |
+
* @return void
|
| 59 |
+
*/
|
| 60 |
protected static function registerLoader($method)
|
| 61 |
{
|
| 62 |
if (static::$instance === null) {
|
| 69 |
/**
|
| 70 |
* Register a psr4 namespace
|
| 71 |
*
|
| 72 |
+
* @since 1.0.0
|
| 73 |
+
* @static
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
*
|
| 75 |
+
* @param string $prefix The namespace prefix.
|
| 76 |
+
* @param string $baseDir A base directory for class files in the namespace.
|
| 77 |
+
* @param bool $prepend If true, prepend the base directory to the stack instead of
|
| 78 |
+
* appending it; this causes it to be searched first rather than last.
|
| 79 |
+
*
|
| 80 |
+
* @return void
|
| 81 |
*/
|
| 82 |
public static function register($prefix = null, $baseDir = null, $prepend = false)
|
| 83 |
{
|
| 113 |
/**
|
| 114 |
* Loads the class file for a given class name.
|
| 115 |
*
|
| 116 |
+
* @since 1.0.0
|
| 117 |
+
* @access protected
|
| 118 |
+
* @static
|
| 119 |
+
*
|
| 120 |
+
* @param string $class The fully-qualified class name.
|
| 121 |
*
|
| 122 |
+
* @return mixed The mapped file name on success, or boolean false on failure.
|
| 123 |
*/
|
| 124 |
protected function loadClass($class)
|
| 125 |
{
|
| 142 |
/**
|
| 143 |
* Load the mapped file for a namespace prefix and class.
|
| 144 |
*
|
| 145 |
+
* @since 1.0.0
|
| 146 |
+
* @access protected
|
| 147 |
+
* @static
|
| 148 |
*
|
| 149 |
+
* @param string $prefix The namespace prefix.
|
| 150 |
+
* @param string $className The relative class name.
|
| 151 |
+
*
|
| 152 |
+
* @return mixed False if no mapped file can be loaded | path that was loaded
|
| 153 |
*/
|
| 154 |
protected function loadMappedFile($prefix, $className)
|
| 155 |
{
|
| 178 |
* if there is a matching file in the directory tree starting with $baseDir.
|
| 179 |
* File names and directory names are all expected to be lower case.
|
| 180 |
*
|
| 181 |
+
* @since 1.0.0
|
| 182 |
+
* @static
|
| 183 |
+
*
|
| 184 |
+
* @param string $prefix
|
| 185 |
+
* @param string $baseDir
|
| 186 |
*
|
| 187 |
* @return void
|
| 188 |
* @throws \Exception
|
| 206 |
/**
|
| 207 |
* Autoload a class using the camelCase structure
|
| 208 |
*
|
| 209 |
+
* @since 1.0.0
|
| 210 |
+
* @access protected
|
| 211 |
+
*
|
| 212 |
+
* @param string $class
|
| 213 |
*
|
| 214 |
+
* @return mixed Bool/string
|
| 215 |
*/
|
| 216 |
protected function loadCamelClass($class)
|
| 217 |
{
|
| 234 |
// No file found
|
| 235 |
return false;
|
| 236 |
}
|
| 237 |
+
}
|
EmbedPress/Disabler.php
CHANGED
|
@@ -12,14 +12,16 @@ use \EmbedPress\Shortcode;
|
|
| 12 |
* @author PressShack <help@pressshack.com>
|
| 13 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 14 |
* @license GPLv2 or later
|
| 15 |
-
* @since 1.0
|
| 16 |
*/
|
| 17 |
class Disabler
|
| 18 |
{
|
| 19 |
/**
|
| 20 |
* Method that replaces the embed shortcodes.
|
| 21 |
*
|
| 22 |
-
* @since
|
|
|
|
|
|
|
| 23 |
*/
|
| 24 |
public function run()
|
| 25 |
{
|
|
@@ -31,8 +33,11 @@ class Disabler
|
|
| 31 |
/**
|
| 32 |
* Disable all actions/filters related to the embed. This is required to make sure our "shortcode" overrides the WordPress one.
|
| 33 |
*
|
| 34 |
-
* @since 1.0
|
|
|
|
| 35 |
* @static
|
|
|
|
|
|
|
| 36 |
*/
|
| 37 |
protected static function disableNativeEmbedHooks()
|
| 38 |
{
|
|
@@ -90,7 +95,8 @@ class Disabler
|
|
| 90 |
/**
|
| 91 |
* Remove all rewrite rules related to embeds.
|
| 92 |
*
|
| 93 |
-
* @since 1.0
|
|
|
|
| 94 |
*
|
| 95 |
* @param array $rules WordPress rewrite rules.
|
| 96 |
* @return array
|
|
@@ -111,10 +117,11 @@ class Disabler
|
|
| 111 |
/**
|
| 112 |
* Disable all TinyMCE plugins related to the embed.
|
| 113 |
*
|
| 114 |
-
* @since 1.0
|
| 115 |
* @static
|
| 116 |
*
|
| 117 |
* @param array $plugins An array containing enabled plugins.
|
|
|
|
| 118 |
*/
|
| 119 |
public static function disableDefaultEmbedTinyMCERelatedPlugins($plugins)
|
| 120 |
{
|
|
@@ -122,4 +129,4 @@ class Disabler
|
|
| 122 |
|
| 123 |
return array_diff($plugins, $blackListedPlugins);
|
| 124 |
}
|
| 125 |
-
}
|
| 12 |
* @author PressShack <help@pressshack.com>
|
| 13 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 14 |
* @license GPLv2 or later
|
| 15 |
+
* @since 1.0.0
|
| 16 |
*/
|
| 17 |
class Disabler
|
| 18 |
{
|
| 19 |
/**
|
| 20 |
* Method that replaces the embed shortcodes.
|
| 21 |
*
|
| 22 |
+
* @since 1.0.0
|
| 23 |
+
*
|
| 24 |
+
* @return void
|
| 25 |
*/
|
| 26 |
public function run()
|
| 27 |
{
|
| 33 |
/**
|
| 34 |
* Disable all actions/filters related to the embed. This is required to make sure our "shortcode" overrides the WordPress one.
|
| 35 |
*
|
| 36 |
+
* @since 1.0.0
|
| 37 |
+
* @access protected
|
| 38 |
* @static
|
| 39 |
+
*
|
| 40 |
+
* @return void
|
| 41 |
*/
|
| 42 |
protected static function disableNativeEmbedHooks()
|
| 43 |
{
|
| 95 |
/**
|
| 96 |
* Remove all rewrite rules related to embeds.
|
| 97 |
*
|
| 98 |
+
* @since 1.0.0
|
| 99 |
+
* @static
|
| 100 |
*
|
| 101 |
* @param array $rules WordPress rewrite rules.
|
| 102 |
* @return array
|
| 117 |
/**
|
| 118 |
* Disable all TinyMCE plugins related to the embed.
|
| 119 |
*
|
| 120 |
+
* @since 1.0.0
|
| 121 |
* @static
|
| 122 |
*
|
| 123 |
* @param array $plugins An array containing enabled plugins.
|
| 124 |
+
* @return array
|
| 125 |
*/
|
| 126 |
public static function disableDefaultEmbedTinyMCERelatedPlugins($plugins)
|
| 127 |
{
|
| 129 |
|
| 130 |
return array_diff($plugins, $blackListedPlugins);
|
| 131 |
}
|
| 132 |
+
}
|
EmbedPress/Ends/Back/Handler.php
CHANGED
|
@@ -17,14 +17,16 @@ use \Embera\Embera;
|
|
| 17 |
* @author PressShack <help@pressshack.com>
|
| 18 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 19 |
* @license GPLv2 or later
|
| 20 |
-
* @since 1.0
|
| 21 |
*/
|
| 22 |
class Handler extends EndHandlerAbstract
|
| 23 |
{
|
| 24 |
/**
|
| 25 |
* Method that register all scripts for the admin area.
|
| 26 |
*
|
| 27 |
-
* @since
|
|
|
|
|
|
|
| 28 |
*/
|
| 29 |
public function enqueueScripts()
|
| 30 |
{
|
|
@@ -48,7 +50,9 @@ class Handler extends EndHandlerAbstract
|
|
| 48 |
/**
|
| 49 |
* Method that register all stylesheets for the admin area.
|
| 50 |
*
|
| 51 |
-
* @since
|
|
|
|
|
|
|
| 52 |
*/
|
| 53 |
public function enqueueStyles()
|
| 54 |
{
|
|
@@ -61,7 +65,9 @@ class Handler extends EndHandlerAbstract
|
|
| 61 |
/**
|
| 62 |
* Method that receive a string via AJAX and return the decoded-shortcoded-version of that string.
|
| 63 |
*
|
| 64 |
-
* @since
|
|
|
|
|
|
|
| 65 |
*/
|
| 66 |
public function doShortcodeReceivedViaAjax()
|
| 67 |
{
|
|
@@ -80,7 +86,9 @@ class Handler extends EndHandlerAbstract
|
|
| 80 |
/**
|
| 81 |
* Method that receive an url via AJAX and return the info about that url/embed.
|
| 82 |
*
|
| 83 |
-
* @since
|
|
|
|
|
|
|
| 84 |
*/
|
| 85 |
public function getUrlInfoViaAjax()
|
| 86 |
{
|
|
@@ -111,4 +119,4 @@ class Handler extends EndHandlerAbstract
|
|
| 111 |
|
| 112 |
exit();
|
| 113 |
}
|
| 114 |
-
}
|
| 17 |
* @author PressShack <help@pressshack.com>
|
| 18 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 19 |
* @license GPLv2 or later
|
| 20 |
+
* @since 1.0.0
|
| 21 |
*/
|
| 22 |
class Handler extends EndHandlerAbstract
|
| 23 |
{
|
| 24 |
/**
|
| 25 |
* Method that register all scripts for the admin area.
|
| 26 |
*
|
| 27 |
+
* @since 1.0.0
|
| 28 |
+
*
|
| 29 |
+
* @return void
|
| 30 |
*/
|
| 31 |
public function enqueueScripts()
|
| 32 |
{
|
| 50 |
/**
|
| 51 |
* Method that register all stylesheets for the admin area.
|
| 52 |
*
|
| 53 |
+
* @since 1.0.0
|
| 54 |
+
*
|
| 55 |
+
* @return void
|
| 56 |
*/
|
| 57 |
public function enqueueStyles()
|
| 58 |
{
|
| 65 |
/**
|
| 66 |
* Method that receive a string via AJAX and return the decoded-shortcoded-version of that string.
|
| 67 |
*
|
| 68 |
+
* @since 1.0.0
|
| 69 |
+
*
|
| 70 |
+
* @return void
|
| 71 |
*/
|
| 72 |
public function doShortcodeReceivedViaAjax()
|
| 73 |
{
|
| 86 |
/**
|
| 87 |
* Method that receive an url via AJAX and return the info about that url/embed.
|
| 88 |
*
|
| 89 |
+
* @since 1.0.0
|
| 90 |
+
*
|
| 91 |
+
* @return void
|
| 92 |
*/
|
| 93 |
public function getUrlInfoViaAjax()
|
| 94 |
{
|
| 119 |
|
| 120 |
exit();
|
| 121 |
}
|
| 122 |
+
}
|
EmbedPress/Ends/Back/Settings.php
CHANGED
|
@@ -13,14 +13,14 @@ use \EmbedPress\Plugin;
|
|
| 13 |
* @author PressShack <help@pressshack.com>
|
| 14 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 15 |
* @license GPLv2 or later
|
| 16 |
-
* @since 1.0
|
| 17 |
*/
|
| 18 |
class Settings
|
| 19 |
{
|
| 20 |
/**
|
| 21 |
* This class namespace.
|
| 22 |
*
|
| 23 |
-
* @since 1.0
|
| 24 |
* @access private
|
| 25 |
* @static
|
| 26 |
*
|
|
@@ -31,7 +31,7 @@ class Settings
|
|
| 31 |
/**
|
| 32 |
* The plugin's unique identifier.
|
| 33 |
*
|
| 34 |
-
* @since 1.0
|
| 35 |
* @access private
|
| 36 |
* @static
|
| 37 |
*
|
|
@@ -42,7 +42,7 @@ class Settings
|
|
| 42 |
/**
|
| 43 |
* Unique identifier to the plugin's admin settings section.
|
| 44 |
*
|
| 45 |
-
* @since 1.0
|
| 46 |
* @access private
|
| 47 |
* @static
|
| 48 |
*
|
|
@@ -53,7 +53,7 @@ class Settings
|
|
| 53 |
/**
|
| 54 |
* Unique identifier to the plugin's general settings section.
|
| 55 |
*
|
| 56 |
-
* @since 1.0
|
| 57 |
* @access private
|
| 58 |
* @static
|
| 59 |
*
|
|
@@ -64,7 +64,7 @@ class Settings
|
|
| 64 |
/**
|
| 65 |
* Map to all settings.
|
| 66 |
*
|
| 67 |
-
* @since 1.0
|
| 68 |
* @access private
|
| 69 |
* @static
|
| 70 |
*
|
|
@@ -84,7 +84,7 @@ class Settings
|
|
| 84 |
/**
|
| 85 |
* Class constructor. This prevents the class being directly instantiated.
|
| 86 |
*
|
| 87 |
-
* @since 1.0
|
| 88 |
*/
|
| 89 |
public function __construct()
|
| 90 |
{}
|
|
@@ -92,7 +92,7 @@ class Settings
|
|
| 92 |
/**
|
| 93 |
* This prevents the class being cloned.
|
| 94 |
*
|
| 95 |
-
* @since 1.0
|
| 96 |
*/
|
| 97 |
public function __clone()
|
| 98 |
{}
|
|
@@ -100,7 +100,7 @@ class Settings
|
|
| 100 |
/**
|
| 101 |
* Method that adds an sub-item for EmbedPress to the WordPress Settings menu.
|
| 102 |
*
|
| 103 |
-
* @since 1.0
|
| 104 |
* @static
|
| 105 |
*/
|
| 106 |
public static function registerMenuItem()
|
|
@@ -111,7 +111,7 @@ class Settings
|
|
| 111 |
/**
|
| 112 |
* Method that configures the EmbedPress settings page.
|
| 113 |
*
|
| 114 |
-
* @since 1.0
|
| 115 |
* @static
|
| 116 |
*/
|
| 117 |
public static function registerActions()
|
|
@@ -128,7 +128,7 @@ class Settings
|
|
| 128 |
/**
|
| 129 |
* Method that render the settings's form.
|
| 130 |
*
|
| 131 |
-
* @since 1.0
|
| 132 |
* @static
|
| 133 |
*/
|
| 134 |
public static function renderForm()
|
|
@@ -149,7 +149,7 @@ class Settings
|
|
| 149 |
/**
|
| 150 |
* Method that validates the form data.
|
| 151 |
*
|
| 152 |
-
* @since 1.0
|
| 153 |
* @static
|
| 154 |
*
|
| 155 |
* @param mixed $freshData Data received from the form.
|
|
@@ -169,7 +169,7 @@ class Settings
|
|
| 169 |
/**
|
| 170 |
* Method that prints help info for the form.
|
| 171 |
*
|
| 172 |
-
* @since 1.0
|
| 173 |
* @static
|
| 174 |
*
|
| 175 |
* @return string
|
|
@@ -182,7 +182,7 @@ class Settings
|
|
| 182 |
/**
|
| 183 |
* Method that renders the displayPreviewBox input.
|
| 184 |
*
|
| 185 |
-
* @since 1.0
|
| 186 |
* @static
|
| 187 |
*/
|
| 188 |
public static function renderField_displayPreviewBox()
|
|
@@ -207,7 +207,7 @@ class Settings
|
|
| 207 |
/**
|
| 208 |
* Method that renders the enablePluginInAdmin input.
|
| 209 |
*
|
| 210 |
-
* @since 1.0
|
| 211 |
* @static
|
| 212 |
*/
|
| 213 |
public static function renderField_enablePluginInAdmin()
|
|
@@ -222,4 +222,4 @@ class Settings
|
|
| 222 |
echo " ";
|
| 223 |
echo '<label><input type="radio" id="'. $fieldName .'_1" name="'. self::$sectionGroupIdentifier .'['. $fieldName .']" value="1" '. ($options[$fieldName] ? "checked" : "") .' /> Yes</label>';
|
| 224 |
}
|
| 225 |
-
}
|
| 13 |
* @author PressShack <help@pressshack.com>
|
| 14 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 15 |
* @license GPLv2 or later
|
| 16 |
+
* @since 1.0.0
|
| 17 |
*/
|
| 18 |
class Settings
|
| 19 |
{
|
| 20 |
/**
|
| 21 |
* This class namespace.
|
| 22 |
*
|
| 23 |
+
* @since 1.0.0
|
| 24 |
* @access private
|
| 25 |
* @static
|
| 26 |
*
|
| 31 |
/**
|
| 32 |
* The plugin's unique identifier.
|
| 33 |
*
|
| 34 |
+
* @since 1.0.0
|
| 35 |
* @access private
|
| 36 |
* @static
|
| 37 |
*
|
| 42 |
/**
|
| 43 |
* Unique identifier to the plugin's admin settings section.
|
| 44 |
*
|
| 45 |
+
* @since 1.0.0
|
| 46 |
* @access private
|
| 47 |
* @static
|
| 48 |
*
|
| 53 |
/**
|
| 54 |
* Unique identifier to the plugin's general settings section.
|
| 55 |
*
|
| 56 |
+
* @since 1.0.0
|
| 57 |
* @access private
|
| 58 |
* @static
|
| 59 |
*
|
| 64 |
/**
|
| 65 |
* Map to all settings.
|
| 66 |
*
|
| 67 |
+
* @since 1.0.0
|
| 68 |
* @access private
|
| 69 |
* @static
|
| 70 |
*
|
| 84 |
/**
|
| 85 |
* Class constructor. This prevents the class being directly instantiated.
|
| 86 |
*
|
| 87 |
+
* @since 1.0.0
|
| 88 |
*/
|
| 89 |
public function __construct()
|
| 90 |
{}
|
| 92 |
/**
|
| 93 |
* This prevents the class being cloned.
|
| 94 |
*
|
| 95 |
+
* @since 1.0.0
|
| 96 |
*/
|
| 97 |
public function __clone()
|
| 98 |
{}
|
| 100 |
/**
|
| 101 |
* Method that adds an sub-item for EmbedPress to the WordPress Settings menu.
|
| 102 |
*
|
| 103 |
+
* @since 1.0.0
|
| 104 |
* @static
|
| 105 |
*/
|
| 106 |
public static function registerMenuItem()
|
| 111 |
/**
|
| 112 |
* Method that configures the EmbedPress settings page.
|
| 113 |
*
|
| 114 |
+
* @since 1.0.0
|
| 115 |
* @static
|
| 116 |
*/
|
| 117 |
public static function registerActions()
|
| 128 |
/**
|
| 129 |
* Method that render the settings's form.
|
| 130 |
*
|
| 131 |
+
* @since 1.0.0
|
| 132 |
* @static
|
| 133 |
*/
|
| 134 |
public static function renderForm()
|
| 149 |
/**
|
| 150 |
* Method that validates the form data.
|
| 151 |
*
|
| 152 |
+
* @since 1.0.0
|
| 153 |
* @static
|
| 154 |
*
|
| 155 |
* @param mixed $freshData Data received from the form.
|
| 169 |
/**
|
| 170 |
* Method that prints help info for the form.
|
| 171 |
*
|
| 172 |
+
* @since 1.0.0
|
| 173 |
* @static
|
| 174 |
*
|
| 175 |
* @return string
|
| 182 |
/**
|
| 183 |
* Method that renders the displayPreviewBox input.
|
| 184 |
*
|
| 185 |
+
* @since 1.0.0
|
| 186 |
* @static
|
| 187 |
*/
|
| 188 |
public static function renderField_displayPreviewBox()
|
| 207 |
/**
|
| 208 |
* Method that renders the enablePluginInAdmin input.
|
| 209 |
*
|
| 210 |
+
* @since 1.0.0
|
| 211 |
* @static
|
| 212 |
*/
|
| 213 |
public static function renderField_enablePluginInAdmin()
|
| 222 |
echo " ";
|
| 223 |
echo '<label><input type="radio" id="'. $fieldName .'_1" name="'. self::$sectionGroupIdentifier .'['. $fieldName .']" value="1" '. ($options[$fieldName] ? "checked" : "") .' /> Yes</label>';
|
| 224 |
}
|
| 225 |
+
}
|
EmbedPress/Ends/Front/Handler.php
CHANGED
|
@@ -14,14 +14,16 @@ use \EmbedPress\Ends\Handler as EndHandlerAbstract;
|
|
| 14 |
* @author PressShack <help@pressshack.com>
|
| 15 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 16 |
* @license GPLv2 or later
|
| 17 |
-
* @since 1.0
|
| 18 |
*/
|
| 19 |
class Handler extends EndHandlerAbstract
|
| 20 |
{
|
| 21 |
/**
|
| 22 |
* Method that register all scripts for the admin area.
|
| 23 |
*
|
| 24 |
-
* @since
|
|
|
|
|
|
|
| 25 |
*/
|
| 26 |
public function enqueueScripts()
|
| 27 |
{}
|
|
@@ -29,11 +31,12 @@ class Handler extends EndHandlerAbstract
|
|
| 29 |
/**
|
| 30 |
* Method that register all stylesheets for the public area.
|
| 31 |
*
|
| 32 |
-
* @since
|
|
|
|
|
|
|
| 33 |
*/
|
| 34 |
public function enqueueStyles()
|
| 35 |
{
|
| 36 |
wp_enqueue_style(EMBEDPRESS_NAME, EMBEDPRESS_URL_ASSETS .'css/embedpress.css');
|
| 37 |
-
|
| 38 |
}
|
| 39 |
-
}
|
| 14 |
* @author PressShack <help@pressshack.com>
|
| 15 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 16 |
* @license GPLv2 or later
|
| 17 |
+
* @since 1.0.0
|
| 18 |
*/
|
| 19 |
class Handler extends EndHandlerAbstract
|
| 20 |
{
|
| 21 |
/**
|
| 22 |
* Method that register all scripts for the admin area.
|
| 23 |
*
|
| 24 |
+
* @since 1.0.0
|
| 25 |
+
*
|
| 26 |
+
* @return void
|
| 27 |
*/
|
| 28 |
public function enqueueScripts()
|
| 29 |
{}
|
| 31 |
/**
|
| 32 |
* Method that register all stylesheets for the public area.
|
| 33 |
*
|
| 34 |
+
* @since 1.0.0
|
| 35 |
+
*
|
| 36 |
+
* @return void
|
| 37 |
*/
|
| 38 |
public function enqueueStyles()
|
| 39 |
{
|
| 40 |
wp_enqueue_style(EMBEDPRESS_NAME, EMBEDPRESS_URL_ASSETS .'css/embedpress.css');
|
|
|
|
| 41 |
}
|
| 42 |
+
}
|
EmbedPress/Ends/Handler.php
CHANGED
|
@@ -11,14 +11,14 @@ namespace EmbedPress\Ends;
|
|
| 11 |
* @author PressShack <help@pressshack.com>
|
| 12 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 13 |
* @license GPLv2 or later
|
| 14 |
-
* @since 1.0
|
| 15 |
*/
|
| 16 |
abstract class Handler
|
| 17 |
{
|
| 18 |
/**
|
| 19 |
* The name of the plugin.
|
| 20 |
*
|
| 21 |
-
* @since 1.0
|
| 22 |
* @access private
|
| 23 |
*
|
| 24 |
* @var string $pluginName The name of the plugin.
|
|
@@ -28,7 +28,7 @@ abstract class Handler
|
|
| 28 |
/**
|
| 29 |
* The version of the plugin.
|
| 30 |
*
|
| 31 |
-
* @since 1.0
|
| 32 |
* @access private
|
| 33 |
*
|
| 34 |
* @var string $pluginVersion The version of the plugin.
|
|
@@ -38,10 +38,11 @@ abstract class Handler
|
|
| 38 |
/**
|
| 39 |
* Initialize the class and set its properties.
|
| 40 |
*
|
| 41 |
-
* @since 1.0
|
| 42 |
*
|
| 43 |
* @param string $pluginName - The name of the plugin.
|
| 44 |
* @param string $pluginVersion - The version of the plugin.
|
|
|
|
| 45 |
*/
|
| 46 |
public function __construct($pluginName, $pluginVersion)
|
| 47 |
{
|
|
@@ -52,14 +53,20 @@ abstract class Handler
|
|
| 52 |
/**
|
| 53 |
* Method that register all scripts for the admin area.
|
| 54 |
*
|
| 55 |
-
* @since
|
|
|
|
|
|
|
|
|
|
| 56 |
*/
|
| 57 |
abstract public function enqueueScripts();
|
| 58 |
|
| 59 |
/**
|
| 60 |
* Method that register all stylesheets for the admin area.
|
| 61 |
*
|
| 62 |
-
* @since
|
|
|
|
|
|
|
|
|
|
| 63 |
*/
|
| 64 |
abstract public function enqueueStyles();
|
| 65 |
-
}
|
| 11 |
* @author PressShack <help@pressshack.com>
|
| 12 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 13 |
* @license GPLv2 or later
|
| 14 |
+
* @since 1.0.0
|
| 15 |
*/
|
| 16 |
abstract class Handler
|
| 17 |
{
|
| 18 |
/**
|
| 19 |
* The name of the plugin.
|
| 20 |
*
|
| 21 |
+
* @since 1.0.0
|
| 22 |
* @access private
|
| 23 |
*
|
| 24 |
* @var string $pluginName The name of the plugin.
|
| 28 |
/**
|
| 29 |
* The version of the plugin.
|
| 30 |
*
|
| 31 |
+
* @since 1.0.0
|
| 32 |
* @access private
|
| 33 |
*
|
| 34 |
* @var string $pluginVersion The version of the plugin.
|
| 38 |
/**
|
| 39 |
* Initialize the class and set its properties.
|
| 40 |
*
|
| 41 |
+
* @since 1.0.0
|
| 42 |
*
|
| 43 |
* @param string $pluginName - The name of the plugin.
|
| 44 |
* @param string $pluginVersion - The version of the plugin.
|
| 45 |
+
* @return void
|
| 46 |
*/
|
| 47 |
public function __construct($pluginName, $pluginVersion)
|
| 48 |
{
|
| 53 |
/**
|
| 54 |
* Method that register all scripts for the admin area.
|
| 55 |
*
|
| 56 |
+
* @since 1.0.0
|
| 57 |
+
* @abstract
|
| 58 |
+
*
|
| 59 |
+
* @return void
|
| 60 |
*/
|
| 61 |
abstract public function enqueueScripts();
|
| 62 |
|
| 63 |
/**
|
| 64 |
* Method that register all stylesheets for the admin area.
|
| 65 |
*
|
| 66 |
+
* @since 1.0.0
|
| 67 |
+
* @abstract
|
| 68 |
+
*
|
| 69 |
+
* @return void
|
| 70 |
*/
|
| 71 |
abstract public function enqueueStyles();
|
| 72 |
+
}
|
EmbedPress/Loader.php
CHANGED
|
@@ -10,14 +10,14 @@ namespace EmbedPress;
|
|
| 10 |
* @author PressShack <help@pressshack.com>
|
| 11 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 12 |
* @license GPLv2 or later
|
| 13 |
-
* @since 1.0
|
| 14 |
*/
|
| 15 |
class Loader
|
| 16 |
{
|
| 17 |
/**
|
| 18 |
* The array of actions registered with WordPress.
|
| 19 |
*
|
| 20 |
-
* @since 1.0
|
| 21 |
* @access protected
|
| 22 |
*
|
| 23 |
* @var array $actions The actions registered with WordPress to fire when the plugin loads.
|
|
@@ -27,7 +27,7 @@ class Loader
|
|
| 27 |
/**
|
| 28 |
* The array of filters registered with WordPress.
|
| 29 |
*
|
| 30 |
-
* @since 1.0
|
| 31 |
* @access protected
|
| 32 |
*
|
| 33 |
* @var array $filters The filters registered with WordPress to fire when the plugin loads.
|
|
@@ -37,7 +37,9 @@ class Loader
|
|
| 37 |
/**
|
| 38 |
* Initialize the collections used to maintain the actions and filters.
|
| 39 |
*
|
| 40 |
-
* @since
|
|
|
|
|
|
|
| 41 |
*/
|
| 42 |
public function __construct()
|
| 43 |
{
|
|
@@ -48,13 +50,14 @@ class Loader
|
|
| 48 |
/**
|
| 49 |
* Add a new action to the collection to be registered with WordPress.
|
| 50 |
*
|
| 51 |
-
* @since
|
| 52 |
*
|
| 53 |
-
* @param
|
| 54 |
-
* @param
|
| 55 |
-
* @param
|
| 56 |
-
* @param
|
| 57 |
-
* @param
|
|
|
|
| 58 |
*/
|
| 59 |
public function add_action($hook, $component, $callback, $priority = 10, $accepted_args = 1)
|
| 60 |
{
|
|
@@ -64,13 +67,14 @@ class Loader
|
|
| 64 |
/**
|
| 65 |
* Add a new filter to the collection to be registered with WordPress.
|
| 66 |
*
|
| 67 |
-
* @since
|
| 68 |
*
|
| 69 |
-
* @param
|
| 70 |
-
* @param
|
| 71 |
-
* @param
|
| 72 |
-
* @param
|
| 73 |
-
* @param
|
|
|
|
| 74 |
*/
|
| 75 |
public function add_filter($hook, $component, $callback, $priority = 10, $accepted_args = 1)
|
| 76 |
{
|
|
@@ -80,8 +84,8 @@ class Loader
|
|
| 80 |
/**
|
| 81 |
* Method that is used to register the actions and hooks into a single collection.
|
| 82 |
*
|
| 83 |
-
* @since
|
| 84 |
-
* @access
|
| 85 |
*
|
| 86 |
* @param array $hooks The collection of hooks that is being registered (that is, actions or filters).
|
| 87 |
* @param string $hook The name of the WordPress filter that is being registered.
|
|
@@ -107,7 +111,9 @@ class Loader
|
|
| 107 |
/**
|
| 108 |
* Register all required filters and actions with WordPress.
|
| 109 |
*
|
| 110 |
-
* @since
|
|
|
|
|
|
|
| 111 |
*/
|
| 112 |
public function run()
|
| 113 |
{
|
|
@@ -123,4 +129,4 @@ class Loader
|
|
| 123 |
), $hook['priority'], $hook['accepted_args']);
|
| 124 |
}
|
| 125 |
}
|
| 126 |
-
}
|
| 10 |
* @author PressShack <help@pressshack.com>
|
| 11 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 12 |
* @license GPLv2 or later
|
| 13 |
+
* @since 1.0.0
|
| 14 |
*/
|
| 15 |
class Loader
|
| 16 |
{
|
| 17 |
/**
|
| 18 |
* The array of actions registered with WordPress.
|
| 19 |
*
|
| 20 |
+
* @since 1.0.0
|
| 21 |
* @access protected
|
| 22 |
*
|
| 23 |
* @var array $actions The actions registered with WordPress to fire when the plugin loads.
|
| 27 |
/**
|
| 28 |
* The array of filters registered with WordPress.
|
| 29 |
*
|
| 30 |
+
* @since 1.0.0
|
| 31 |
* @access protected
|
| 32 |
*
|
| 33 |
* @var array $filters The filters registered with WordPress to fire when the plugin loads.
|
| 37 |
/**
|
| 38 |
* Initialize the collections used to maintain the actions and filters.
|
| 39 |
*
|
| 40 |
+
* @since 1.0.0
|
| 41 |
+
*
|
| 42 |
+
* @return void
|
| 43 |
*/
|
| 44 |
public function __construct()
|
| 45 |
{
|
| 50 |
/**
|
| 51 |
* Add a new action to the collection to be registered with WordPress.
|
| 52 |
*
|
| 53 |
+
* @since 1.0.0
|
| 54 |
*
|
| 55 |
+
* @param string $hook The name of the WordPress action that is being registered.
|
| 56 |
+
* @param object $component A reference to the instance of the object on which the action is defined.
|
| 57 |
+
* @param string $callback The name of the function definition on the $component.
|
| 58 |
+
* @param int $priority Optional. he priority at which the function should be fired. Default is 10.
|
| 59 |
+
* @param int $accepted_args Optional. The number of arguments that should be passed to the $callback. Default is 1.
|
| 60 |
+
* @return void
|
| 61 |
*/
|
| 62 |
public function add_action($hook, $component, $callback, $priority = 10, $accepted_args = 1)
|
| 63 |
{
|
| 67 |
/**
|
| 68 |
* Add a new filter to the collection to be registered with WordPress.
|
| 69 |
*
|
| 70 |
+
* @since 1.0.0
|
| 71 |
*
|
| 72 |
+
* @param string $hook The name of the WordPress filter that is being registered.
|
| 73 |
+
* @param object $component A reference to the instance of the object on which the filter is defined.
|
| 74 |
+
* @param string $callback The name of the function definition on the $component.
|
| 75 |
+
* @param int $priority Optional. he priority at which the function should be fired. Default is 10.
|
| 76 |
+
* @param int $accepted_args Optional. The number of arguments that should be passed to the $callback. Default is 1.
|
| 77 |
+
* @return void
|
| 78 |
*/
|
| 79 |
public function add_filter($hook, $component, $callback, $priority = 10, $accepted_args = 1)
|
| 80 |
{
|
| 84 |
/**
|
| 85 |
* Method that is used to register the actions and hooks into a single collection.
|
| 86 |
*
|
| 87 |
+
* @since 1.0.0
|
| 88 |
+
* @access private
|
| 89 |
*
|
| 90 |
* @param array $hooks The collection of hooks that is being registered (that is, actions or filters).
|
| 91 |
* @param string $hook The name of the WordPress filter that is being registered.
|
| 111 |
/**
|
| 112 |
* Register all required filters and actions with WordPress.
|
| 113 |
*
|
| 114 |
+
* @since 1.0.0
|
| 115 |
+
*
|
| 116 |
+
* @return void
|
| 117 |
*/
|
| 118 |
public function run()
|
| 119 |
{
|
| 129 |
), $hook['priority'], $hook['accepted_args']);
|
| 130 |
}
|
| 131 |
}
|
| 132 |
+
}
|
EmbedPress/Plugin.php
CHANGED
|
@@ -14,14 +14,14 @@ use \EmbedPress\Ends\Front\Handler as EndHandlerPublic;
|
|
| 14 |
* @author PressShack <help@pressshack.com>
|
| 15 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 16 |
* @license GPLv2 or later
|
| 17 |
-
* @since 1.0
|
| 18 |
*/
|
| 19 |
class Plugin
|
| 20 |
{
|
| 21 |
/**
|
| 22 |
* The name of the plugin.
|
| 23 |
*
|
| 24 |
-
* @since 1.0
|
| 25 |
* @access protected
|
| 26 |
*
|
| 27 |
* @var string $pluginName The name of the plugin.
|
|
@@ -31,7 +31,7 @@ class Plugin
|
|
| 31 |
/**
|
| 32 |
* The version of the plugin.
|
| 33 |
*
|
| 34 |
-
* @since 1.0
|
| 35 |
* @access protected
|
| 36 |
*
|
| 37 |
* @var string $pluginVersion The version of the plugin.
|
|
@@ -41,7 +41,7 @@ class Plugin
|
|
| 41 |
/**
|
| 42 |
* An instance of the plugin loader.
|
| 43 |
*
|
| 44 |
-
* @since 1.0
|
| 45 |
* @access protected
|
| 46 |
*
|
| 47 |
* @var \EmbedPress\Loader $pluginVersion The version of the plugin.
|
|
@@ -51,7 +51,9 @@ class Plugin
|
|
| 51 |
/**
|
| 52 |
* Initialize the plugin and set its properties.
|
| 53 |
*
|
| 54 |
-
* @since 1.0
|
|
|
|
|
|
|
| 55 |
*/
|
| 56 |
public function __construct()
|
| 57 |
{
|
|
@@ -64,7 +66,7 @@ class Plugin
|
|
| 64 |
/**
|
| 65 |
* Method that retrieves the plugin name.
|
| 66 |
*
|
| 67 |
-
* @since 1.0
|
| 68 |
*
|
| 69 |
* @return string
|
| 70 |
*/
|
|
@@ -76,7 +78,7 @@ class Plugin
|
|
| 76 |
/**
|
| 77 |
* Method that retrieves the plugin version.
|
| 78 |
*
|
| 79 |
-
* @since 1.0
|
| 80 |
*
|
| 81 |
* @return string
|
| 82 |
*/
|
|
@@ -88,7 +90,7 @@ class Plugin
|
|
| 88 |
/**
|
| 89 |
* Method that retrieves the loader instance.
|
| 90 |
*
|
| 91 |
-
* @since 1.0
|
| 92 |
*
|
| 93 |
* @return \EmbedPress\Loader
|
| 94 |
*/
|
|
@@ -100,7 +102,9 @@ class Plugin
|
|
| 100 |
/**
|
| 101 |
* Method responsible to connect all required hooks in order to make the plugin work.
|
| 102 |
*
|
| 103 |
-
* @since 1.0
|
|
|
|
|
|
|
| 104 |
*/
|
| 105 |
public function initialize()
|
| 106 |
{
|
|
@@ -149,7 +153,10 @@ class Plugin
|
|
| 149 |
/**
|
| 150 |
* Callback called right after the plugin has been activated.
|
| 151 |
*
|
| 152 |
-
* @since 1.0
|
|
|
|
|
|
|
|
|
|
| 153 |
*/
|
| 154 |
public static function onPluginActivationCallback()
|
| 155 |
{
|
|
@@ -160,7 +167,10 @@ class Plugin
|
|
| 160 |
/**
|
| 161 |
* Callback called right after the plugin has been deactivated.
|
| 162 |
*
|
| 163 |
-
* @since 1.0
|
|
|
|
|
|
|
|
|
|
| 164 |
*/
|
| 165 |
public static function onPluginDeactivationCallback()
|
| 166 |
{
|
|
@@ -171,7 +181,8 @@ class Plugin
|
|
| 171 |
/**
|
| 172 |
* Method that retrieves all additional service providers defined in the ~<plugin_root_path>/providers.php file.
|
| 173 |
*
|
| 174 |
-
* @since 1.0
|
|
|
|
| 175 |
*
|
| 176 |
* @return array
|
| 177 |
*/
|
|
@@ -192,7 +203,8 @@ class Plugin
|
|
| 192 |
/**
|
| 193 |
* Method that checks if an embed of a given service provider can be responsive.
|
| 194 |
*
|
| 195 |
-
* @since 1.0
|
|
|
|
| 196 |
*
|
| 197 |
* @return boolean
|
| 198 |
*/
|
|
@@ -204,7 +216,8 @@ class Plugin
|
|
| 204 |
/**
|
| 205 |
* Method that retrieves the plugin settings defined by the user.
|
| 206 |
*
|
| 207 |
-
* @since 1.0
|
|
|
|
| 208 |
*
|
| 209 |
* @return object
|
| 210 |
*/
|
| 14 |
* @author PressShack <help@pressshack.com>
|
| 15 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 16 |
* @license GPLv2 or later
|
| 17 |
+
* @since 1.0.0
|
| 18 |
*/
|
| 19 |
class Plugin
|
| 20 |
{
|
| 21 |
/**
|
| 22 |
* The name of the plugin.
|
| 23 |
*
|
| 24 |
+
* @since 1.0.0
|
| 25 |
* @access protected
|
| 26 |
*
|
| 27 |
* @var string $pluginName The name of the plugin.
|
| 31 |
/**
|
| 32 |
* The version of the plugin.
|
| 33 |
*
|
| 34 |
+
* @since 1.0.0
|
| 35 |
* @access protected
|
| 36 |
*
|
| 37 |
* @var string $pluginVersion The version of the plugin.
|
| 41 |
/**
|
| 42 |
* An instance of the plugin loader.
|
| 43 |
*
|
| 44 |
+
* @since 1.0.0
|
| 45 |
* @access protected
|
| 46 |
*
|
| 47 |
* @var \EmbedPress\Loader $pluginVersion The version of the plugin.
|
| 51 |
/**
|
| 52 |
* Initialize the plugin and set its properties.
|
| 53 |
*
|
| 54 |
+
* @since 1.0.0
|
| 55 |
+
*
|
| 56 |
+
* @return void
|
| 57 |
*/
|
| 58 |
public function __construct()
|
| 59 |
{
|
| 66 |
/**
|
| 67 |
* Method that retrieves the plugin name.
|
| 68 |
*
|
| 69 |
+
* @since 1.0.0
|
| 70 |
*
|
| 71 |
* @return string
|
| 72 |
*/
|
| 78 |
/**
|
| 79 |
* Method that retrieves the plugin version.
|
| 80 |
*
|
| 81 |
+
* @since 1.0.0
|
| 82 |
*
|
| 83 |
* @return string
|
| 84 |
*/
|
| 90 |
/**
|
| 91 |
* Method that retrieves the loader instance.
|
| 92 |
*
|
| 93 |
+
* @since 1.0.0
|
| 94 |
*
|
| 95 |
* @return \EmbedPress\Loader
|
| 96 |
*/
|
| 102 |
/**
|
| 103 |
* Method responsible to connect all required hooks in order to make the plugin work.
|
| 104 |
*
|
| 105 |
+
* @since 1.0.0
|
| 106 |
+
*
|
| 107 |
+
* @return void
|
| 108 |
*/
|
| 109 |
public function initialize()
|
| 110 |
{
|
| 153 |
/**
|
| 154 |
* Callback called right after the plugin has been activated.
|
| 155 |
*
|
| 156 |
+
* @since 1.0.0
|
| 157 |
+
* @static
|
| 158 |
+
*
|
| 159 |
+
* @return void
|
| 160 |
*/
|
| 161 |
public static function onPluginActivationCallback()
|
| 162 |
{
|
| 167 |
/**
|
| 168 |
* Callback called right after the plugin has been deactivated.
|
| 169 |
*
|
| 170 |
+
* @since 1.0.0
|
| 171 |
+
* @static
|
| 172 |
+
*
|
| 173 |
+
* @return void
|
| 174 |
*/
|
| 175 |
public static function onPluginDeactivationCallback()
|
| 176 |
{
|
| 181 |
/**
|
| 182 |
* Method that retrieves all additional service providers defined in the ~<plugin_root_path>/providers.php file.
|
| 183 |
*
|
| 184 |
+
* @since 1.0.0
|
| 185 |
+
* @static
|
| 186 |
*
|
| 187 |
* @return array
|
| 188 |
*/
|
| 203 |
/**
|
| 204 |
* Method that checks if an embed of a given service provider can be responsive.
|
| 205 |
*
|
| 206 |
+
* @since 1.0.0
|
| 207 |
+
* @static
|
| 208 |
*
|
| 209 |
* @return boolean
|
| 210 |
*/
|
| 216 |
/**
|
| 217 |
* Method that retrieves the plugin settings defined by the user.
|
| 218 |
*
|
| 219 |
+
* @since 1.0.0
|
| 220 |
+
* @static
|
| 221 |
*
|
| 222 |
* @return object
|
| 223 |
*/
|
EmbedPress/Providers/GoogleDocs.php
CHANGED
|
@@ -13,14 +13,14 @@ use \Embera\Adapters\Service as EmberaService;
|
|
| 13 |
* @author PressShack <help@pressshack.com>
|
| 14 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 15 |
* @license GPLv2 or later
|
| 16 |
-
* @since 1.0
|
| 17 |
*/
|
| 18 |
class GoogleDocs extends EmberaService
|
| 19 |
{
|
| 20 |
/**
|
| 21 |
* Method that verifies if the embed URL belongs to GoogleDocs.
|
| 22 |
*
|
| 23 |
-
* @since 1.0
|
| 24 |
*
|
| 25 |
* @return boolean
|
| 26 |
*/
|
|
@@ -32,7 +32,7 @@ class GoogleDocs extends EmberaService
|
|
| 32 |
/**
|
| 33 |
* This method fakes an Oembed response.
|
| 34 |
*
|
| 35 |
-
* @since 1.0
|
| 36 |
*
|
| 37 |
* @return array
|
| 38 |
*/
|
| 13 |
* @author PressShack <help@pressshack.com>
|
| 14 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 15 |
* @license GPLv2 or later
|
| 16 |
+
* @since 1.0.0
|
| 17 |
*/
|
| 18 |
class GoogleDocs extends EmberaService
|
| 19 |
{
|
| 20 |
/**
|
| 21 |
* Method that verifies if the embed URL belongs to GoogleDocs.
|
| 22 |
*
|
| 23 |
+
* @since 1.0.0
|
| 24 |
*
|
| 25 |
* @return boolean
|
| 26 |
*/
|
| 32 |
/**
|
| 33 |
* This method fakes an Oembed response.
|
| 34 |
*
|
| 35 |
+
* @since 1.0.0
|
| 36 |
*
|
| 37 |
* @return array
|
| 38 |
*/
|
EmbedPress/Providers/GoogleMaps.php
CHANGED
|
@@ -13,14 +13,14 @@ use \Embera\Adapters\Service as EmberaService;
|
|
| 13 |
* @author PressShack <help@pressshack.com>
|
| 14 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 15 |
* @license GPLv2 or later
|
| 16 |
-
* @since 1.0
|
| 17 |
*/
|
| 18 |
class GoogleMaps extends EmberaService
|
| 19 |
{
|
| 20 |
/**
|
| 21 |
* Method that verifies if the embed URL belongs to GoogleMaps.
|
| 22 |
*
|
| 23 |
-
* @since 1.0
|
| 24 |
*
|
| 25 |
* @return boolean
|
| 26 |
*/
|
|
@@ -32,7 +32,7 @@ class GoogleMaps extends EmberaService
|
|
| 32 |
/**
|
| 33 |
* This method fakes an Oembed response.
|
| 34 |
*
|
| 35 |
-
* @since 1.0
|
| 36 |
*
|
| 37 |
* @return array
|
| 38 |
*/
|
|
@@ -60,4 +60,4 @@ class GoogleMaps extends EmberaService
|
|
| 60 |
'html' => '<iframe width="600" height="450" src="' . $iframeSrc . '" frameborder="0"></iframe>',
|
| 61 |
);
|
| 62 |
}
|
| 63 |
-
}
|
| 13 |
* @author PressShack <help@pressshack.com>
|
| 14 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 15 |
* @license GPLv2 or later
|
| 16 |
+
* @since 1.0.0
|
| 17 |
*/
|
| 18 |
class GoogleMaps extends EmberaService
|
| 19 |
{
|
| 20 |
/**
|
| 21 |
* Method that verifies if the embed URL belongs to GoogleMaps.
|
| 22 |
*
|
| 23 |
+
* @since 1.0.0
|
| 24 |
*
|
| 25 |
* @return boolean
|
| 26 |
*/
|
| 32 |
/**
|
| 33 |
* This method fakes an Oembed response.
|
| 34 |
*
|
| 35 |
+
* @since 1.0.0
|
| 36 |
*
|
| 37 |
* @return array
|
| 38 |
*/
|
| 60 |
'html' => '<iframe width="600" height="450" src="' . $iframeSrc . '" frameborder="0"></iframe>',
|
| 61 |
);
|
| 62 |
}
|
| 63 |
+
}
|
EmbedPress/Providers/index.html
CHANGED
|
File without changes
|
EmbedPress/Shortcode.php
CHANGED
|
@@ -14,15 +14,16 @@ use \Embera\Formatter;
|
|
| 14 |
* @author PressShack <help@pressshack.com>
|
| 15 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 16 |
* @license GPLv2 or later
|
| 17 |
-
* @since 1.0
|
| 18 |
*/
|
| 19 |
class Shortcode
|
| 20 |
{
|
| 21 |
/**
|
| 22 |
* The WP_oEmbed class instance.
|
| 23 |
*
|
| 24 |
-
* @since 1.0
|
| 25 |
* @access private
|
|
|
|
| 26 |
*
|
| 27 |
* @var string $oEmbedInstance
|
| 28 |
*/
|
|
@@ -31,8 +32,10 @@ class Shortcode
|
|
| 31 |
/**
|
| 32 |
* Register the plugin's shortcode into WordPress.
|
| 33 |
*
|
| 34 |
-
* @since 1.0
|
| 35 |
* @static
|
|
|
|
|
|
|
| 36 |
*/
|
| 37 |
public static function register()
|
| 38 |
{
|
|
@@ -43,7 +46,7 @@ class Shortcode
|
|
| 43 |
/**
|
| 44 |
* Method that converts the plugin shortcoded-string into its complex content.
|
| 45 |
*
|
| 46 |
-
* @since 1.0
|
| 47 |
* @static
|
| 48 |
*
|
| 49 |
* @param array $attributes @TODO
|
|
@@ -60,7 +63,7 @@ class Shortcode
|
|
| 60 |
/**
|
| 61 |
* Replace a given content with its embeded HTML code.
|
| 62 |
*
|
| 63 |
-
* @since 1.0
|
| 64 |
* @static
|
| 65 |
*
|
| 66 |
* @param string The raw content that will be replaced.
|
|
@@ -192,13 +195,12 @@ class Shortcode
|
|
| 192 |
/**
|
| 193 |
* Method that adds support to a given new service provider (SP).
|
| 194 |
*
|
| 195 |
-
* @since 1.0
|
| 196 |
* @static
|
| 197 |
*
|
| 198 |
* @param string $className The new SP class name.
|
| 199 |
* @param string $reference The new SP reference name.
|
| 200 |
* @param \Embera\Embera $emberaInstance The embera's instance where the SP will be registered in.
|
| 201 |
-
*
|
| 202 |
* @return boolean
|
| 203 |
*/
|
| 204 |
public static function addServiceProvider($className, $reference, &$emberaInstance)
|
|
@@ -221,11 +223,10 @@ class Shortcode
|
|
| 221 |
/**
|
| 222 |
* Method that retrieves all custom parameters from a shortcoded string.
|
| 223 |
*
|
| 224 |
-
* @since 1.0
|
| 225 |
* @static
|
| 226 |
*
|
| 227 |
* @param string $subject The given shortcoded string.
|
| 228 |
-
*
|
| 229 |
* @return array
|
| 230 |
*/
|
| 231 |
public static function parseContentAttributesFromString($subject)
|
|
@@ -248,11 +249,11 @@ class Shortcode
|
|
| 248 |
/**
|
| 249 |
* Method that parses and adds the "data-" prefix to the given custom shortcode attributes.
|
| 250 |
*
|
| 251 |
-
* @since 1.0
|
|
|
|
| 252 |
* @static
|
| 253 |
*
|
| 254 |
* @param array $attributes The array containing the embed attributes.
|
| 255 |
-
*
|
| 256 |
* @return array
|
| 257 |
*/
|
| 258 |
private static function parseContentAttributes(array $customAttributes)
|
|
@@ -341,11 +342,10 @@ class Shortcode
|
|
| 341 |
/**
|
| 342 |
* Method that checks if a given value is/can be identified as (bool)false.
|
| 343 |
*
|
| 344 |
-
* @since 1.0
|
| 345 |
* @static
|
| 346 |
*
|
| 347 |
* @param mixed $subject The value to be checked.
|
| 348 |
-
*
|
| 349 |
* @return boolean
|
| 350 |
*/
|
| 351 |
public static function valueIsFalse($subject)
|
| 14 |
* @author PressShack <help@pressshack.com>
|
| 15 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 16 |
* @license GPLv2 or later
|
| 17 |
+
* @since 1.0.0
|
| 18 |
*/
|
| 19 |
class Shortcode
|
| 20 |
{
|
| 21 |
/**
|
| 22 |
* The WP_oEmbed class instance.
|
| 23 |
*
|
| 24 |
+
* @since 1.0.0
|
| 25 |
* @access private
|
| 26 |
+
* @static
|
| 27 |
*
|
| 28 |
* @var string $oEmbedInstance
|
| 29 |
*/
|
| 32 |
/**
|
| 33 |
* Register the plugin's shortcode into WordPress.
|
| 34 |
*
|
| 35 |
+
* @since 1.0.0
|
| 36 |
* @static
|
| 37 |
+
*
|
| 38 |
+
* @return void
|
| 39 |
*/
|
| 40 |
public static function register()
|
| 41 |
{
|
| 46 |
/**
|
| 47 |
* Method that converts the plugin shortcoded-string into its complex content.
|
| 48 |
*
|
| 49 |
+
* @since 1.0.0
|
| 50 |
* @static
|
| 51 |
*
|
| 52 |
* @param array $attributes @TODO
|
| 63 |
/**
|
| 64 |
* Replace a given content with its embeded HTML code.
|
| 65 |
*
|
| 66 |
+
* @since 1.0.0
|
| 67 |
* @static
|
| 68 |
*
|
| 69 |
* @param string The raw content that will be replaced.
|
| 195 |
/**
|
| 196 |
* Method that adds support to a given new service provider (SP).
|
| 197 |
*
|
| 198 |
+
* @since 1.0.0
|
| 199 |
* @static
|
| 200 |
*
|
| 201 |
* @param string $className The new SP class name.
|
| 202 |
* @param string $reference The new SP reference name.
|
| 203 |
* @param \Embera\Embera $emberaInstance The embera's instance where the SP will be registered in.
|
|
|
|
| 204 |
* @return boolean
|
| 205 |
*/
|
| 206 |
public static function addServiceProvider($className, $reference, &$emberaInstance)
|
| 223 |
/**
|
| 224 |
* Method that retrieves all custom parameters from a shortcoded string.
|
| 225 |
*
|
| 226 |
+
* @since 1.0.0
|
| 227 |
* @static
|
| 228 |
*
|
| 229 |
* @param string $subject The given shortcoded string.
|
|
|
|
| 230 |
* @return array
|
| 231 |
*/
|
| 232 |
public static function parseContentAttributesFromString($subject)
|
| 249 |
/**
|
| 250 |
* Method that parses and adds the "data-" prefix to the given custom shortcode attributes.
|
| 251 |
*
|
| 252 |
+
* @since 1.0.0
|
| 253 |
+
* @access private
|
| 254 |
* @static
|
| 255 |
*
|
| 256 |
* @param array $attributes The array containing the embed attributes.
|
|
|
|
| 257 |
* @return array
|
| 258 |
*/
|
| 259 |
private static function parseContentAttributes(array $customAttributes)
|
| 342 |
/**
|
| 343 |
* Method that checks if a given value is/can be identified as (bool)false.
|
| 344 |
*
|
| 345 |
+
* @since 1.0.0
|
| 346 |
* @static
|
| 347 |
*
|
| 348 |
* @param mixed $subject The value to be checked.
|
|
|
|
| 349 |
* @return boolean
|
| 350 |
*/
|
| 351 |
public static function valueIsFalse($subject)
|
PROVIDERS.md
CHANGED
|
File without changes
|
assets/bootstrap.config.json
DELETED
|
@@ -1,400 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"vars": {
|
| 3 |
-
"@gray-base": "#000",
|
| 4 |
-
"@gray-darker": "lighten(@gray-base, 13.5%)",
|
| 5 |
-
"@gray-dark": "lighten(@gray-base, 20%)",
|
| 6 |
-
"@gray": "lighten(@gray-base, 33.5%)",
|
| 7 |
-
"@gray-light": "lighten(@gray-base, 46.7%)",
|
| 8 |
-
"@gray-lighter": "lighten(@gray-base, 93.5%)",
|
| 9 |
-
"@brand-primary": "darken(#428bca, 6.5%)",
|
| 10 |
-
"@brand-success": "#5cb85c",
|
| 11 |
-
"@brand-info": "#5bc0de",
|
| 12 |
-
"@brand-warning": "#f0ad4e",
|
| 13 |
-
"@brand-danger": "#d9534f",
|
| 14 |
-
"@body-bg": "transparent",
|
| 15 |
-
"@text-color": "@gray-dark",
|
| 16 |
-
"@link-color": "@brand-primary",
|
| 17 |
-
"@link-hover-color": "darken(@link-color, 15%)",
|
| 18 |
-
"@link-hover-decoration": "underline",
|
| 19 |
-
"@font-family-sans-serif": "\"Helvetica Neue\", Helvetica, Arial, sans-serif",
|
| 20 |
-
"@font-family-serif": "Georgia, \"Times New Roman\", Times, serif",
|
| 21 |
-
"@font-family-monospace": "Menlo, Monaco, Consolas, \"Courier New\", monospace",
|
| 22 |
-
"@font-family-base": "@font-family-sans-serif",
|
| 23 |
-
"@font-size-base": "14px",
|
| 24 |
-
"@font-size-large": "ceil((@font-size-base * 1.25))",
|
| 25 |
-
"@font-size-small": "ceil((@font-size-base * 0.85))",
|
| 26 |
-
"@font-size-h1": "floor((@font-size-base * 2.6))",
|
| 27 |
-
"@font-size-h2": "floor((@font-size-base * 2.15))",
|
| 28 |
-
"@font-size-h3": "ceil((@font-size-base * 1.7))",
|
| 29 |
-
"@font-size-h4": "ceil((@font-size-base * 1.25))",
|
| 30 |
-
"@font-size-h5": "@font-size-base",
|
| 31 |
-
"@font-size-h6": "ceil((@font-size-base * 0.85))",
|
| 32 |
-
"@line-height-base": "1.428571429",
|
| 33 |
-
"@line-height-computed": "floor((@font-size-base * @line-height-base))",
|
| 34 |
-
"@headings-font-family": "inherit",
|
| 35 |
-
"@headings-font-weight": "500",
|
| 36 |
-
"@headings-line-height": "1.1",
|
| 37 |
-
"@headings-color": "inherit",
|
| 38 |
-
"@icon-font-path": "\"../fonts/\"",
|
| 39 |
-
"@icon-font-name": "\"glyphicons-halflings-regular\"",
|
| 40 |
-
"@icon-font-svg-id": "\"glyphicons_halflingsregular\"",
|
| 41 |
-
"@padding-base-vertical": "6px",
|
| 42 |
-
"@padding-base-horizontal": "12px",
|
| 43 |
-
"@padding-large-vertical": "10px",
|
| 44 |
-
"@padding-large-horizontal": "16px",
|
| 45 |
-
"@padding-small-vertical": "5px",
|
| 46 |
-
"@padding-small-horizontal": "10px",
|
| 47 |
-
"@padding-xs-vertical": "1px",
|
| 48 |
-
"@padding-xs-horizontal": "5px",
|
| 49 |
-
"@line-height-large": "1.3333333",
|
| 50 |
-
"@line-height-small": "1.5",
|
| 51 |
-
"@border-radius-base": "4px",
|
| 52 |
-
"@border-radius-large": "6px",
|
| 53 |
-
"@border-radius-small": "3px",
|
| 54 |
-
"@component-active-color": "#fff",
|
| 55 |
-
"@component-active-bg": "@brand-primary",
|
| 56 |
-
"@caret-width-base": "4px",
|
| 57 |
-
"@caret-width-large": "5px",
|
| 58 |
-
"@table-cell-padding": "8px",
|
| 59 |
-
"@table-condensed-cell-padding": "5px",
|
| 60 |
-
"@table-bg": "transparent",
|
| 61 |
-
"@table-bg-accent": "#f9f9f9",
|
| 62 |
-
"@table-bg-hover": "#f5f5f5",
|
| 63 |
-
"@table-bg-active": "@table-bg-hover",
|
| 64 |
-
"@table-border-color": "#ddd",
|
| 65 |
-
"@btn-font-weight": "normal",
|
| 66 |
-
"@btn-default-color": "#333",
|
| 67 |
-
"@btn-default-bg": "#fff",
|
| 68 |
-
"@btn-default-border": "#ccc",
|
| 69 |
-
"@btn-primary-color": "#fff",
|
| 70 |
-
"@btn-primary-bg": "@brand-primary",
|
| 71 |
-
"@btn-primary-border": "darken(@btn-primary-bg, 5%)",
|
| 72 |
-
"@btn-success-color": "#fff",
|
| 73 |
-
"@btn-success-bg": "@brand-success",
|
| 74 |
-
"@btn-success-border": "darken(@btn-success-bg, 5%)",
|
| 75 |
-
"@btn-info-color": "#fff",
|
| 76 |
-
"@btn-info-bg": "@brand-info",
|
| 77 |
-
"@btn-info-border": "darken(@btn-info-bg, 5%)",
|
| 78 |
-
"@btn-warning-color": "#fff",
|
| 79 |
-
"@btn-warning-bg": "@brand-warning",
|
| 80 |
-
"@btn-warning-border": "darken(@btn-warning-bg, 5%)",
|
| 81 |
-
"@btn-danger-color": "#fff",
|
| 82 |
-
"@btn-danger-bg": "@brand-danger",
|
| 83 |
-
"@btn-danger-border": "darken(@btn-danger-bg, 5%)",
|
| 84 |
-
"@btn-link-disabled-color": "@gray-light",
|
| 85 |
-
"@btn-border-radius-base": "@border-radius-base",
|
| 86 |
-
"@btn-border-radius-large": "@border-radius-large",
|
| 87 |
-
"@btn-border-radius-small": "@border-radius-small",
|
| 88 |
-
"@input-bg": "#fff",
|
| 89 |
-
"@input-bg-disabled": "@gray-lighter",
|
| 90 |
-
"@input-color": "@gray",
|
| 91 |
-
"@input-border": "#ccc",
|
| 92 |
-
"@input-border-radius": "@border-radius-base",
|
| 93 |
-
"@input-border-radius-large": "@border-radius-large",
|
| 94 |
-
"@input-border-radius-small": "@border-radius-small",
|
| 95 |
-
"@input-border-focus": "#66afe9",
|
| 96 |
-
"@input-color-placeholder": "#999",
|
| 97 |
-
"@input-height-base": "(@line-height-computed + (@padding-base-vertical * 2) + 2)",
|
| 98 |
-
"@input-height-large": "(ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2)",
|
| 99 |
-
"@input-height-small": "(floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2)",
|
| 100 |
-
"@form-group-margin-bottom": "15px",
|
| 101 |
-
"@legend-color": "@gray-dark",
|
| 102 |
-
"@legend-border-color": "#e5e5e5",
|
| 103 |
-
"@input-group-addon-bg": "@gray-lighter",
|
| 104 |
-
"@input-group-addon-border-color": "@input-border",
|
| 105 |
-
"@cursor-disabled": "not-allowed",
|
| 106 |
-
"@dropdown-bg": "#fff",
|
| 107 |
-
"@dropdown-border": "rgba(0,0,0,.15)",
|
| 108 |
-
"@dropdown-fallback-border": "#ccc",
|
| 109 |
-
"@dropdown-divider-bg": "#e5e5e5",
|
| 110 |
-
"@dropdown-link-color": "@gray-dark",
|
| 111 |
-
"@dropdown-link-hover-color": "darken(@gray-dark, 5%)",
|
| 112 |
-
"@dropdown-link-hover-bg": "#f5f5f5",
|
| 113 |
-
"@dropdown-link-active-color": "@component-active-color",
|
| 114 |
-
"@dropdown-link-active-bg": "@component-active-bg",
|
| 115 |
-
"@dropdown-link-disabled-color": "@gray-light",
|
| 116 |
-
"@dropdown-header-color": "@gray-light",
|
| 117 |
-
"@dropdown-caret-color": "#000",
|
| 118 |
-
"@screen-xs": "480px",
|
| 119 |
-
"@screen-xs-min": "@screen-xs",
|
| 120 |
-
"@screen-phone": "@screen-xs-min",
|
| 121 |
-
"@screen-sm": "768px",
|
| 122 |
-
"@screen-sm-min": "@screen-sm",
|
| 123 |
-
"@screen-tablet": "@screen-sm-min",
|
| 124 |
-
"@screen-md": "992px",
|
| 125 |
-
"@screen-md-min": "@screen-md",
|
| 126 |
-
"@screen-desktop": "@screen-md-min",
|
| 127 |
-
"@screen-lg": "1200px",
|
| 128 |
-
"@screen-lg-min": "@screen-lg",
|
| 129 |
-
"@screen-lg-desktop": "@screen-lg-min",
|
| 130 |
-
"@screen-xs-max": "(@screen-sm-min - 1)",
|
| 131 |
-
"@screen-sm-max": "(@screen-md-min - 1)",
|
| 132 |
-
"@screen-md-max": "(@screen-lg-min - 1)",
|
| 133 |
-
"@grid-columns": "12",
|
| 134 |
-
"@grid-gutter-width": "30px",
|
| 135 |
-
"@grid-float-breakpoint": "@screen-sm-min",
|
| 136 |
-
"@grid-float-breakpoint-max": "(@grid-float-breakpoint - 1)",
|
| 137 |
-
"@container-tablet": "(720px + @grid-gutter-width)",
|
| 138 |
-
"@container-sm": "@container-tablet",
|
| 139 |
-
"@container-desktop": "(940px + @grid-gutter-width)",
|
| 140 |
-
"@container-md": "@container-desktop",
|
| 141 |
-
"@container-large-desktop": "(1140px + @grid-gutter-width)",
|
| 142 |
-
"@container-lg": "@container-large-desktop",
|
| 143 |
-
"@navbar-height": "50px",
|
| 144 |
-
"@navbar-margin-bottom": "@line-height-computed",
|
| 145 |
-
"@navbar-border-radius": "@border-radius-base",
|
| 146 |
-
"@navbar-padding-horizontal": "floor((@grid-gutter-width / 2))",
|
| 147 |
-
"@navbar-padding-vertical": "((@navbar-height - @line-height-computed) / 2)",
|
| 148 |
-
"@navbar-collapse-max-height": "340px",
|
| 149 |
-
"@navbar-default-color": "#777",
|
| 150 |
-
"@navbar-default-bg": "#f8f8f8",
|
| 151 |
-
"@navbar-default-border": "darken(@navbar-default-bg, 6.5%)",
|
| 152 |
-
"@navbar-default-link-color": "#777",
|
| 153 |
-
"@navbar-default-link-hover-color": "#333",
|
| 154 |
-
"@navbar-default-link-hover-bg": "transparent",
|
| 155 |
-
"@navbar-default-link-active-color": "#555",
|
| 156 |
-
"@navbar-default-link-active-bg": "darken(@navbar-default-bg, 6.5%)",
|
| 157 |
-
"@navbar-default-link-disabled-color": "#ccc",
|
| 158 |
-
"@navbar-default-link-disabled-bg": "transparent",
|
| 159 |
-
"@navbar-default-brand-color": "@navbar-default-link-color",
|
| 160 |
-
"@navbar-default-brand-hover-color": "darken(@navbar-default-brand-color, 10%)",
|
| 161 |
-
"@navbar-default-brand-hover-bg": "transparent",
|
| 162 |
-
"@navbar-default-toggle-hover-bg": "#ddd",
|
| 163 |
-
"@navbar-default-toggle-icon-bar-bg": "#888",
|
| 164 |
-
"@navbar-default-toggle-border-color": "#ddd",
|
| 165 |
-
"@navbar-inverse-color": "lighten(@gray-light, 15%)",
|
| 166 |
-
"@navbar-inverse-bg": "#222",
|
| 167 |
-
"@navbar-inverse-border": "darken(@navbar-inverse-bg, 10%)",
|
| 168 |
-
"@navbar-inverse-link-color": "lighten(@gray-light, 15%)",
|
| 169 |
-
"@navbar-inverse-link-hover-color": "#fff",
|
| 170 |
-
"@navbar-inverse-link-hover-bg": "transparent",
|
| 171 |
-
"@navbar-inverse-link-active-color": "@navbar-inverse-link-hover-color",
|
| 172 |
-
"@navbar-inverse-link-active-bg": "darken(@navbar-inverse-bg, 10%)",
|
| 173 |
-
"@navbar-inverse-link-disabled-color": "#444",
|
| 174 |
-
"@navbar-inverse-link-disabled-bg": "transparent",
|
| 175 |
-
"@navbar-inverse-brand-color": "@navbar-inverse-link-color",
|
| 176 |
-
"@navbar-inverse-brand-hover-color": "#fff",
|
| 177 |
-
"@navbar-inverse-brand-hover-bg": "transparent",
|
| 178 |
-
"@navbar-inverse-toggle-hover-bg": "#333",
|
| 179 |
-
"@navbar-inverse-toggle-icon-bar-bg": "#fff",
|
| 180 |
-
"@navbar-inverse-toggle-border-color": "#333",
|
| 181 |
-
"@nav-link-padding": "10px 15px",
|
| 182 |
-
"@nav-link-hover-bg": "@gray-lighter",
|
| 183 |
-
"@nav-disabled-link-color": "@gray-light",
|
| 184 |
-
"@nav-disabled-link-hover-color": "@gray-light",
|
| 185 |
-
"@nav-tabs-border-color": "#ddd",
|
| 186 |
-
"@nav-tabs-link-hover-border-color": "@gray-lighter",
|
| 187 |
-
"@nav-tabs-active-link-hover-bg": "@body-bg",
|
| 188 |
-
"@nav-tabs-active-link-hover-color": "@gray",
|
| 189 |
-
"@nav-tabs-active-link-hover-border-color": "#ddd",
|
| 190 |
-
"@nav-tabs-justified-link-border-color": "#ddd",
|
| 191 |
-
"@nav-tabs-justified-active-link-border-color": "@body-bg",
|
| 192 |
-
"@nav-pills-border-radius": "@border-radius-base",
|
| 193 |
-
"@nav-pills-active-link-hover-bg": "@component-active-bg",
|
| 194 |
-
"@nav-pills-active-link-hover-color": "@component-active-color",
|
| 195 |
-
"@pagination-color": "@link-color",
|
| 196 |
-
"@pagination-bg": "#fff",
|
| 197 |
-
"@pagination-border": "#ddd",
|
| 198 |
-
"@pagination-hover-color": "@link-hover-color",
|
| 199 |
-
"@pagination-hover-bg": "@gray-lighter",
|
| 200 |
-
"@pagination-hover-border": "#ddd",
|
| 201 |
-
"@pagination-active-color": "#fff",
|
| 202 |
-
"@pagination-active-bg": "@brand-primary",
|
| 203 |
-
"@pagination-active-border": "@brand-primary",
|
| 204 |
-
"@pagination-disabled-color": "@gray-light",
|
| 205 |
-
"@pagination-disabled-bg": "#fff",
|
| 206 |
-
"@pagination-disabled-border": "#ddd",
|
| 207 |
-
"@pager-bg": "@pagination-bg",
|
| 208 |
-
"@pager-border": "@pagination-border",
|
| 209 |
-
"@pager-border-radius": "15px",
|
| 210 |
-
"@pager-hover-bg": "@pagination-hover-bg",
|
| 211 |
-
"@pager-active-bg": "@pagination-active-bg",
|
| 212 |
-
"@pager-active-color": "@pagination-active-color",
|
| 213 |
-
"@pager-disabled-color": "@pagination-disabled-color",
|
| 214 |
-
"@jumbotron-padding": "30px",
|
| 215 |
-
"@jumbotron-color": "inherit",
|
| 216 |
-
"@jumbotron-bg": "@gray-lighter",
|
| 217 |
-
"@jumbotron-heading-color": "inherit",
|
| 218 |
-
"@jumbotron-font-size": "ceil((@font-size-base * 1.5))",
|
| 219 |
-
"@jumbotron-heading-font-size": "ceil((@font-size-base * 4.5))",
|
| 220 |
-
"@state-success-text": "#3c763d",
|
| 221 |
-
"@state-success-bg": "#dff0d8",
|
| 222 |
-
"@state-success-border": "darken(spin(@state-success-bg, -10), 5%)",
|
| 223 |
-
"@state-info-text": "#31708f",
|
| 224 |
-
"@state-info-bg": "#d9edf7",
|
| 225 |
-
"@state-info-border": "darken(spin(@state-info-bg, -10), 7%)",
|
| 226 |
-
"@state-warning-text": "#8a6d3b",
|
| 227 |
-
"@state-warning-bg": "#fcf8e3",
|
| 228 |
-
"@state-warning-border": "darken(spin(@state-warning-bg, -10), 5%)",
|
| 229 |
-
"@state-danger-text": "#a94442",
|
| 230 |
-
"@state-danger-bg": "#f2dede",
|
| 231 |
-
"@state-danger-border": "darken(spin(@state-danger-bg, -10), 5%)",
|
| 232 |
-
"@tooltip-max-width": "200px",
|
| 233 |
-
"@tooltip-color": "#fff",
|
| 234 |
-
"@tooltip-bg": "#000",
|
| 235 |
-
"@tooltip-opacity": ".9",
|
| 236 |
-
"@tooltip-arrow-width": "5px",
|
| 237 |
-
"@tooltip-arrow-color": "@tooltip-bg",
|
| 238 |
-
"@popover-bg": "#fff",
|
| 239 |
-
"@popover-max-width": "276px",
|
| 240 |
-
"@popover-border-color": "rgba(0,0,0,.2)",
|
| 241 |
-
"@popover-fallback-border-color": "#ccc",
|
| 242 |
-
"@popover-title-bg": "darken(@popover-bg, 3%)",
|
| 243 |
-
"@popover-arrow-width": "10px",
|
| 244 |
-
"@popover-arrow-color": "@popover-bg",
|
| 245 |
-
"@popover-arrow-outer-width": "(@popover-arrow-width + 1)",
|
| 246 |
-
"@popover-arrow-outer-color": "fadein(@popover-border-color, 5%)",
|
| 247 |
-
"@popover-arrow-outer-fallback-color": "darken(@popover-fallback-border-color, 20%)",
|
| 248 |
-
"@label-default-bg": "@gray-light",
|
| 249 |
-
"@label-primary-bg": "@brand-primary",
|
| 250 |
-
"@label-success-bg": "@brand-success",
|
| 251 |
-
"@label-info-bg": "@brand-info",
|
| 252 |
-
"@label-warning-bg": "@brand-warning",
|
| 253 |
-
"@label-danger-bg": "@brand-danger",
|
| 254 |
-
"@label-color": "#fff",
|
| 255 |
-
"@label-link-hover-color": "#fff",
|
| 256 |
-
"@modal-inner-padding": "15px",
|
| 257 |
-
"@modal-title-padding": "15px",
|
| 258 |
-
"@modal-title-line-height": "@line-height-base",
|
| 259 |
-
"@modal-content-bg": "#fff",
|
| 260 |
-
"@modal-content-border-color": "rgba(0,0,0,.2)",
|
| 261 |
-
"@modal-content-fallback-border-color": "#999",
|
| 262 |
-
"@modal-backdrop-bg": "#000",
|
| 263 |
-
"@modal-backdrop-opacity": ".5",
|
| 264 |
-
"@modal-header-border-color": "#e5e5e5",
|
| 265 |
-
"@modal-footer-border-color": "@modal-header-border-color",
|
| 266 |
-
"@modal-lg": "900px",
|
| 267 |
-
"@modal-md": "600px",
|
| 268 |
-
"@modal-sm": "300px",
|
| 269 |
-
"@alert-padding": "15px",
|
| 270 |
-
"@alert-border-radius": "@border-radius-base",
|
| 271 |
-
"@alert-link-font-weight": "bold",
|
| 272 |
-
"@alert-success-bg": "@state-success-bg",
|
| 273 |
-
"@alert-success-text": "@state-success-text",
|
| 274 |
-
"@alert-success-border": "@state-success-border",
|
| 275 |
-
"@alert-info-bg": "@state-info-bg",
|
| 276 |
-
"@alert-info-text": "@state-info-text",
|
| 277 |
-
"@alert-info-border": "@state-info-border",
|
| 278 |
-
"@alert-warning-bg": "@state-warning-bg",
|
| 279 |
-
"@alert-warning-text": "@state-warning-text",
|
| 280 |
-
"@alert-warning-border": "@state-warning-border",
|
| 281 |
-
"@alert-danger-bg": "@state-danger-bg",
|
| 282 |
-
"@alert-danger-text": "@state-danger-text",
|
| 283 |
-
"@alert-danger-border": "@state-danger-border",
|
| 284 |
-
"@progress-bg": "#f5f5f5",
|
| 285 |
-
"@progress-bar-color": "#fff",
|
| 286 |
-
"@progress-border-radius": "@border-radius-base",
|
| 287 |
-
"@progress-bar-bg": "@brand-primary",
|
| 288 |
-
"@progress-bar-success-bg": "@brand-success",
|
| 289 |
-
"@progress-bar-warning-bg": "@brand-warning",
|
| 290 |
-
"@progress-bar-danger-bg": "@brand-danger",
|
| 291 |
-
"@progress-bar-info-bg": "@brand-info",
|
| 292 |
-
"@list-group-bg": "#fff",
|
| 293 |
-
"@list-group-border": "#ddd",
|
| 294 |
-
"@list-group-border-radius": "@border-radius-base",
|
| 295 |
-
"@list-group-hover-bg": "#f5f5f5",
|
| 296 |
-
"@list-group-active-color": "@component-active-color",
|
| 297 |
-
"@list-group-active-bg": "@component-active-bg",
|
| 298 |
-
"@list-group-active-border": "@list-group-active-bg",
|
| 299 |
-
"@list-group-active-text-color": "lighten(@list-group-active-bg, 40%)",
|
| 300 |
-
"@list-group-disabled-color": "@gray-light",
|
| 301 |
-
"@list-group-disabled-bg": "@gray-lighter",
|
| 302 |
-
"@list-group-disabled-text-color": "@list-group-disabled-color",
|
| 303 |
-
"@list-group-link-color": "#555",
|
| 304 |
-
"@list-group-link-hover-color": "@list-group-link-color",
|
| 305 |
-
"@list-group-link-heading-color": "#333",
|
| 306 |
-
"@panel-bg": "#fff",
|
| 307 |
-
"@panel-body-padding": "15px",
|
| 308 |
-
"@panel-heading-padding": "10px 15px",
|
| 309 |
-
"@panel-footer-padding": "@panel-heading-padding",
|
| 310 |
-
"@panel-border-radius": "@border-radius-base",
|
| 311 |
-
"@panel-inner-border": "#ddd",
|
| 312 |
-
"@panel-footer-bg": "#f5f5f5",
|
| 313 |
-
"@panel-default-text": "@gray-dark",
|
| 314 |
-
"@panel-default-border": "#ddd",
|
| 315 |
-
"@panel-default-heading-bg": "#f5f5f5",
|
| 316 |
-
"@panel-primary-text": "#fff",
|
| 317 |
-
"@panel-primary-border": "@brand-primary",
|
| 318 |
-
"@panel-primary-heading-bg": "@brand-primary",
|
| 319 |
-
"@panel-success-text": "@state-success-text",
|
| 320 |
-
"@panel-success-border": "@state-success-border",
|
| 321 |
-
"@panel-success-heading-bg": "@state-success-bg",
|
| 322 |
-
"@panel-info-text": "@state-info-text",
|
| 323 |
-
"@panel-info-border": "@state-info-border",
|
| 324 |
-
"@panel-info-heading-bg": "@state-info-bg",
|
| 325 |
-
"@panel-warning-text": "@state-warning-text",
|
| 326 |
-
"@panel-warning-border": "@state-warning-border",
|
| 327 |
-
"@panel-warning-heading-bg": "@state-warning-bg",
|
| 328 |
-
"@panel-danger-text": "@state-danger-text",
|
| 329 |
-
"@panel-danger-border": "@state-danger-border",
|
| 330 |
-
"@panel-danger-heading-bg": "@state-danger-bg",
|
| 331 |
-
"@thumbnail-padding": "4px",
|
| 332 |
-
"@thumbnail-bg": "@body-bg",
|
| 333 |
-
"@thumbnail-border": "#ddd",
|
| 334 |
-
"@thumbnail-border-radius": "@border-radius-base",
|
| 335 |
-
"@thumbnail-caption-color": "@text-color",
|
| 336 |
-
"@thumbnail-caption-padding": "9px",
|
| 337 |
-
"@well-bg": "#f5f5f5",
|
| 338 |
-
"@well-border": "darken(@well-bg, 7%)",
|
| 339 |
-
"@badge-color": "#fff",
|
| 340 |
-
"@badge-link-hover-color": "#fff",
|
| 341 |
-
"@badge-bg": "@gray-light",
|
| 342 |
-
"@badge-active-color": "@link-color",
|
| 343 |
-
"@badge-active-bg": "#fff",
|
| 344 |
-
"@badge-font-weight": "bold",
|
| 345 |
-
"@badge-line-height": "1",
|
| 346 |
-
"@badge-border-radius": "10px",
|
| 347 |
-
"@breadcrumb-padding-vertical": "8px",
|
| 348 |
-
"@breadcrumb-padding-horizontal": "15px",
|
| 349 |
-
"@breadcrumb-bg": "#f5f5f5",
|
| 350 |
-
"@breadcrumb-color": "#ccc",
|
| 351 |
-
"@breadcrumb-active-color": "@gray-light",
|
| 352 |
-
"@breadcrumb-separator": "\"/\"",
|
| 353 |
-
"@carousel-text-shadow": "0 1px 2px rgba(0,0,0,.6)",
|
| 354 |
-
"@carousel-control-color": "#fff",
|
| 355 |
-
"@carousel-control-width": "15%",
|
| 356 |
-
"@carousel-control-opacity": ".5",
|
| 357 |
-
"@carousel-control-font-size": "20px",
|
| 358 |
-
"@carousel-indicator-active-bg": "#fff",
|
| 359 |
-
"@carousel-indicator-border-color": "#fff",
|
| 360 |
-
"@carousel-caption-color": "#fff",
|
| 361 |
-
"@close-font-weight": "bold",
|
| 362 |
-
"@close-color": "#000",
|
| 363 |
-
"@close-text-shadow": "0 1px 0 #fff",
|
| 364 |
-
"@code-color": "#c7254e",
|
| 365 |
-
"@code-bg": "#f9f2f4",
|
| 366 |
-
"@kbd-color": "#fff",
|
| 367 |
-
"@kbd-bg": "#333",
|
| 368 |
-
"@pre-bg": "#f5f5f5",
|
| 369 |
-
"@pre-color": "@gray-dark",
|
| 370 |
-
"@pre-border-color": "#ccc",
|
| 371 |
-
"@pre-scrollable-max-height": "340px",
|
| 372 |
-
"@component-offset-horizontal": "180px",
|
| 373 |
-
"@text-muted": "@gray-light",
|
| 374 |
-
"@abbr-border-color": "@gray-light",
|
| 375 |
-
"@headings-small-color": "@gray-light",
|
| 376 |
-
"@blockquote-small-color": "@gray-light",
|
| 377 |
-
"@blockquote-font-size": "(@font-size-base * 1.25)",
|
| 378 |
-
"@blockquote-border-color": "@gray-lighter",
|
| 379 |
-
"@page-header-border-color": "@gray-lighter",
|
| 380 |
-
"@dl-horizontal-offset": "@component-offset-horizontal",
|
| 381 |
-
"@dl-horizontal-breakpoint": "@grid-float-breakpoint",
|
| 382 |
-
"@hr-border": "@gray-lighter"
|
| 383 |
-
},
|
| 384 |
-
"css": [
|
| 385 |
-
"grid.less",
|
| 386 |
-
"forms.less",
|
| 387 |
-
"buttons.less",
|
| 388 |
-
"responsive-utilities.less",
|
| 389 |
-
"button-groups.less",
|
| 390 |
-
"input-groups.less",
|
| 391 |
-
"close.less",
|
| 392 |
-
"component-animations.less",
|
| 393 |
-
"modals.less"
|
| 394 |
-
],
|
| 395 |
-
"js": [
|
| 396 |
-
"modal.js",
|
| 397 |
-
"transition.js"
|
| 398 |
-
],
|
| 399 |
-
"customizerUrl": "http://getbootstrap.com/customize/?id=f9591b2f58105c5fa28db0e6eba864bd"
|
| 400 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/font.css
CHANGED
|
File without changes
|
assets/css/vendor/bootstrap/bootstrap.css
CHANGED
|
@@ -1,978 +1,19 @@
|
|
| 1 |
/*!
|
| 2 |
-
* Bootstrap
|
|
|
|
|
|
|
|
|
|
| 3 |
* Copyright 2011-2016 Twitter, Inc.
|
| 4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 5 |
*/
|
| 6 |
|
| 7 |
-
|
| 8 |
-
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=f9591b2f58105c5fa28db0e6eba864bd)
|
| 9 |
-
* Config saved to config.json and https://gist.github.com/f9591b2f58105c5fa28db0e6eba864bd
|
| 10 |
-
*/
|
| 11 |
-
/*!
|
| 12 |
-
* Bootstrap v3.3.6 (http://getbootstrap.com)
|
| 13 |
-
* Copyright 2011-2015 Twitter, Inc.
|
| 14 |
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 15 |
-
*/
|
| 16 |
-
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
| 17 |
-
html {
|
| 18 |
-
font-family: sans-serif;
|
| 19 |
-
-ms-text-size-adjust: 100%;
|
| 20 |
-
-webkit-text-size-adjust: 100%;
|
| 21 |
-
}
|
| 22 |
-
body {
|
| 23 |
-
margin: 0;
|
| 24 |
-
}
|
| 25 |
-
article,
|
| 26 |
-
aside,
|
| 27 |
-
details,
|
| 28 |
-
figcaption,
|
| 29 |
-
figure,
|
| 30 |
-
footer,
|
| 31 |
-
header,
|
| 32 |
-
hgroup,
|
| 33 |
-
main,
|
| 34 |
-
menu,
|
| 35 |
-
nav,
|
| 36 |
-
section,
|
| 37 |
-
summary {
|
| 38 |
-
display: block;
|
| 39 |
-
}
|
| 40 |
-
audio,
|
| 41 |
-
canvas,
|
| 42 |
-
progress,
|
| 43 |
-
video {
|
| 44 |
-
display: inline-block;
|
| 45 |
-
vertical-align: baseline;
|
| 46 |
-
}
|
| 47 |
-
audio:not([controls]) {
|
| 48 |
-
display: none;
|
| 49 |
-
height: 0;
|
| 50 |
-
}
|
| 51 |
-
[hidden],
|
| 52 |
-
template {
|
| 53 |
-
display: none;
|
| 54 |
-
}
|
| 55 |
-
a {
|
| 56 |
-
background-color: transparent;
|
| 57 |
-
}
|
| 58 |
-
a:active,
|
| 59 |
-
a:hover {
|
| 60 |
-
outline: 0;
|
| 61 |
-
}
|
| 62 |
-
abbr[title] {
|
| 63 |
-
border-bottom: 1px dotted;
|
| 64 |
-
}
|
| 65 |
-
b,
|
| 66 |
-
strong {
|
| 67 |
-
font-weight: bold;
|
| 68 |
-
}
|
| 69 |
-
dfn {
|
| 70 |
-
font-style: italic;
|
| 71 |
-
}
|
| 72 |
-
h1 {
|
| 73 |
-
font-size: 2em;
|
| 74 |
-
margin: 0.67em 0;
|
| 75 |
-
}
|
| 76 |
-
mark {
|
| 77 |
-
background: #ff0;
|
| 78 |
-
color: #000;
|
| 79 |
-
}
|
| 80 |
-
small {
|
| 81 |
-
font-size: 80%;
|
| 82 |
-
}
|
| 83 |
-
sub,
|
| 84 |
-
sup {
|
| 85 |
-
font-size: 75%;
|
| 86 |
-
line-height: 0;
|
| 87 |
-
position: relative;
|
| 88 |
-
vertical-align: baseline;
|
| 89 |
-
}
|
| 90 |
-
sup {
|
| 91 |
-
top: -0.5em;
|
| 92 |
-
}
|
| 93 |
-
sub {
|
| 94 |
-
bottom: -0.25em;
|
| 95 |
-
}
|
| 96 |
-
img {
|
| 97 |
-
border: 0;
|
| 98 |
-
}
|
| 99 |
-
svg:not(:root) {
|
| 100 |
-
overflow: hidden;
|
| 101 |
-
}
|
| 102 |
-
figure {
|
| 103 |
-
margin: 1em 40px;
|
| 104 |
-
}
|
| 105 |
-
hr {
|
| 106 |
-
-webkit-box-sizing: content-box;
|
| 107 |
-
-moz-box-sizing: content-box;
|
| 108 |
-
box-sizing: content-box;
|
| 109 |
-
height: 0;
|
| 110 |
-
}
|
| 111 |
-
pre {
|
| 112 |
-
overflow: auto;
|
| 113 |
-
}
|
| 114 |
-
code,
|
| 115 |
-
kbd,
|
| 116 |
-
pre,
|
| 117 |
-
samp {
|
| 118 |
-
font-family: monospace, monospace;
|
| 119 |
-
font-size: 1em;
|
| 120 |
-
}
|
| 121 |
-
button,
|
| 122 |
-
input,
|
| 123 |
-
optgroup,
|
| 124 |
-
select,
|
| 125 |
-
textarea {
|
| 126 |
-
color: inherit;
|
| 127 |
-
font: inherit;
|
| 128 |
-
margin: 0;
|
| 129 |
-
}
|
| 130 |
-
button {
|
| 131 |
-
overflow: visible;
|
| 132 |
-
}
|
| 133 |
-
button,
|
| 134 |
-
select {
|
| 135 |
-
text-transform: none;
|
| 136 |
-
}
|
| 137 |
-
button,
|
| 138 |
-
html input[type="button"],
|
| 139 |
-
input[type="reset"],
|
| 140 |
-
input[type="submit"] {
|
| 141 |
-
-webkit-appearance: button;
|
| 142 |
-
cursor: pointer;
|
| 143 |
-
}
|
| 144 |
-
button[disabled],
|
| 145 |
-
html input[disabled] {
|
| 146 |
-
cursor: default;
|
| 147 |
-
}
|
| 148 |
-
button::-moz-focus-inner,
|
| 149 |
-
input::-moz-focus-inner {
|
| 150 |
-
border: 0;
|
| 151 |
-
padding: 0;
|
| 152 |
-
}
|
| 153 |
-
input {
|
| 154 |
-
line-height: normal;
|
| 155 |
-
}
|
| 156 |
-
input[type="checkbox"],
|
| 157 |
-
input[type="radio"] {
|
| 158 |
-
-webkit-box-sizing: border-box;
|
| 159 |
-
-moz-box-sizing: border-box;
|
| 160 |
-
box-sizing: border-box;
|
| 161 |
-
padding: 0;
|
| 162 |
-
}
|
| 163 |
-
input[type="number"]::-webkit-inner-spin-button,
|
| 164 |
-
input[type="number"]::-webkit-outer-spin-button {
|
| 165 |
-
height: auto;
|
| 166 |
-
}
|
| 167 |
-
input[type="search"] {
|
| 168 |
-
-webkit-appearance: textfield;
|
| 169 |
-
-webkit-box-sizing: content-box;
|
| 170 |
-
-moz-box-sizing: content-box;
|
| 171 |
-
box-sizing: content-box;
|
| 172 |
-
}
|
| 173 |
-
input[type="search"]::-webkit-search-cancel-button,
|
| 174 |
-
input[type="search"]::-webkit-search-decoration {
|
| 175 |
-
-webkit-appearance: none;
|
| 176 |
-
}
|
| 177 |
-
fieldset {
|
| 178 |
-
border: 1px solid #c0c0c0;
|
| 179 |
-
margin: 0 2px;
|
| 180 |
-
padding: 0.35em 0.625em 0.75em;
|
| 181 |
-
}
|
| 182 |
-
legend {
|
| 183 |
-
border: 0;
|
| 184 |
-
padding: 0;
|
| 185 |
-
}
|
| 186 |
-
textarea {
|
| 187 |
-
overflow: auto;
|
| 188 |
-
}
|
| 189 |
-
optgroup {
|
| 190 |
-
font-weight: bold;
|
| 191 |
-
}
|
| 192 |
-
table {
|
| 193 |
-
border-collapse: collapse;
|
| 194 |
-
border-spacing: 0;
|
| 195 |
-
}
|
| 196 |
-
td,
|
| 197 |
-
th {
|
| 198 |
-
padding: 0;
|
| 199 |
-
}
|
| 200 |
-
* {
|
| 201 |
-
-webkit-box-sizing: border-box;
|
| 202 |
-
-moz-box-sizing: border-box;
|
| 203 |
-
box-sizing: border-box;
|
| 204 |
-
}
|
| 205 |
-
*:before,
|
| 206 |
-
*:after {
|
| 207 |
-
-webkit-box-sizing: border-box;
|
| 208 |
-
-moz-box-sizing: border-box;
|
| 209 |
-
box-sizing: border-box;
|
| 210 |
-
}
|
| 211 |
-
html {
|
| 212 |
-
font-size: 10px;
|
| 213 |
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
| 214 |
-
}
|
| 215 |
-
body {
|
| 216 |
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
| 217 |
-
font-size: 14px;
|
| 218 |
-
line-height: 1.42857143;
|
| 219 |
-
color: #333333;
|
| 220 |
-
background-color: transparent;
|
| 221 |
-
}
|
| 222 |
-
input,
|
| 223 |
-
button,
|
| 224 |
-
select,
|
| 225 |
-
textarea {
|
| 226 |
-
font-family: inherit;
|
| 227 |
-
font-size: inherit;
|
| 228 |
-
line-height: inherit;
|
| 229 |
-
}
|
| 230 |
-
a {
|
| 231 |
-
color: #337ab7;
|
| 232 |
-
text-decoration: none;
|
| 233 |
-
}
|
| 234 |
-
a:hover,
|
| 235 |
-
a:focus {
|
| 236 |
-
color: #23527c;
|
| 237 |
-
text-decoration: underline;
|
| 238 |
-
}
|
| 239 |
-
a:focus {
|
| 240 |
-
outline: thin dotted;
|
| 241 |
-
outline: 5px auto -webkit-focus-ring-color;
|
| 242 |
-
outline-offset: -2px;
|
| 243 |
-
}
|
| 244 |
-
figure {
|
| 245 |
-
margin: 0;
|
| 246 |
-
}
|
| 247 |
-
img {
|
| 248 |
-
vertical-align: middle;
|
| 249 |
-
}
|
| 250 |
-
.img-responsive {
|
| 251 |
-
display: block;
|
| 252 |
-
max-width: 100%;
|
| 253 |
-
height: auto;
|
| 254 |
-
}
|
| 255 |
-
.img-rounded {
|
| 256 |
-
border-radius: 6px;
|
| 257 |
-
}
|
| 258 |
-
.img-thumbnail {
|
| 259 |
-
padding: 4px;
|
| 260 |
-
line-height: 1.42857143;
|
| 261 |
-
background-color: transparent;
|
| 262 |
-
border: 1px solid #dddddd;
|
| 263 |
-
border-radius: 4px;
|
| 264 |
-
-webkit-transition: all 0.2s ease-in-out;
|
| 265 |
-
-o-transition: all 0.2s ease-in-out;
|
| 266 |
-
transition: all 0.2s ease-in-out;
|
| 267 |
-
display: inline-block;
|
| 268 |
-
max-width: 100%;
|
| 269 |
-
height: auto;
|
| 270 |
-
}
|
| 271 |
-
.img-circle {
|
| 272 |
-
border-radius: 50%;
|
| 273 |
-
}
|
| 274 |
-
hr {
|
| 275 |
-
margin-top: 20px;
|
| 276 |
-
margin-bottom: 20px;
|
| 277 |
-
border: 0;
|
| 278 |
-
border-top: 1px solid #eeeeee;
|
| 279 |
-
}
|
| 280 |
-
.sr-only {
|
| 281 |
-
position: absolute;
|
| 282 |
-
width: 1px;
|
| 283 |
-
height: 1px;
|
| 284 |
-
margin: -1px;
|
| 285 |
-
padding: 0;
|
| 286 |
-
overflow: hidden;
|
| 287 |
-
clip: rect(0, 0, 0, 0);
|
| 288 |
-
border: 0;
|
| 289 |
-
}
|
| 290 |
-
.sr-only-focusable:active,
|
| 291 |
-
.sr-only-focusable:focus {
|
| 292 |
-
position: static;
|
| 293 |
-
width: auto;
|
| 294 |
-
height: auto;
|
| 295 |
-
margin: 0;
|
| 296 |
-
overflow: visible;
|
| 297 |
-
clip: auto;
|
| 298 |
-
}
|
| 299 |
-
[role="button"] {
|
| 300 |
-
cursor: pointer;
|
| 301 |
-
}
|
| 302 |
-
.container {
|
| 303 |
-
margin-right: auto;
|
| 304 |
-
margin-left: auto;
|
| 305 |
-
padding-left: 15px;
|
| 306 |
-
padding-right: 15px;
|
| 307 |
-
}
|
| 308 |
-
@media (min-width: 768px) {
|
| 309 |
-
.container {
|
| 310 |
-
width: 750px;
|
| 311 |
-
}
|
| 312 |
-
}
|
| 313 |
-
@media (min-width: 992px) {
|
| 314 |
-
.container {
|
| 315 |
-
width: 970px;
|
| 316 |
-
}
|
| 317 |
-
}
|
| 318 |
-
@media (min-width: 1200px) {
|
| 319 |
-
.container {
|
| 320 |
-
width: 1170px;
|
| 321 |
-
}
|
| 322 |
-
}
|
| 323 |
-
.container-fluid {
|
| 324 |
-
margin-right: auto;
|
| 325 |
-
margin-left: auto;
|
| 326 |
-
padding-left: 15px;
|
| 327 |
-
padding-right: 15px;
|
| 328 |
-
}
|
| 329 |
-
.row {
|
| 330 |
-
margin-left: -15px;
|
| 331 |
-
margin-right: -15px;
|
| 332 |
-
}
|
| 333 |
-
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
|
| 334 |
-
position: relative;
|
| 335 |
-
min-height: 1px;
|
| 336 |
-
padding-left: 15px;
|
| 337 |
-
padding-right: 15px;
|
| 338 |
-
}
|
| 339 |
-
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
|
| 340 |
-
float: left;
|
| 341 |
-
}
|
| 342 |
-
.col-xs-12 {
|
| 343 |
-
width: 100%;
|
| 344 |
-
}
|
| 345 |
-
.col-xs-11 {
|
| 346 |
-
width: 91.66666667%;
|
| 347 |
-
}
|
| 348 |
-
.col-xs-10 {
|
| 349 |
-
width: 83.33333333%;
|
| 350 |
-
}
|
| 351 |
-
.col-xs-9 {
|
| 352 |
-
width: 75%;
|
| 353 |
-
}
|
| 354 |
-
.col-xs-8 {
|
| 355 |
-
width: 66.66666667%;
|
| 356 |
-
}
|
| 357 |
-
.col-xs-7 {
|
| 358 |
-
width: 58.33333333%;
|
| 359 |
-
}
|
| 360 |
-
.col-xs-6 {
|
| 361 |
-
width: 50%;
|
| 362 |
-
}
|
| 363 |
-
.col-xs-5 {
|
| 364 |
-
width: 41.66666667%;
|
| 365 |
-
}
|
| 366 |
-
.col-xs-4 {
|
| 367 |
-
width: 33.33333333%;
|
| 368 |
-
}
|
| 369 |
-
.col-xs-3 {
|
| 370 |
-
width: 25%;
|
| 371 |
-
}
|
| 372 |
-
.col-xs-2 {
|
| 373 |
-
width: 16.66666667%;
|
| 374 |
-
}
|
| 375 |
-
.col-xs-1 {
|
| 376 |
-
width: 8.33333333%;
|
| 377 |
-
}
|
| 378 |
-
.col-xs-pull-12 {
|
| 379 |
-
right: 100%;
|
| 380 |
-
}
|
| 381 |
-
.col-xs-pull-11 {
|
| 382 |
-
right: 91.66666667%;
|
| 383 |
-
}
|
| 384 |
-
.col-xs-pull-10 {
|
| 385 |
-
right: 83.33333333%;
|
| 386 |
-
}
|
| 387 |
-
.col-xs-pull-9 {
|
| 388 |
-
right: 75%;
|
| 389 |
-
}
|
| 390 |
-
.col-xs-pull-8 {
|
| 391 |
-
right: 66.66666667%;
|
| 392 |
-
}
|
| 393 |
-
.col-xs-pull-7 {
|
| 394 |
-
right: 58.33333333%;
|
| 395 |
-
}
|
| 396 |
-
.col-xs-pull-6 {
|
| 397 |
-
right: 50%;
|
| 398 |
-
}
|
| 399 |
-
.col-xs-pull-5 {
|
| 400 |
-
right: 41.66666667%;
|
| 401 |
-
}
|
| 402 |
-
.col-xs-pull-4 {
|
| 403 |
-
right: 33.33333333%;
|
| 404 |
-
}
|
| 405 |
-
.col-xs-pull-3 {
|
| 406 |
-
right: 25%;
|
| 407 |
-
}
|
| 408 |
-
.col-xs-pull-2 {
|
| 409 |
-
right: 16.66666667%;
|
| 410 |
-
}
|
| 411 |
-
.col-xs-pull-1 {
|
| 412 |
-
right: 8.33333333%;
|
| 413 |
-
}
|
| 414 |
-
.col-xs-pull-0 {
|
| 415 |
-
right: auto;
|
| 416 |
-
}
|
| 417 |
-
.col-xs-push-12 {
|
| 418 |
-
left: 100%;
|
| 419 |
-
}
|
| 420 |
-
.col-xs-push-11 {
|
| 421 |
-
left: 91.66666667%;
|
| 422 |
-
}
|
| 423 |
-
.col-xs-push-10 {
|
| 424 |
-
left: 83.33333333%;
|
| 425 |
-
}
|
| 426 |
-
.col-xs-push-9 {
|
| 427 |
-
left: 75%;
|
| 428 |
-
}
|
| 429 |
-
.col-xs-push-8 {
|
| 430 |
-
left: 66.66666667%;
|
| 431 |
-
}
|
| 432 |
-
.col-xs-push-7 {
|
| 433 |
-
left: 58.33333333%;
|
| 434 |
-
}
|
| 435 |
-
.col-xs-push-6 {
|
| 436 |
-
left: 50%;
|
| 437 |
-
}
|
| 438 |
-
.col-xs-push-5 {
|
| 439 |
-
left: 41.66666667%;
|
| 440 |
-
}
|
| 441 |
-
.col-xs-push-4 {
|
| 442 |
-
left: 33.33333333%;
|
| 443 |
-
}
|
| 444 |
-
.col-xs-push-3 {
|
| 445 |
-
left: 25%;
|
| 446 |
-
}
|
| 447 |
-
.col-xs-push-2 {
|
| 448 |
-
left: 16.66666667%;
|
| 449 |
-
}
|
| 450 |
-
.col-xs-push-1 {
|
| 451 |
-
left: 8.33333333%;
|
| 452 |
-
}
|
| 453 |
-
.col-xs-push-0 {
|
| 454 |
-
left: auto;
|
| 455 |
-
}
|
| 456 |
-
.col-xs-offset-12 {
|
| 457 |
-
margin-left: 100%;
|
| 458 |
-
}
|
| 459 |
-
.col-xs-offset-11 {
|
| 460 |
-
margin-left: 91.66666667%;
|
| 461 |
-
}
|
| 462 |
-
.col-xs-offset-10 {
|
| 463 |
-
margin-left: 83.33333333%;
|
| 464 |
-
}
|
| 465 |
-
.col-xs-offset-9 {
|
| 466 |
-
margin-left: 75%;
|
| 467 |
-
}
|
| 468 |
-
.col-xs-offset-8 {
|
| 469 |
-
margin-left: 66.66666667%;
|
| 470 |
-
}
|
| 471 |
-
.col-xs-offset-7 {
|
| 472 |
-
margin-left: 58.33333333%;
|
| 473 |
-
}
|
| 474 |
-
.col-xs-offset-6 {
|
| 475 |
-
margin-left: 50%;
|
| 476 |
-
}
|
| 477 |
-
.col-xs-offset-5 {
|
| 478 |
-
margin-left: 41.66666667%;
|
| 479 |
-
}
|
| 480 |
-
.col-xs-offset-4 {
|
| 481 |
-
margin-left: 33.33333333%;
|
| 482 |
-
}
|
| 483 |
-
.col-xs-offset-3 {
|
| 484 |
-
margin-left: 25%;
|
| 485 |
-
}
|
| 486 |
-
.col-xs-offset-2 {
|
| 487 |
-
margin-left: 16.66666667%;
|
| 488 |
-
}
|
| 489 |
-
.col-xs-offset-1 {
|
| 490 |
-
margin-left: 8.33333333%;
|
| 491 |
-
}
|
| 492 |
-
.col-xs-offset-0 {
|
| 493 |
-
margin-left: 0%;
|
| 494 |
-
}
|
| 495 |
-
@media (min-width: 768px) {
|
| 496 |
-
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
|
| 497 |
-
float: left;
|
| 498 |
-
}
|
| 499 |
-
.col-sm-12 {
|
| 500 |
-
width: 100%;
|
| 501 |
-
}
|
| 502 |
-
.col-sm-11 {
|
| 503 |
-
width: 91.66666667%;
|
| 504 |
-
}
|
| 505 |
-
.col-sm-10 {
|
| 506 |
-
width: 83.33333333%;
|
| 507 |
-
}
|
| 508 |
-
.col-sm-9 {
|
| 509 |
-
width: 75%;
|
| 510 |
-
}
|
| 511 |
-
.col-sm-8 {
|
| 512 |
-
width: 66.66666667%;
|
| 513 |
-
}
|
| 514 |
-
.col-sm-7 {
|
| 515 |
-
width: 58.33333333%;
|
| 516 |
-
}
|
| 517 |
-
.col-sm-6 {
|
| 518 |
-
width: 50%;
|
| 519 |
-
}
|
| 520 |
-
.col-sm-5 {
|
| 521 |
-
width: 41.66666667%;
|
| 522 |
-
}
|
| 523 |
-
.col-sm-4 {
|
| 524 |
-
width: 33.33333333%;
|
| 525 |
-
}
|
| 526 |
-
.col-sm-3 {
|
| 527 |
-
width: 25%;
|
| 528 |
-
}
|
| 529 |
-
.col-sm-2 {
|
| 530 |
-
width: 16.66666667%;
|
| 531 |
-
}
|
| 532 |
-
.col-sm-1 {
|
| 533 |
-
width: 8.33333333%;
|
| 534 |
-
}
|
| 535 |
-
.col-sm-pull-12 {
|
| 536 |
-
right: 100%;
|
| 537 |
-
}
|
| 538 |
-
.col-sm-pull-11 {
|
| 539 |
-
right: 91.66666667%;
|
| 540 |
-
}
|
| 541 |
-
.col-sm-pull-10 {
|
| 542 |
-
right: 83.33333333%;
|
| 543 |
-
}
|
| 544 |
-
.col-sm-pull-9 {
|
| 545 |
-
right: 75%;
|
| 546 |
-
}
|
| 547 |
-
.col-sm-pull-8 {
|
| 548 |
-
right: 66.66666667%;
|
| 549 |
-
}
|
| 550 |
-
.col-sm-pull-7 {
|
| 551 |
-
right: 58.33333333%;
|
| 552 |
-
}
|
| 553 |
-
.col-sm-pull-6 {
|
| 554 |
-
right: 50%;
|
| 555 |
-
}
|
| 556 |
-
.col-sm-pull-5 {
|
| 557 |
-
right: 41.66666667%;
|
| 558 |
-
}
|
| 559 |
-
.col-sm-pull-4 {
|
| 560 |
-
right: 33.33333333%;
|
| 561 |
-
}
|
| 562 |
-
.col-sm-pull-3 {
|
| 563 |
-
right: 25%;
|
| 564 |
-
}
|
| 565 |
-
.col-sm-pull-2 {
|
| 566 |
-
right: 16.66666667%;
|
| 567 |
-
}
|
| 568 |
-
.col-sm-pull-1 {
|
| 569 |
-
right: 8.33333333%;
|
| 570 |
-
}
|
| 571 |
-
.col-sm-pull-0 {
|
| 572 |
-
right: auto;
|
| 573 |
-
}
|
| 574 |
-
.col-sm-push-12 {
|
| 575 |
-
left: 100%;
|
| 576 |
-
}
|
| 577 |
-
.col-sm-push-11 {
|
| 578 |
-
left: 91.66666667%;
|
| 579 |
-
}
|
| 580 |
-
.col-sm-push-10 {
|
| 581 |
-
left: 83.33333333%;
|
| 582 |
-
}
|
| 583 |
-
.col-sm-push-9 {
|
| 584 |
-
left: 75%;
|
| 585 |
-
}
|
| 586 |
-
.col-sm-push-8 {
|
| 587 |
-
left: 66.66666667%;
|
| 588 |
-
}
|
| 589 |
-
.col-sm-push-7 {
|
| 590 |
-
left: 58.33333333%;
|
| 591 |
-
}
|
| 592 |
-
.col-sm-push-6 {
|
| 593 |
-
left: 50%;
|
| 594 |
-
}
|
| 595 |
-
.col-sm-push-5 {
|
| 596 |
-
left: 41.66666667%;
|
| 597 |
-
}
|
| 598 |
-
.col-sm-push-4 {
|
| 599 |
-
left: 33.33333333%;
|
| 600 |
-
}
|
| 601 |
-
.col-sm-push-3 {
|
| 602 |
-
left: 25%;
|
| 603 |
-
}
|
| 604 |
-
.col-sm-push-2 {
|
| 605 |
-
left: 16.66666667%;
|
| 606 |
-
}
|
| 607 |
-
.col-sm-push-1 {
|
| 608 |
-
left: 8.33333333%;
|
| 609 |
-
}
|
| 610 |
-
.col-sm-push-0 {
|
| 611 |
-
left: auto;
|
| 612 |
-
}
|
| 613 |
-
.col-sm-offset-12 {
|
| 614 |
-
margin-left: 100%;
|
| 615 |
-
}
|
| 616 |
-
.col-sm-offset-11 {
|
| 617 |
-
margin-left: 91.66666667%;
|
| 618 |
-
}
|
| 619 |
-
.col-sm-offset-10 {
|
| 620 |
-
margin-left: 83.33333333%;
|
| 621 |
-
}
|
| 622 |
-
.col-sm-offset-9 {
|
| 623 |
-
margin-left: 75%;
|
| 624 |
-
}
|
| 625 |
-
.col-sm-offset-8 {
|
| 626 |
-
margin-left: 66.66666667%;
|
| 627 |
-
}
|
| 628 |
-
.col-sm-offset-7 {
|
| 629 |
-
margin-left: 58.33333333%;
|
| 630 |
-
}
|
| 631 |
-
.col-sm-offset-6 {
|
| 632 |
-
margin-left: 50%;
|
| 633 |
-
}
|
| 634 |
-
.col-sm-offset-5 {
|
| 635 |
-
margin-left: 41.66666667%;
|
| 636 |
-
}
|
| 637 |
-
.col-sm-offset-4 {
|
| 638 |
-
margin-left: 33.33333333%;
|
| 639 |
-
}
|
| 640 |
-
.col-sm-offset-3 {
|
| 641 |
-
margin-left: 25%;
|
| 642 |
-
}
|
| 643 |
-
.col-sm-offset-2 {
|
| 644 |
-
margin-left: 16.66666667%;
|
| 645 |
-
}
|
| 646 |
-
.col-sm-offset-1 {
|
| 647 |
-
margin-left: 8.33333333%;
|
| 648 |
-
}
|
| 649 |
-
.col-sm-offset-0 {
|
| 650 |
-
margin-left: 0%;
|
| 651 |
-
}
|
| 652 |
-
}
|
| 653 |
-
@media (min-width: 992px) {
|
| 654 |
-
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
|
| 655 |
-
float: left;
|
| 656 |
-
}
|
| 657 |
-
.col-md-12 {
|
| 658 |
-
width: 100%;
|
| 659 |
-
}
|
| 660 |
-
.col-md-11 {
|
| 661 |
-
width: 91.66666667%;
|
| 662 |
-
}
|
| 663 |
-
.col-md-10 {
|
| 664 |
-
width: 83.33333333%;
|
| 665 |
-
}
|
| 666 |
-
.col-md-9 {
|
| 667 |
-
width: 75%;
|
| 668 |
-
}
|
| 669 |
-
.col-md-8 {
|
| 670 |
-
width: 66.66666667%;
|
| 671 |
-
}
|
| 672 |
-
.col-md-7 {
|
| 673 |
-
width: 58.33333333%;
|
| 674 |
-
}
|
| 675 |
-
.col-md-6 {
|
| 676 |
-
width: 50%;
|
| 677 |
-
}
|
| 678 |
-
.col-md-5 {
|
| 679 |
-
width: 41.66666667%;
|
| 680 |
-
}
|
| 681 |
-
.col-md-4 {
|
| 682 |
-
width: 33.33333333%;
|
| 683 |
-
}
|
| 684 |
-
.col-md-3 {
|
| 685 |
-
width: 25%;
|
| 686 |
-
}
|
| 687 |
-
.col-md-2 {
|
| 688 |
-
width: 16.66666667%;
|
| 689 |
-
}
|
| 690 |
-
.col-md-1 {
|
| 691 |
-
width: 8.33333333%;
|
| 692 |
-
}
|
| 693 |
-
.col-md-pull-12 {
|
| 694 |
-
right: 100%;
|
| 695 |
-
}
|
| 696 |
-
.col-md-pull-11 {
|
| 697 |
-
right: 91.66666667%;
|
| 698 |
-
}
|
| 699 |
-
.col-md-pull-10 {
|
| 700 |
-
right: 83.33333333%;
|
| 701 |
-
}
|
| 702 |
-
.col-md-pull-9 {
|
| 703 |
-
right: 75%;
|
| 704 |
-
}
|
| 705 |
-
.col-md-pull-8 {
|
| 706 |
-
right: 66.66666667%;
|
| 707 |
-
}
|
| 708 |
-
.col-md-pull-7 {
|
| 709 |
-
right: 58.33333333%;
|
| 710 |
-
}
|
| 711 |
-
.col-md-pull-6 {
|
| 712 |
-
right: 50%;
|
| 713 |
-
}
|
| 714 |
-
.col-md-pull-5 {
|
| 715 |
-
right: 41.66666667%;
|
| 716 |
-
}
|
| 717 |
-
.col-md-pull-4 {
|
| 718 |
-
right: 33.33333333%;
|
| 719 |
-
}
|
| 720 |
-
.col-md-pull-3 {
|
| 721 |
-
right: 25%;
|
| 722 |
-
}
|
| 723 |
-
.col-md-pull-2 {
|
| 724 |
-
right: 16.66666667%;
|
| 725 |
-
}
|
| 726 |
-
.col-md-pull-1 {
|
| 727 |
-
right: 8.33333333%;
|
| 728 |
-
}
|
| 729 |
-
.col-md-pull-0 {
|
| 730 |
-
right: auto;
|
| 731 |
-
}
|
| 732 |
-
.col-md-push-12 {
|
| 733 |
-
left: 100%;
|
| 734 |
-
}
|
| 735 |
-
.col-md-push-11 {
|
| 736 |
-
left: 91.66666667%;
|
| 737 |
-
}
|
| 738 |
-
.col-md-push-10 {
|
| 739 |
-
left: 83.33333333%;
|
| 740 |
-
}
|
| 741 |
-
.col-md-push-9 {
|
| 742 |
-
left: 75%;
|
| 743 |
-
}
|
| 744 |
-
.col-md-push-8 {
|
| 745 |
-
left: 66.66666667%;
|
| 746 |
-
}
|
| 747 |
-
.col-md-push-7 {
|
| 748 |
-
left: 58.33333333%;
|
| 749 |
-
}
|
| 750 |
-
.col-md-push-6 {
|
| 751 |
-
left: 50%;
|
| 752 |
-
}
|
| 753 |
-
.col-md-push-5 {
|
| 754 |
-
left: 41.66666667%;
|
| 755 |
-
}
|
| 756 |
-
.col-md-push-4 {
|
| 757 |
-
left: 33.33333333%;
|
| 758 |
-
}
|
| 759 |
-
.col-md-push-3 {
|
| 760 |
-
left: 25%;
|
| 761 |
-
}
|
| 762 |
-
.col-md-push-2 {
|
| 763 |
-
left: 16.66666667%;
|
| 764 |
-
}
|
| 765 |
-
.col-md-push-1 {
|
| 766 |
-
left: 8.33333333%;
|
| 767 |
-
}
|
| 768 |
-
.col-md-push-0 {
|
| 769 |
-
left: auto;
|
| 770 |
-
}
|
| 771 |
-
.col-md-offset-12 {
|
| 772 |
-
margin-left: 100%;
|
| 773 |
-
}
|
| 774 |
-
.col-md-offset-11 {
|
| 775 |
-
margin-left: 91.66666667%;
|
| 776 |
-
}
|
| 777 |
-
.col-md-offset-10 {
|
| 778 |
-
margin-left: 83.33333333%;
|
| 779 |
-
}
|
| 780 |
-
.col-md-offset-9 {
|
| 781 |
-
margin-left: 75%;
|
| 782 |
-
}
|
| 783 |
-
.col-md-offset-8 {
|
| 784 |
-
margin-left: 66.66666667%;
|
| 785 |
-
}
|
| 786 |
-
.col-md-offset-7 {
|
| 787 |
-
margin-left: 58.33333333%;
|
| 788 |
-
}
|
| 789 |
-
.col-md-offset-6 {
|
| 790 |
-
margin-left: 50%;
|
| 791 |
-
}
|
| 792 |
-
.col-md-offset-5 {
|
| 793 |
-
margin-left: 41.66666667%;
|
| 794 |
-
}
|
| 795 |
-
.col-md-offset-4 {
|
| 796 |
-
margin-left: 33.33333333%;
|
| 797 |
-
}
|
| 798 |
-
.col-md-offset-3 {
|
| 799 |
-
margin-left: 25%;
|
| 800 |
-
}
|
| 801 |
-
.col-md-offset-2 {
|
| 802 |
-
margin-left: 16.66666667%;
|
| 803 |
-
}
|
| 804 |
-
.col-md-offset-1 {
|
| 805 |
-
margin-left: 8.33333333%;
|
| 806 |
-
}
|
| 807 |
-
.col-md-offset-0 {
|
| 808 |
-
margin-left: 0%;
|
| 809 |
-
}
|
| 810 |
-
}
|
| 811 |
-
@media (min-width: 1200px) {
|
| 812 |
-
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
|
| 813 |
-
float: left;
|
| 814 |
-
}
|
| 815 |
-
.col-lg-12 {
|
| 816 |
-
width: 100%;
|
| 817 |
-
}
|
| 818 |
-
.col-lg-11 {
|
| 819 |
-
width: 91.66666667%;
|
| 820 |
-
}
|
| 821 |
-
.col-lg-10 {
|
| 822 |
-
width: 83.33333333%;
|
| 823 |
-
}
|
| 824 |
-
.col-lg-9 {
|
| 825 |
-
width: 75%;
|
| 826 |
-
}
|
| 827 |
-
.col-lg-8 {
|
| 828 |
-
width: 66.66666667%;
|
| 829 |
-
}
|
| 830 |
-
.col-lg-7 {
|
| 831 |
-
width: 58.33333333%;
|
| 832 |
-
}
|
| 833 |
-
.col-lg-6 {
|
| 834 |
-
width: 50%;
|
| 835 |
-
}
|
| 836 |
-
.col-lg-5 {
|
| 837 |
-
width: 41.66666667%;
|
| 838 |
-
}
|
| 839 |
-
.col-lg-4 {
|
| 840 |
-
width: 33.33333333%;
|
| 841 |
-
}
|
| 842 |
-
.col-lg-3 {
|
| 843 |
-
width: 25%;
|
| 844 |
-
}
|
| 845 |
-
.col-lg-2 {
|
| 846 |
-
width: 16.66666667%;
|
| 847 |
-
}
|
| 848 |
-
.col-lg-1 {
|
| 849 |
-
width: 8.33333333%;
|
| 850 |
-
}
|
| 851 |
-
.col-lg-pull-12 {
|
| 852 |
-
right: 100%;
|
| 853 |
-
}
|
| 854 |
-
.col-lg-pull-11 {
|
| 855 |
-
right: 91.66666667%;
|
| 856 |
-
}
|
| 857 |
-
.col-lg-pull-10 {
|
| 858 |
-
right: 83.33333333%;
|
| 859 |
-
}
|
| 860 |
-
.col-lg-pull-9 {
|
| 861 |
-
right: 75%;
|
| 862 |
-
}
|
| 863 |
-
.col-lg-pull-8 {
|
| 864 |
-
right: 66.66666667%;
|
| 865 |
-
}
|
| 866 |
-
.col-lg-pull-7 {
|
| 867 |
-
right: 58.33333333%;
|
| 868 |
-
}
|
| 869 |
-
.col-lg-pull-6 {
|
| 870 |
-
right: 50%;
|
| 871 |
-
}
|
| 872 |
-
.col-lg-pull-5 {
|
| 873 |
-
right: 41.66666667%;
|
| 874 |
-
}
|
| 875 |
-
.col-lg-pull-4 {
|
| 876 |
-
right: 33.33333333%;
|
| 877 |
-
}
|
| 878 |
-
.col-lg-pull-3 {
|
| 879 |
-
right: 25%;
|
| 880 |
-
}
|
| 881 |
-
.col-lg-pull-2 {
|
| 882 |
-
right: 16.66666667%;
|
| 883 |
-
}
|
| 884 |
-
.col-lg-pull-1 {
|
| 885 |
-
right: 8.33333333%;
|
| 886 |
-
}
|
| 887 |
-
.col-lg-pull-0 {
|
| 888 |
-
right: auto;
|
| 889 |
-
}
|
| 890 |
-
.col-lg-push-12 {
|
| 891 |
-
left: 100%;
|
| 892 |
-
}
|
| 893 |
-
.col-lg-push-11 {
|
| 894 |
-
left: 91.66666667%;
|
| 895 |
-
}
|
| 896 |
-
.col-lg-push-10 {
|
| 897 |
-
left: 83.33333333%;
|
| 898 |
-
}
|
| 899 |
-
.col-lg-push-9 {
|
| 900 |
-
left: 75%;
|
| 901 |
-
}
|
| 902 |
-
.col-lg-push-8 {
|
| 903 |
-
left: 66.66666667%;
|
| 904 |
-
}
|
| 905 |
-
.col-lg-push-7 {
|
| 906 |
-
left: 58.33333333%;
|
| 907 |
-
}
|
| 908 |
-
.col-lg-push-6 {
|
| 909 |
-
left: 50%;
|
| 910 |
-
}
|
| 911 |
-
.col-lg-push-5 {
|
| 912 |
-
left: 41.66666667%;
|
| 913 |
-
}
|
| 914 |
-
.col-lg-push-4 {
|
| 915 |
-
left: 33.33333333%;
|
| 916 |
-
}
|
| 917 |
-
.col-lg-push-3 {
|
| 918 |
-
left: 25%;
|
| 919 |
-
}
|
| 920 |
-
.col-lg-push-2 {
|
| 921 |
-
left: 16.66666667%;
|
| 922 |
-
}
|
| 923 |
-
.col-lg-push-1 {
|
| 924 |
-
left: 8.33333333%;
|
| 925 |
-
}
|
| 926 |
-
.col-lg-push-0 {
|
| 927 |
-
left: auto;
|
| 928 |
-
}
|
| 929 |
-
.col-lg-offset-12 {
|
| 930 |
-
margin-left: 100%;
|
| 931 |
-
}
|
| 932 |
-
.col-lg-offset-11 {
|
| 933 |
-
margin-left: 91.66666667%;
|
| 934 |
-
}
|
| 935 |
-
.col-lg-offset-10 {
|
| 936 |
-
margin-left: 83.33333333%;
|
| 937 |
-
}
|
| 938 |
-
.col-lg-offset-9 {
|
| 939 |
-
margin-left: 75%;
|
| 940 |
-
}
|
| 941 |
-
.col-lg-offset-8 {
|
| 942 |
-
margin-left: 66.66666667%;
|
| 943 |
-
}
|
| 944 |
-
.col-lg-offset-7 {
|
| 945 |
-
margin-left: 58.33333333%;
|
| 946 |
-
}
|
| 947 |
-
.col-lg-offset-6 {
|
| 948 |
-
margin-left: 50%;
|
| 949 |
-
}
|
| 950 |
-
.col-lg-offset-5 {
|
| 951 |
-
margin-left: 41.66666667%;
|
| 952 |
-
}
|
| 953 |
-
.col-lg-offset-4 {
|
| 954 |
-
margin-left: 33.33333333%;
|
| 955 |
-
}
|
| 956 |
-
.col-lg-offset-3 {
|
| 957 |
-
margin-left: 25%;
|
| 958 |
-
}
|
| 959 |
-
.col-lg-offset-2 {
|
| 960 |
-
margin-left: 16.66666667%;
|
| 961 |
-
}
|
| 962 |
-
.col-lg-offset-1 {
|
| 963 |
-
margin-left: 8.33333333%;
|
| 964 |
-
}
|
| 965 |
-
.col-lg-offset-0 {
|
| 966 |
-
margin-left: 0%;
|
| 967 |
-
}
|
| 968 |
-
}
|
| 969 |
-
fieldset {
|
| 970 |
padding: 0;
|
| 971 |
margin: 0;
|
| 972 |
border: 0;
|
| 973 |
-
min-width: 0;
|
| 974 |
-
|
| 975 |
-
legend {
|
| 976 |
display: block;
|
| 977 |
width: 100%;
|
| 978 |
padding: 0;
|
|
@@ -981,289 +22,275 @@ legend {
|
|
| 981 |
line-height: inherit;
|
| 982 |
color: #333333;
|
| 983 |
border: 0;
|
| 984 |
-
border-bottom: 1px solid #e5e5e5;
|
| 985 |
-
|
| 986 |
-
label {
|
| 987 |
display: inline-block;
|
| 988 |
max-width: 100%;
|
| 989 |
margin-bottom: 5px;
|
| 990 |
-
font-weight: bold;
|
| 991 |
-
|
| 992 |
-
input[type="search"] {
|
| 993 |
-
|
| 994 |
-
|
| 995 |
-
|
| 996 |
-
|
| 997 |
-
input[type="radio"],
|
| 998 |
-
input[type="checkbox"] {
|
| 999 |
margin: 4px 0 0;
|
| 1000 |
margin-top: 1px \9;
|
| 1001 |
-
line-height: normal;
|
| 1002 |
-
|
| 1003 |
-
input[type="file"] {
|
| 1004 |
-
display: block;
|
| 1005 |
-
|
| 1006 |
-
input[type="range"] {
|
| 1007 |
display: block;
|
| 1008 |
-
width: 100%;
|
| 1009 |
-
|
| 1010 |
-
select[multiple],
|
| 1011 |
-
select[size] {
|
| 1012 |
-
height: auto;
|
| 1013 |
-
|
| 1014 |
-
input[type="file"]:focus,
|
| 1015 |
-
input[type="radio"]:focus,
|
| 1016 |
-
input[type="checkbox"]:focus {
|
| 1017 |
-
outline: thin dotted;
|
| 1018 |
outline: 5px auto -webkit-focus-ring-color;
|
| 1019 |
-
outline-offset: -2px;
|
| 1020 |
-
|
| 1021 |
-
output {
|
| 1022 |
display: block;
|
| 1023 |
padding-top: 7px;
|
| 1024 |
font-size: 14px;
|
| 1025 |
-
line-height: 1.
|
| 1026 |
-
color: #555555;
|
| 1027 |
-
|
| 1028 |
-
.form-control {
|
| 1029 |
display: block;
|
| 1030 |
width: 100%;
|
| 1031 |
height: 34px;
|
| 1032 |
padding: 6px 12px;
|
| 1033 |
font-size: 14px;
|
| 1034 |
-
line-height: 1.
|
| 1035 |
color: #555555;
|
| 1036 |
-
background-color: #
|
| 1037 |
background-image: none;
|
| 1038 |
-
border: 1px solid #
|
| 1039 |
border-radius: 4px;
|
| 1040 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
| 1041 |
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
| 1042 |
-
|
| 1043 |
-
-
|
| 1044 |
-
|
| 1045 |
-
|
| 1046 |
-
|
| 1047 |
-
|
| 1048 |
-
|
| 1049 |
-
|
| 1050 |
-
|
| 1051 |
-
}
|
| 1052 |
-
.form-control::-
|
| 1053 |
-
|
| 1054 |
-
|
| 1055 |
-
|
| 1056 |
-
|
| 1057 |
-
|
| 1058 |
-
|
| 1059 |
-
|
| 1060 |
-
|
| 1061 |
-
|
| 1062 |
-
.form-control
|
| 1063 |
-
|
| 1064 |
-
|
| 1065 |
-
|
| 1066 |
-
|
| 1067 |
-
|
| 1068 |
-
|
| 1069 |
-
|
| 1070 |
-
|
| 1071 |
-
}
|
| 1072 |
-
.form-control[disabled],
|
| 1073 |
-
fieldset[disabled] .form-control {
|
| 1074 |
-
cursor: not-allowed;
|
| 1075 |
-
}
|
| 1076 |
-
textarea.form-control {
|
| 1077 |
-
height: auto;
|
| 1078 |
-
}
|
| 1079 |
-
input[type="search"] {
|
| 1080 |
-
-webkit-appearance: none;
|
| 1081 |
-
}
|
| 1082 |
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
| 1083 |
-
input[type="date"].form-control,
|
| 1084 |
-
input[type="time"].form-control,
|
| 1085 |
-
input[type="datetime-local"].form-control,
|
| 1086 |
-
input[type="month"].form-control {
|
| 1087 |
-
line-height: 34px;
|
| 1088 |
-
|
| 1089 |
-
input[type="date"]
|
| 1090 |
-
input[type="time"].input-sm,
|
| 1091 |
-
|
| 1092 |
-
input[type="
|
| 1093 |
-
.input-group-sm input[type="
|
| 1094 |
-
.input-group-sm
|
| 1095 |
-
.
|
| 1096 |
-
.input-group-sm input[type="month"]
|
| 1097 |
-
|
| 1098 |
-
|
| 1099 |
-
|
| 1100 |
-
input[type="
|
| 1101 |
-
input[type="
|
| 1102 |
-
input[type="
|
| 1103 |
-
.input-group-lg
|
| 1104 |
-
.
|
| 1105 |
-
.input-group-lg input[type="datetime-local"],
|
| 1106 |
-
.input-group-lg
|
| 1107 |
-
|
| 1108 |
-
|
| 1109 |
-
|
| 1110 |
-
.
|
| 1111 |
-
|
| 1112 |
-
|
| 1113 |
-
.
|
| 1114 |
-
|
|
|
|
|
|
|
|
|
|
| 1115 |
position: relative;
|
| 1116 |
display: block;
|
| 1117 |
margin-top: 10px;
|
| 1118 |
-
margin-bottom: 10px;
|
| 1119 |
-
|
| 1120 |
-
.
|
| 1121 |
-
|
| 1122 |
-
|
| 1123 |
-
|
| 1124 |
-
|
| 1125 |
-
|
| 1126 |
-
|
| 1127 |
-
|
| 1128 |
-
.radio input[type="radio"],
|
| 1129 |
-
.
|
| 1130 |
-
.checkbox input[type="checkbox"]
|
| 1131 |
-
.checkbox-inline input[type="checkbox"] {
|
| 1132 |
position: absolute;
|
| 1133 |
margin-left: -20px;
|
| 1134 |
-
margin-top: 4px \9;
|
| 1135 |
-
|
| 1136 |
-
.radio + .radio,
|
| 1137 |
-
.checkbox + .checkbox {
|
| 1138 |
-
margin-top: -5px;
|
| 1139 |
-
|
| 1140 |
-
.radio-inline,
|
| 1141 |
-
.checkbox-inline {
|
| 1142 |
position: relative;
|
| 1143 |
display: inline-block;
|
| 1144 |
padding-left: 20px;
|
| 1145 |
margin-bottom: 0;
|
| 1146 |
vertical-align: middle;
|
| 1147 |
font-weight: normal;
|
| 1148 |
-
cursor: pointer;
|
| 1149 |
-
|
| 1150 |
-
.radio-inline + .radio-inline,
|
| 1151 |
-
.checkbox-inline + .checkbox-inline {
|
| 1152 |
margin-top: 0;
|
| 1153 |
-
margin-left: 10px;
|
| 1154 |
-
|
| 1155 |
-
input[type="radio"][disabled],
|
| 1156 |
-
input[type="
|
| 1157 |
-
input[type="
|
| 1158 |
-
input[type="checkbox"].disabled,
|
| 1159 |
-
fieldset[disabled]
|
| 1160 |
-
|
| 1161 |
-
cursor: not-allowed;
|
| 1162 |
-
|
| 1163 |
-
.radio-inline.disabled,
|
| 1164 |
-
.
|
| 1165 |
-
|
| 1166 |
-
fieldset[disabled]
|
| 1167 |
-
|
| 1168 |
-
}
|
| 1169 |
-
|
| 1170 |
-
.
|
| 1171 |
-
fieldset[disabled] .radio label,
|
| 1172 |
-
|
| 1173 |
-
|
| 1174 |
-
|
| 1175 |
-
|
|
|
|
|
|
|
| 1176 |
padding-top: 7px;
|
| 1177 |
padding-bottom: 7px;
|
| 1178 |
margin-bottom: 0;
|
| 1179 |
-
min-height: 34px;
|
| 1180 |
-
|
| 1181 |
-
|
| 1182 |
-
|
| 1183 |
-
|
| 1184 |
-
|
| 1185 |
-
}
|
| 1186 |
-
.input-sm {
|
| 1187 |
height: 30px;
|
| 1188 |
padding: 5px 10px;
|
| 1189 |
font-size: 12px;
|
| 1190 |
line-height: 1.5;
|
| 1191 |
-
border-radius: 3px;
|
| 1192 |
-
|
| 1193 |
-
select.input-sm {
|
| 1194 |
height: 30px;
|
| 1195 |
-
line-height: 30px;
|
| 1196 |
-
|
| 1197 |
-
textarea.input-sm,
|
| 1198 |
-
select[multiple].input-sm {
|
| 1199 |
-
height: auto;
|
| 1200 |
-
|
| 1201 |
-
.form-group-sm .form-control {
|
| 1202 |
height: 30px;
|
| 1203 |
padding: 5px 10px;
|
| 1204 |
font-size: 12px;
|
| 1205 |
line-height: 1.5;
|
| 1206 |
-
border-radius: 3px;
|
| 1207 |
-
|
| 1208 |
-
.form-group-sm select.form-control {
|
| 1209 |
height: 30px;
|
| 1210 |
-
line-height: 30px;
|
| 1211 |
-
|
| 1212 |
-
.form-group-sm textarea.form-control,
|
| 1213 |
-
.form-group-sm select[multiple].form-control {
|
| 1214 |
-
height: auto;
|
| 1215 |
-
|
| 1216 |
-
.form-group-sm .form-control-static {
|
| 1217 |
height: 30px;
|
| 1218 |
min-height: 32px;
|
| 1219 |
padding: 6px 10px;
|
| 1220 |
font-size: 12px;
|
| 1221 |
-
line-height: 1.5;
|
| 1222 |
-
|
| 1223 |
-
.input-lg {
|
| 1224 |
height: 46px;
|
| 1225 |
padding: 10px 16px;
|
| 1226 |
font-size: 18px;
|
| 1227 |
-
line-height: 1.
|
| 1228 |
-
border-radius: 6px;
|
| 1229 |
-
|
| 1230 |
-
select.input-lg {
|
| 1231 |
height: 46px;
|
| 1232 |
-
line-height: 46px;
|
| 1233 |
-
|
| 1234 |
-
textarea.input-lg,
|
| 1235 |
-
select[multiple].input-lg {
|
| 1236 |
-
height: auto;
|
| 1237 |
-
|
| 1238 |
-
.form-group-lg .form-control {
|
| 1239 |
height: 46px;
|
| 1240 |
padding: 10px 16px;
|
| 1241 |
font-size: 18px;
|
| 1242 |
-
line-height: 1.
|
| 1243 |
-
border-radius: 6px;
|
| 1244 |
-
|
| 1245 |
-
.form-group-lg select.form-control {
|
| 1246 |
height: 46px;
|
| 1247 |
-
line-height: 46px;
|
| 1248 |
-
|
| 1249 |
-
.form-group-lg textarea.form-control,
|
| 1250 |
-
.form-group-lg select[multiple].form-control {
|
| 1251 |
-
height: auto;
|
| 1252 |
-
|
| 1253 |
-
.form-group-lg .form-control-static {
|
| 1254 |
height: 46px;
|
| 1255 |
min-height: 38px;
|
| 1256 |
padding: 11px 16px;
|
| 1257 |
font-size: 18px;
|
| 1258 |
-
line-height: 1.
|
| 1259 |
-
|
| 1260 |
-
.has-feedback {
|
| 1261 |
-
position: relative;
|
| 1262 |
-
|
| 1263 |
-
|
| 1264 |
-
|
| 1265 |
-
|
| 1266 |
-
.form-control-feedback {
|
| 1267 |
position: absolute;
|
| 1268 |
top: 0;
|
| 1269 |
right: 0;
|
|
@@ -1273,213 +300,195 @@ select[multiple].input-lg {
|
|
| 1273 |
height: 34px;
|
| 1274 |
line-height: 34px;
|
| 1275 |
text-align: center;
|
| 1276 |
-
pointer-events: none;
|
| 1277 |
-
|
| 1278 |
-
.input-lg + .form-control-feedback,
|
| 1279 |
-
.input-group-lg + .form-control-feedback,
|
| 1280 |
-
.form-group-lg .form-control + .form-control-feedback {
|
| 1281 |
width: 46px;
|
| 1282 |
height: 46px;
|
| 1283 |
-
line-height: 46px;
|
| 1284 |
-
|
| 1285 |
-
.input-sm + .form-control-feedback,
|
| 1286 |
-
.input-group-sm + .form-control-feedback,
|
| 1287 |
-
.form-group-sm .form-control + .form-control-feedback {
|
| 1288 |
width: 30px;
|
| 1289 |
height: 30px;
|
| 1290 |
-
line-height: 30px;
|
| 1291 |
-
|
| 1292 |
-
.has-success .help-block,
|
| 1293 |
-
.has-success .control-label,
|
| 1294 |
-
.has-success .radio,
|
| 1295 |
-
.has-success .checkbox,
|
| 1296 |
-
.has-success .radio-inline,
|
| 1297 |
-
.has-success .checkbox-inline,
|
| 1298 |
-
.has-success.radio label,
|
| 1299 |
-
.has-success.checkbox label,
|
| 1300 |
-
.has-success.radio-inline label,
|
| 1301 |
-
.has-success.checkbox-inline label {
|
| 1302 |
-
color: #3c763d;
|
| 1303 |
-
|
| 1304 |
-
.has-success .form-control {
|
| 1305 |
border-color: #3c763d;
|
| 1306 |
-
|
| 1307 |
-
|
| 1308 |
-
|
| 1309 |
-
|
| 1310 |
-
|
| 1311 |
-
|
| 1312 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
|
| 1313 |
-
}
|
| 1314 |
-
.has-success .input-group-addon {
|
| 1315 |
color: #3c763d;
|
| 1316 |
border-color: #3c763d;
|
| 1317 |
-
background-color: #dff0d8;
|
| 1318 |
-
|
| 1319 |
-
.has-success .form-control-feedback {
|
| 1320 |
-
color: #3c763d;
|
| 1321 |
-
|
| 1322 |
-
.has-warning .help-block,
|
| 1323 |
-
.has-warning .control-label,
|
| 1324 |
-
.has-warning .radio,
|
| 1325 |
-
.has-warning .checkbox,
|
| 1326 |
-
.has-warning .radio-inline,
|
| 1327 |
-
.has-warning .checkbox-inline,
|
| 1328 |
-
.has-warning.radio label,
|
| 1329 |
-
.has-warning.checkbox label,
|
| 1330 |
-
.has-warning.radio-inline label,
|
| 1331 |
-
.has-warning.checkbox-inline label {
|
| 1332 |
-
color: #8a6d3b;
|
| 1333 |
-
|
| 1334 |
-
.has-warning .form-control {
|
| 1335 |
border-color: #8a6d3b;
|
| 1336 |
-
|
| 1337 |
-
|
| 1338 |
-
|
| 1339 |
-
|
| 1340 |
-
|
| 1341 |
-
|
| 1342 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
|
| 1343 |
-
}
|
| 1344 |
-
.has-warning .input-group-addon {
|
| 1345 |
color: #8a6d3b;
|
| 1346 |
border-color: #8a6d3b;
|
| 1347 |
-
background-color: #fcf8e3;
|
| 1348 |
-
|
| 1349 |
-
.has-warning .form-control-feedback {
|
| 1350 |
-
color: #8a6d3b;
|
| 1351 |
-
|
| 1352 |
-
.has-error .help-block,
|
| 1353 |
-
.has-error .control-label,
|
| 1354 |
-
.has-error .radio,
|
| 1355 |
-
.has-error .checkbox,
|
| 1356 |
-
.has-error .radio-inline,
|
| 1357 |
-
.has-error .checkbox-inline,
|
| 1358 |
-
.has-error.radio label,
|
| 1359 |
-
.has-error.checkbox label,
|
| 1360 |
-
.has-error.radio-inline label,
|
| 1361 |
-
.has-error.checkbox-inline label {
|
| 1362 |
-
color: #a94442;
|
| 1363 |
-
|
| 1364 |
-
.has-error .form-control {
|
| 1365 |
border-color: #a94442;
|
| 1366 |
-
|
| 1367 |
-
|
| 1368 |
-
|
| 1369 |
-
|
| 1370 |
-
|
| 1371 |
-
|
| 1372 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
|
| 1373 |
-
}
|
| 1374 |
-
.has-error .input-group-addon {
|
| 1375 |
color: #a94442;
|
| 1376 |
border-color: #a94442;
|
| 1377 |
-
background-color: #f2dede;
|
| 1378 |
-
|
| 1379 |
-
.has-error .form-control-feedback {
|
| 1380 |
-
color: #a94442;
|
| 1381 |
-
|
| 1382 |
-
.has-feedback label ~ .form-control-feedback {
|
| 1383 |
-
top: 25px;
|
| 1384 |
-
|
| 1385 |
-
.has-feedback label.sr-only ~ .form-control-feedback {
|
| 1386 |
-
top: 0;
|
| 1387 |
-
|
| 1388 |
-
.help-block {
|
| 1389 |
display: block;
|
| 1390 |
margin-top: 5px;
|
| 1391 |
margin-bottom: 10px;
|
| 1392 |
-
color: #737373;
|
| 1393 |
-
|
| 1394 |
@media (min-width: 768px) {
|
| 1395 |
-
.form-inline .form-group {
|
| 1396 |
display: inline-block;
|
| 1397 |
margin-bottom: 0;
|
| 1398 |
-
vertical-align: middle;
|
| 1399 |
-
|
| 1400 |
-
.form-inline .form-control {
|
| 1401 |
display: inline-block;
|
| 1402 |
width: auto;
|
| 1403 |
-
vertical-align: middle;
|
| 1404 |
-
|
| 1405 |
-
|
| 1406 |
-
|
| 1407 |
-
}
|
| 1408 |
-
.form-inline .input-group {
|
| 1409 |
display: inline-table;
|
| 1410 |
-
vertical-align: middle;
|
| 1411 |
-
|
| 1412 |
-
|
| 1413 |
-
|
| 1414 |
-
|
| 1415 |
-
|
| 1416 |
-
|
| 1417 |
-
.
|
| 1418 |
-
width: 100%;
|
| 1419 |
-
}
|
| 1420 |
-
.form-inline .control-label {
|
| 1421 |
margin-bottom: 0;
|
| 1422 |
-
vertical-align: middle;
|
| 1423 |
-
|
| 1424 |
-
.form-inline .
|
| 1425 |
-
.form-inline .checkbox {
|
| 1426 |
display: inline-block;
|
| 1427 |
margin-top: 0;
|
| 1428 |
margin-bottom: 0;
|
| 1429 |
-
vertical-align: middle;
|
| 1430 |
-
|
| 1431 |
-
|
| 1432 |
-
|
| 1433 |
-
|
| 1434 |
-
|
| 1435 |
-
.form-inline .radio input[type="radio"],
|
| 1436 |
-
.form-inline .checkbox input[type="checkbox"] {
|
| 1437 |
position: relative;
|
| 1438 |
-
margin-left: 0;
|
| 1439 |
-
|
| 1440 |
-
|
| 1441 |
-
|
| 1442 |
-
|
| 1443 |
-
|
| 1444 |
-
.form-horizontal .radio,
|
| 1445 |
-
.form-horizontal .checkbox
|
| 1446 |
-
.form-horizontal .radio-inline,
|
| 1447 |
-
.form-horizontal .checkbox-inline {
|
| 1448 |
margin-top: 0;
|
| 1449 |
margin-bottom: 0;
|
| 1450 |
-
padding-top: 7px;
|
| 1451 |
-
|
| 1452 |
-
.form-horizontal .radio,
|
| 1453 |
-
.form-horizontal .checkbox {
|
| 1454 |
-
min-height: 27px;
|
| 1455 |
-
|
| 1456 |
-
.form-horizontal .form-group {
|
| 1457 |
margin-left: -15px;
|
| 1458 |
-
margin-right: -15px;
|
| 1459 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1460 |
@media (min-width: 768px) {
|
| 1461 |
-
.form-horizontal .control-label {
|
| 1462 |
text-align: right;
|
| 1463 |
margin-bottom: 0;
|
| 1464 |
-
padding-top: 7px;
|
| 1465 |
-
|
| 1466 |
-
|
| 1467 |
-
|
| 1468 |
-
|
| 1469 |
-
}
|
| 1470 |
@media (min-width: 768px) {
|
| 1471 |
-
.form-horizontal .form-group-lg .control-label {
|
| 1472 |
padding-top: 11px;
|
| 1473 |
-
font-size: 18px;
|
| 1474 |
-
|
| 1475 |
-
}
|
| 1476 |
@media (min-width: 768px) {
|
| 1477 |
-
.form-horizontal .form-group-sm .control-label {
|
| 1478 |
padding-top: 6px;
|
| 1479 |
-
font-size: 12px;
|
| 1480 |
-
|
| 1481 |
-
|
| 1482 |
-
.btn {
|
| 1483 |
display: inline-block;
|
| 1484 |
margin-bottom: 0;
|
| 1485 |
font-weight: normal;
|
|
@@ -1493,746 +502,507 @@ select[multiple].input-lg {
|
|
| 1493 |
white-space: nowrap;
|
| 1494 |
padding: 6px 12px;
|
| 1495 |
font-size: 14px;
|
| 1496 |
-
line-height: 1.
|
| 1497 |
border-radius: 4px;
|
| 1498 |
-webkit-user-select: none;
|
| 1499 |
-moz-user-select: none;
|
| 1500 |
-ms-user-select: none;
|
| 1501 |
-
user-select: none;
|
| 1502 |
-
|
| 1503 |
-
|
| 1504 |
-
|
| 1505 |
-
.btn.
|
| 1506 |
-
|
| 1507 |
-
|
| 1508 |
-
.btn
|
| 1509 |
-
|
| 1510 |
-
|
| 1511 |
-
|
| 1512 |
-
|
| 1513 |
-
.btn
|
| 1514 |
-
|
| 1515 |
-
.
|
| 1516 |
-
|
| 1517 |
-
|
| 1518 |
-
|
| 1519 |
-
.btn
|
| 1520 |
-
.btn
|
| 1521 |
-
|
| 1522 |
-
|
| 1523 |
-
|
| 1524 |
-
|
| 1525 |
-
|
| 1526 |
-
|
| 1527 |
-
.btn
|
| 1528 |
-
|
| 1529 |
-
|
| 1530 |
-
|
| 1531 |
-
|
| 1532 |
-
|
| 1533 |
-
|
| 1534 |
-
}
|
| 1535 |
-
|
| 1536 |
-
|
| 1537 |
-
|
| 1538 |
-
|
| 1539 |
-
|
| 1540 |
-
|
| 1541 |
-
|
| 1542 |
-
|
| 1543 |
-
|
| 1544 |
-
|
| 1545 |
-
|
| 1546 |
-
|
| 1547 |
-
|
| 1548 |
-
|
| 1549 |
-
}
|
| 1550 |
-
.btn-default:hover
|
| 1551 |
-
|
| 1552 |
-
|
| 1553 |
-
|
| 1554 |
-
|
| 1555 |
-
|
| 1556 |
-
.btn-default.
|
| 1557 |
-
|
| 1558 |
-
|
| 1559 |
-
|
| 1560 |
-
|
| 1561 |
-
|
| 1562 |
-
.btn-default:active:hover,
|
| 1563 |
-
.btn-default.active:hover,
|
| 1564 |
-
.open > .dropdown-toggle.btn-default:hover,
|
| 1565 |
-
.btn-default:active:focus,
|
| 1566 |
-
.btn-default.active:focus,
|
| 1567 |
-
.open > .dropdown-toggle.btn-default:focus,
|
| 1568 |
-
.btn-default:active.focus,
|
| 1569 |
-
.btn-default.active.focus,
|
| 1570 |
-
.open > .dropdown-toggle.btn-default.focus {
|
| 1571 |
-
color: #333333;
|
| 1572 |
-
background-color: #d4d4d4;
|
| 1573 |
-
border-color: #8c8c8c;
|
| 1574 |
-
}
|
| 1575 |
-
.btn-default:active,
|
| 1576 |
-
.btn-default.active,
|
| 1577 |
-
.open > .dropdown-toggle.btn-default {
|
| 1578 |
-
background-image: none;
|
| 1579 |
-
}
|
| 1580 |
-
.btn-default.disabled:hover,
|
| 1581 |
-
.btn-default[disabled]:hover,
|
| 1582 |
-
fieldset[disabled] .btn-default:hover,
|
| 1583 |
-
.btn-default.disabled:focus,
|
| 1584 |
-
.btn-default[disabled]:focus,
|
| 1585 |
-
fieldset[disabled] .btn-default:focus,
|
| 1586 |
-
.btn-default.disabled.focus,
|
| 1587 |
-
.btn-default[disabled].focus,
|
| 1588 |
-
fieldset[disabled] .btn-default.focus {
|
| 1589 |
-
background-color: #ffffff;
|
| 1590 |
-
border-color: #cccccc;
|
| 1591 |
-
}
|
| 1592 |
-
.btn-default .badge {
|
| 1593 |
-
color: #ffffff;
|
| 1594 |
-
background-color: #333333;
|
| 1595 |
-
}
|
| 1596 |
-
.btn-primary {
|
| 1597 |
-
color: #ffffff;
|
| 1598 |
-
background-color: #337ab7;
|
| 1599 |
-
border-color: #2e6da4;
|
| 1600 |
-
}
|
| 1601 |
-
.btn-primary:focus,
|
| 1602 |
-
.btn-primary.focus {
|
| 1603 |
-
color: #ffffff;
|
| 1604 |
-
background-color: #286090;
|
| 1605 |
-
border-color: #122b40;
|
| 1606 |
-
}
|
| 1607 |
-
.btn-primary:hover {
|
| 1608 |
-
color: #ffffff;
|
| 1609 |
-
background-color: #286090;
|
| 1610 |
-
border-color: #204d74;
|
| 1611 |
-
}
|
| 1612 |
-
.btn-primary:active,
|
| 1613 |
-
.btn-primary.active,
|
| 1614 |
-
.open > .dropdown-toggle.btn-primary {
|
| 1615 |
-
color: #ffffff;
|
| 1616 |
-
background-color: #286090;
|
| 1617 |
-
border-color: #204d74;
|
| 1618 |
-
}
|
| 1619 |
-
.btn-primary:active:hover,
|
| 1620 |
-
.btn-primary.active:hover,
|
| 1621 |
-
.open > .dropdown-toggle.btn-primary:hover,
|
| 1622 |
-
.btn-primary:active:focus,
|
| 1623 |
-
.btn-primary.active:focus,
|
| 1624 |
-
.open > .dropdown-toggle.btn-primary:focus,
|
| 1625 |
-
.btn-primary:active.focus,
|
| 1626 |
-
.btn-primary.active.focus,
|
| 1627 |
-
.open > .dropdown-toggle.btn-primary.focus {
|
| 1628 |
-
color: #ffffff;
|
| 1629 |
-
background-color: #204d74;
|
| 1630 |
-
border-color: #122b40;
|
| 1631 |
-
}
|
| 1632 |
-
.btn-primary:active,
|
| 1633 |
-
.btn-primary.active,
|
| 1634 |
-
.open > .dropdown-toggle.btn-primary {
|
| 1635 |
-
background-image: none;
|
| 1636 |
-
}
|
| 1637 |
-
.btn-primary.disabled:hover,
|
| 1638 |
-
.btn-primary[disabled]:hover,
|
| 1639 |
-
fieldset[disabled] .btn-primary:hover,
|
| 1640 |
-
.btn-primary.disabled:focus,
|
| 1641 |
-
.btn-primary[disabled]:focus,
|
| 1642 |
-
fieldset[disabled] .btn-primary:focus,
|
| 1643 |
-
.btn-primary.disabled.focus,
|
| 1644 |
-
.btn-primary[disabled].focus,
|
| 1645 |
-
fieldset[disabled] .btn-primary.focus {
|
| 1646 |
background-color: #337ab7;
|
| 1647 |
-
border-color: #2e6da4;
|
| 1648 |
-
|
| 1649 |
-
|
| 1650 |
-
|
| 1651 |
-
|
| 1652 |
-
|
| 1653 |
-
|
| 1654 |
-
|
| 1655 |
-
|
| 1656 |
-
|
| 1657 |
-
|
| 1658 |
-
|
| 1659 |
-
|
| 1660 |
-
|
| 1661 |
-
|
| 1662 |
-
|
| 1663 |
-
|
| 1664 |
-
.btn-
|
| 1665 |
-
|
| 1666 |
-
|
| 1667 |
-
|
| 1668 |
-
|
| 1669 |
-
.btn-
|
| 1670 |
-
|
| 1671 |
-
.
|
| 1672 |
-
|
| 1673 |
-
|
| 1674 |
-
|
| 1675 |
-
|
| 1676 |
-
|
| 1677 |
-
.btn-
|
| 1678 |
-
|
| 1679 |
-
|
| 1680 |
-
|
| 1681 |
-
.
|
| 1682 |
-
|
| 1683 |
-
.btn-success.active.focus,
|
| 1684 |
-
.open > .dropdown-toggle.btn-success.focus {
|
| 1685 |
-
color: #ffffff;
|
| 1686 |
-
background-color: #398439;
|
| 1687 |
-
border-color: #255625;
|
| 1688 |
-
}
|
| 1689 |
-
.btn-success:active,
|
| 1690 |
-
.btn-success.active,
|
| 1691 |
-
.open > .dropdown-toggle.btn-success {
|
| 1692 |
-
background-image: none;
|
| 1693 |
-
}
|
| 1694 |
-
.btn-success.disabled:hover,
|
| 1695 |
-
.btn-success[disabled]:hover,
|
| 1696 |
-
fieldset[disabled] .btn-success:hover,
|
| 1697 |
-
.btn-success.disabled:focus,
|
| 1698 |
-
.btn-success[disabled]:focus,
|
| 1699 |
-
fieldset[disabled] .btn-success:focus,
|
| 1700 |
-
.btn-success.disabled.focus,
|
| 1701 |
-
.btn-success[disabled].focus,
|
| 1702 |
-
fieldset[disabled] .btn-success.focus {
|
| 1703 |
background-color: #5cb85c;
|
| 1704 |
-
border-color: #4cae4c;
|
| 1705 |
-
|
| 1706 |
-
|
| 1707 |
-
|
| 1708 |
-
|
| 1709 |
-
|
| 1710 |
-
|
| 1711 |
-
|
| 1712 |
-
|
| 1713 |
-
|
| 1714 |
-
|
| 1715 |
-
|
| 1716 |
-
|
| 1717 |
-
|
| 1718 |
-
|
| 1719 |
-
|
| 1720 |
-
|
| 1721 |
-
.btn-
|
| 1722 |
-
|
| 1723 |
-
|
| 1724 |
-
|
| 1725 |
-
|
| 1726 |
-
.btn-
|
| 1727 |
-
|
| 1728 |
-
.
|
| 1729 |
-
|
| 1730 |
-
|
| 1731 |
-
|
| 1732 |
-
|
| 1733 |
-
|
| 1734 |
-
.btn-
|
| 1735 |
-
|
| 1736 |
-
|
| 1737 |
-
|
| 1738 |
-
.
|
| 1739 |
-
|
| 1740 |
-
.btn-info.active.focus,
|
| 1741 |
-
.open > .dropdown-toggle.btn-info.focus {
|
| 1742 |
-
color: #ffffff;
|
| 1743 |
-
background-color: #269abc;
|
| 1744 |
-
border-color: #1b6d85;
|
| 1745 |
-
}
|
| 1746 |
-
.btn-info:active,
|
| 1747 |
-
.btn-info.active,
|
| 1748 |
-
.open > .dropdown-toggle.btn-info {
|
| 1749 |
-
background-image: none;
|
| 1750 |
-
}
|
| 1751 |
-
.btn-info.disabled:hover,
|
| 1752 |
-
.btn-info[disabled]:hover,
|
| 1753 |
-
fieldset[disabled] .btn-info:hover,
|
| 1754 |
-
.btn-info.disabled:focus,
|
| 1755 |
-
.btn-info[disabled]:focus,
|
| 1756 |
-
fieldset[disabled] .btn-info:focus,
|
| 1757 |
-
.btn-info.disabled.focus,
|
| 1758 |
-
.btn-info[disabled].focus,
|
| 1759 |
-
fieldset[disabled] .btn-info.focus {
|
| 1760 |
background-color: #5bc0de;
|
| 1761 |
-
border-color: #46b8da;
|
| 1762 |
-
|
| 1763 |
-
|
| 1764 |
-
|
| 1765 |
-
|
| 1766 |
-
|
| 1767 |
-
|
| 1768 |
-
|
| 1769 |
-
|
| 1770 |
-
|
| 1771 |
-
|
| 1772 |
-
|
| 1773 |
-
|
| 1774 |
-
|
| 1775 |
-
|
| 1776 |
-
|
| 1777 |
-
|
| 1778 |
-
.btn-
|
| 1779 |
-
|
| 1780 |
-
|
| 1781 |
-
|
| 1782 |
-
|
| 1783 |
-
.btn-
|
| 1784 |
-
|
| 1785 |
-
.
|
| 1786 |
-
|
| 1787 |
-
|
| 1788 |
-
|
| 1789 |
-
|
| 1790 |
-
|
| 1791 |
-
.btn-
|
| 1792 |
-
|
| 1793 |
-
|
| 1794 |
-
|
| 1795 |
-
.
|
| 1796 |
-
|
| 1797 |
-
.btn-warning.active.focus,
|
| 1798 |
-
.open > .dropdown-toggle.btn-warning.focus {
|
| 1799 |
-
color: #ffffff;
|
| 1800 |
-
background-color: #d58512;
|
| 1801 |
-
border-color: #985f0d;
|
| 1802 |
-
}
|
| 1803 |
-
.btn-warning:active,
|
| 1804 |
-
.btn-warning.active,
|
| 1805 |
-
.open > .dropdown-toggle.btn-warning {
|
| 1806 |
-
background-image: none;
|
| 1807 |
-
}
|
| 1808 |
-
.btn-warning.disabled:hover,
|
| 1809 |
-
.btn-warning[disabled]:hover,
|
| 1810 |
-
fieldset[disabled] .btn-warning:hover,
|
| 1811 |
-
.btn-warning.disabled:focus,
|
| 1812 |
-
.btn-warning[disabled]:focus,
|
| 1813 |
-
fieldset[disabled] .btn-warning:focus,
|
| 1814 |
-
.btn-warning.disabled.focus,
|
| 1815 |
-
.btn-warning[disabled].focus,
|
| 1816 |
-
fieldset[disabled] .btn-warning.focus {
|
| 1817 |
background-color: #f0ad4e;
|
| 1818 |
-
border-color: #eea236;
|
| 1819 |
-
|
| 1820 |
-
|
| 1821 |
-
|
| 1822 |
-
|
| 1823 |
-
|
| 1824 |
-
|
| 1825 |
-
|
| 1826 |
-
|
| 1827 |
-
|
| 1828 |
-
|
| 1829 |
-
|
| 1830 |
-
|
| 1831 |
-
|
| 1832 |
-
|
| 1833 |
-
|
| 1834 |
-
|
| 1835 |
-
.btn-
|
| 1836 |
-
|
| 1837 |
-
|
| 1838 |
-
|
| 1839 |
-
|
| 1840 |
-
.btn-
|
| 1841 |
-
|
| 1842 |
-
.
|
| 1843 |
-
|
| 1844 |
-
|
| 1845 |
-
|
| 1846 |
-
|
| 1847 |
-
|
| 1848 |
-
.btn-
|
| 1849 |
-
|
| 1850 |
-
|
| 1851 |
-
|
| 1852 |
-
.
|
| 1853 |
-
|
| 1854 |
-
.btn-danger.active.focus,
|
| 1855 |
-
.open > .dropdown-toggle.btn-danger.focus {
|
| 1856 |
-
color: #ffffff;
|
| 1857 |
-
background-color: #ac2925;
|
| 1858 |
-
border-color: #761c19;
|
| 1859 |
-
}
|
| 1860 |
-
.btn-danger:active,
|
| 1861 |
-
.btn-danger.active,
|
| 1862 |
-
.open > .dropdown-toggle.btn-danger {
|
| 1863 |
-
background-image: none;
|
| 1864 |
-
}
|
| 1865 |
-
.btn-danger.disabled:hover,
|
| 1866 |
-
.btn-danger[disabled]:hover,
|
| 1867 |
-
fieldset[disabled] .btn-danger:hover,
|
| 1868 |
-
.btn-danger.disabled:focus,
|
| 1869 |
-
.btn-danger[disabled]:focus,
|
| 1870 |
-
fieldset[disabled] .btn-danger:focus,
|
| 1871 |
-
.btn-danger.disabled.focus,
|
| 1872 |
-
.btn-danger[disabled].focus,
|
| 1873 |
-
fieldset[disabled] .btn-danger.focus {
|
| 1874 |
background-color: #d9534f;
|
| 1875 |
-
border-color: #d43f3a;
|
| 1876 |
-
|
| 1877 |
-
|
| 1878 |
-
|
| 1879 |
-
|
| 1880 |
-
|
| 1881 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1882 |
color: #337ab7;
|
| 1883 |
font-weight: normal;
|
| 1884 |
-
border-radius: 0;
|
| 1885 |
-
|
| 1886 |
-
.btn-link
|
| 1887 |
-
|
| 1888 |
-
|
| 1889 |
-
.btn-link
|
| 1890 |
-
|
| 1891 |
-
|
| 1892 |
-
|
| 1893 |
-
|
| 1894 |
-
}
|
| 1895 |
-
.btn-link,
|
| 1896 |
-
.btn-link:hover,
|
| 1897 |
-
.btn-link:focus
|
| 1898 |
-
|
| 1899 |
-
|
| 1900 |
-
|
| 1901 |
-
.btn-
|
| 1902 |
-
.btn-link:focus {
|
| 1903 |
-
color: #23527c;
|
| 1904 |
-
text-decoration: underline;
|
| 1905 |
-
background-color: transparent;
|
| 1906 |
-
}
|
| 1907 |
-
.btn-link[disabled]:hover,
|
| 1908 |
-
fieldset[disabled] .btn-link:hover,
|
| 1909 |
-
.btn-link[disabled]:focus,
|
| 1910 |
-
fieldset[disabled] .btn-link:focus {
|
| 1911 |
-
color: #777777;
|
| 1912 |
-
text-decoration: none;
|
| 1913 |
-
}
|
| 1914 |
-
.btn-lg,
|
| 1915 |
-
.btn-group-lg > .btn {
|
| 1916 |
padding: 10px 16px;
|
| 1917 |
font-size: 18px;
|
| 1918 |
-
line-height: 1.
|
| 1919 |
-
border-radius: 6px;
|
| 1920 |
-
|
| 1921 |
-
.btn-sm,
|
| 1922 |
-
.btn-group-sm > .btn {
|
| 1923 |
padding: 5px 10px;
|
| 1924 |
font-size: 12px;
|
| 1925 |
line-height: 1.5;
|
| 1926 |
-
border-radius: 3px;
|
| 1927 |
-
|
| 1928 |
-
.btn-xs,
|
| 1929 |
-
.btn-group-xs > .btn {
|
| 1930 |
padding: 1px 5px;
|
| 1931 |
font-size: 12px;
|
| 1932 |
line-height: 1.5;
|
| 1933 |
-
border-radius: 3px;
|
| 1934 |
-
|
| 1935 |
-
.btn-block {
|
| 1936 |
-
display: block;
|
| 1937 |
-
width: 100%;
|
| 1938 |
-
}
|
| 1939 |
-
.btn-block + .btn-block {
|
| 1940 |
-
margin-top: 5px;
|
| 1941 |
-
}
|
| 1942 |
-
input[type="submit"].btn-block,
|
| 1943 |
-
input[type="reset"].btn-block,
|
| 1944 |
-
input[type="button"].btn-block {
|
| 1945 |
-
width: 100%;
|
| 1946 |
-
}
|
| 1947 |
-
.fade {
|
| 1948 |
-
opacity: 0;
|
| 1949 |
-
-webkit-transition: opacity 0.15s linear;
|
| 1950 |
-
-o-transition: opacity 0.15s linear;
|
| 1951 |
-
transition: opacity 0.15s linear;
|
| 1952 |
-
}
|
| 1953 |
-
.fade.in {
|
| 1954 |
-
opacity: 1;
|
| 1955 |
-
}
|
| 1956 |
-
.collapse {
|
| 1957 |
-
display: none;
|
| 1958 |
-
}
|
| 1959 |
-
.collapse.in {
|
| 1960 |
display: block;
|
| 1961 |
-
}
|
| 1962 |
-
|
| 1963 |
-
|
| 1964 |
-
}
|
| 1965 |
-
|
| 1966 |
-
|
| 1967 |
-
|
| 1968 |
-
.
|
| 1969 |
-
|
| 1970 |
-
|
| 1971 |
-
|
| 1972 |
-
|
| 1973 |
-
-o-transition-property: height, visibility;
|
| 1974 |
-
transition-property: height, visibility;
|
| 1975 |
-
-webkit-transition-duration: 0.35s;
|
| 1976 |
-
-o-transition-duration: 0.35s;
|
| 1977 |
-
transition-duration: 0.35s;
|
| 1978 |
-
-webkit-transition-timing-function: ease;
|
| 1979 |
-
-o-transition-timing-function: ease;
|
| 1980 |
-
transition-timing-function: ease;
|
| 1981 |
-
}
|
| 1982 |
-
.btn-group,
|
| 1983 |
-
.btn-group-vertical {
|
| 1984 |
position: relative;
|
| 1985 |
display: inline-block;
|
| 1986 |
-
vertical-align: middle;
|
| 1987 |
-
|
| 1988 |
-
.btn-group > .btn
|
| 1989 |
-
|
| 1990 |
-
|
| 1991 |
-
|
| 1992 |
-
|
| 1993 |
-
.btn-group > .btn:
|
| 1994 |
-
.btn-group-vertical > .btn:
|
| 1995 |
-
.btn-group > .btn
|
| 1996 |
-
|
| 1997 |
-
|
| 1998 |
-
.btn-group
|
| 1999 |
-
.btn-group
|
| 2000 |
-
.btn-group-
|
| 2001 |
-
|
| 2002 |
-
}
|
| 2003 |
-
|
| 2004 |
-
.
|
| 2005 |
-
|
| 2006 |
-
.
|
| 2007 |
-
|
| 2008 |
-
}
|
| 2009 |
-
.btn-toolbar {
|
| 2010 |
-
|
| 2011 |
-
|
| 2012 |
-
.btn-toolbar .btn,
|
| 2013 |
-
.btn-toolbar .
|
| 2014 |
-
|
| 2015 |
-
|
| 2016 |
-
|
| 2017 |
-
.btn-toolbar > .
|
| 2018 |
-
|
| 2019 |
-
|
| 2020 |
-
|
| 2021 |
-
}
|
| 2022 |
-
|
| 2023 |
-
|
| 2024 |
-
}
|
| 2025 |
-
.btn-group > .btn:first-child {
|
| 2026 |
-
|
| 2027 |
-
}
|
| 2028 |
-
|
| 2029 |
-
|
| 2030 |
-
|
| 2031 |
-
}
|
| 2032 |
-
.btn-group > .btn:last-child:not(:first-child),
|
| 2033 |
-
.btn-group > .dropdown-toggle:not(:first-child) {
|
| 2034 |
border-bottom-left-radius: 0;
|
| 2035 |
-
border-top-left-radius: 0;
|
| 2036 |
-
|
| 2037 |
-
.btn-group > .btn-group {
|
| 2038 |
-
float: left;
|
| 2039 |
-
|
| 2040 |
-
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
| 2041 |
-
border-radius: 0;
|
| 2042 |
-
|
| 2043 |
-
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
| 2044 |
-
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
| 2045 |
border-bottom-right-radius: 0;
|
| 2046 |
-
border-top-right-radius: 0;
|
| 2047 |
-
|
| 2048 |
-
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
| 2049 |
border-bottom-left-radius: 0;
|
| 2050 |
-
border-top-left-radius: 0;
|
| 2051 |
-
|
| 2052 |
-
.btn-group .dropdown-toggle:active,
|
| 2053 |
-
.btn-group.open .dropdown-toggle {
|
| 2054 |
-
outline: 0;
|
| 2055 |
-
|
| 2056 |
-
.btn-group > .btn + .dropdown-toggle {
|
| 2057 |
padding-left: 8px;
|
| 2058 |
-
padding-right: 8px;
|
| 2059 |
-
|
| 2060 |
-
.btn-group > .btn-lg + .dropdown-toggle {
|
| 2061 |
padding-left: 12px;
|
| 2062 |
-
padding-right: 12px;
|
| 2063 |
-
|
| 2064 |
-
.btn-group.open .dropdown-toggle {
|
| 2065 |
-
|
| 2066 |
-
|
| 2067 |
-
}
|
| 2068 |
-
|
| 2069 |
-
|
| 2070 |
-
|
| 2071 |
-
|
| 2072 |
-
.btn .caret {
|
| 2073 |
-
margin-left: 0;
|
| 2074 |
-
}
|
| 2075 |
-
.btn-lg .caret {
|
| 2076 |
border-width: 5px 5px 0;
|
| 2077 |
-
border-bottom-width: 0;
|
| 2078 |
-
|
| 2079 |
-
.dropup .btn-lg .caret {
|
| 2080 |
-
border-width: 0 5px 5px;
|
| 2081 |
-
|
| 2082 |
-
.btn-group-vertical > .btn,
|
| 2083 |
-
.btn-group-vertical > .btn-group,
|
| 2084 |
-
.btn-group-vertical > .btn-group > .btn {
|
| 2085 |
display: block;
|
| 2086 |
float: none;
|
| 2087 |
width: 100%;
|
| 2088 |
-
max-width: 100%;
|
| 2089 |
-
|
| 2090 |
-
.btn-group-vertical > .btn-group > .btn {
|
| 2091 |
-
|
| 2092 |
-
}
|
| 2093 |
-
|
| 2094 |
-
.btn-group-vertical > .btn
|
| 2095 |
-
|
| 2096 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2097 |
margin-top: -1px;
|
| 2098 |
-
margin-left: 0;
|
| 2099 |
-
|
| 2100 |
-
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
| 2101 |
-
border-radius: 0;
|
| 2102 |
-
|
| 2103 |
-
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
| 2104 |
border-top-right-radius: 4px;
|
| 2105 |
border-top-left-radius: 4px;
|
| 2106 |
border-bottom-right-radius: 0;
|
| 2107 |
-
border-bottom-left-radius: 0;
|
| 2108 |
-
|
| 2109 |
-
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
| 2110 |
border-top-right-radius: 0;
|
| 2111 |
border-top-left-radius: 0;
|
| 2112 |
border-bottom-right-radius: 4px;
|
| 2113 |
-
border-bottom-left-radius: 4px;
|
| 2114 |
-
|
| 2115 |
-
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
| 2116 |
-
border-radius: 0;
|
| 2117 |
-
|
| 2118 |
-
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
| 2119 |
-
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
| 2120 |
border-bottom-right-radius: 0;
|
| 2121 |
-
border-bottom-left-radius: 0;
|
| 2122 |
-
|
| 2123 |
-
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
| 2124 |
border-top-right-radius: 0;
|
| 2125 |
-
border-top-left-radius: 0;
|
| 2126 |
-
|
| 2127 |
-
.btn-group-justified {
|
| 2128 |
display: table;
|
| 2129 |
width: 100%;
|
| 2130 |
table-layout: fixed;
|
| 2131 |
-
border-collapse: separate;
|
| 2132 |
-
|
| 2133 |
-
.btn-group-justified > .btn
|
| 2134 |
-
|
| 2135 |
-
|
| 2136 |
-
|
| 2137 |
-
|
| 2138 |
-
}
|
| 2139 |
-
.btn-group-justified > .btn-group .
|
| 2140 |
-
|
| 2141 |
-
|
| 2142 |
-
.
|
| 2143 |
-
|
| 2144 |
-
|
| 2145 |
-
[data-toggle="buttons"] > .btn input[type="
|
| 2146 |
-
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
|
| 2147 |
-
[data-toggle="buttons"] > .btn input[type="checkbox"],
|
| 2148 |
-
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
|
| 2149 |
position: absolute;
|
| 2150 |
clip: rect(0, 0, 0, 0);
|
| 2151 |
-
pointer-events: none;
|
| 2152 |
-
|
| 2153 |
-
.input-group {
|
| 2154 |
position: relative;
|
| 2155 |
display: table;
|
| 2156 |
-
border-collapse: separate;
|
| 2157 |
-
|
| 2158 |
-
|
| 2159 |
-
|
| 2160 |
-
|
| 2161 |
-
|
| 2162 |
-
|
| 2163 |
-
|
| 2164 |
-
|
| 2165 |
-
|
| 2166 |
-
|
| 2167 |
-
|
| 2168 |
-
|
| 2169 |
-
|
| 2170 |
-
.
|
| 2171 |
-
|
| 2172 |
-
|
| 2173 |
-
|
| 2174 |
-
.
|
| 2175 |
-
.
|
| 2176 |
-
|
| 2177 |
-
|
| 2178 |
-
|
| 2179 |
-
|
| 2180 |
-
|
| 2181 |
-
}
|
| 2182 |
-
select.input-group-lg > .form-control,
|
| 2183 |
-
select.input-group-lg > .input-group-addon,
|
| 2184 |
-
select.input-group-lg > .input-group-btn > .btn {
|
| 2185 |
-
height: 46px;
|
| 2186 |
-
line-height: 46px;
|
| 2187 |
-
}
|
| 2188 |
-
textarea.input-group-lg > .form-control,
|
| 2189 |
-
textarea.input-group-lg > .input-group-addon,
|
| 2190 |
-
textarea.input-group-lg > .input-group-btn > .btn,
|
| 2191 |
-
select[multiple].input-group-lg > .form-control,
|
| 2192 |
-
select[multiple].input-group-lg > .input-group-addon,
|
| 2193 |
-
select[multiple].input-group-lg > .input-group-btn > .btn {
|
| 2194 |
-
height: auto;
|
| 2195 |
-
}
|
| 2196 |
-
.input-group-sm > .form-control,
|
| 2197 |
-
.input-group-sm > .input-group-addon,
|
| 2198 |
-
.input-group-sm > .input-group-btn > .btn {
|
| 2199 |
-
height: 30px;
|
| 2200 |
-
padding: 5px 10px;
|
| 2201 |
-
font-size: 12px;
|
| 2202 |
-
line-height: 1.5;
|
| 2203 |
-
border-radius: 3px;
|
| 2204 |
-
}
|
| 2205 |
-
select.input-group-sm > .form-control,
|
| 2206 |
-
select.input-group-sm > .input-group-addon,
|
| 2207 |
-
select.input-group-sm > .input-group-btn > .btn {
|
| 2208 |
-
height: 30px;
|
| 2209 |
-
line-height: 30px;
|
| 2210 |
-
}
|
| 2211 |
-
textarea.input-group-sm > .form-control,
|
| 2212 |
-
textarea.input-group-sm > .input-group-addon,
|
| 2213 |
-
textarea.input-group-sm > .input-group-btn > .btn,
|
| 2214 |
-
select[multiple].input-group-sm > .form-control,
|
| 2215 |
-
select[multiple].input-group-sm > .input-group-addon,
|
| 2216 |
-
select[multiple].input-group-sm > .input-group-btn > .btn {
|
| 2217 |
-
height: auto;
|
| 2218 |
-
}
|
| 2219 |
-
.input-group-addon,
|
| 2220 |
-
.input-group-btn,
|
| 2221 |
-
.input-group .form-control {
|
| 2222 |
-
display: table-cell;
|
| 2223 |
-
}
|
| 2224 |
-
.input-group-addon:not(:first-child):not(:last-child),
|
| 2225 |
-
.input-group-btn:not(:first-child):not(:last-child),
|
| 2226 |
-
.input-group .form-control:not(:first-child):not(:last-child) {
|
| 2227 |
-
border-radius: 0;
|
| 2228 |
-
}
|
| 2229 |
-
.input-group-addon,
|
| 2230 |
-
.input-group-btn {
|
| 2231 |
width: 1%;
|
| 2232 |
white-space: nowrap;
|
| 2233 |
-
vertical-align: middle;
|
| 2234 |
-
|
| 2235 |
-
.input-group-addon {
|
| 2236 |
padding: 6px 12px;
|
| 2237 |
font-size: 14px;
|
| 2238 |
font-weight: normal;
|
|
@@ -2240,102 +1010,90 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
| 2240 |
color: #555555;
|
| 2241 |
text-align: center;
|
| 2242 |
background-color: #eeeeee;
|
| 2243 |
-
border: 1px solid #
|
| 2244 |
-
border-radius: 4px;
|
| 2245 |
-
|
| 2246 |
-
|
| 2247 |
-
|
| 2248 |
-
|
| 2249 |
-
|
| 2250 |
-
|
| 2251 |
-
|
| 2252 |
-
|
| 2253 |
-
|
| 2254 |
-
|
| 2255 |
-
}
|
| 2256 |
-
|
| 2257 |
-
.input-group-
|
| 2258 |
-
|
| 2259 |
-
|
| 2260 |
-
.
|
| 2261 |
-
.input-group-
|
| 2262 |
-
.input-group-btn:
|
| 2263 |
-
.input-group-btn:
|
| 2264 |
-
.input-group-btn:first-child > .dropdown-toggle,
|
| 2265 |
-
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
| 2266 |
-
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
|
| 2267 |
border-bottom-right-radius: 0;
|
| 2268 |
-
border-top-right-radius: 0;
|
| 2269 |
-
|
| 2270 |
-
.input-group-addon:first-child {
|
| 2271 |
-
border-right: 0;
|
| 2272 |
-
|
| 2273 |
-
.input-group .form-control:last-child,
|
| 2274 |
-
.input-group-addon:last-child,
|
| 2275 |
-
.input-group-btn:last-child > .btn,
|
| 2276 |
-
.input-group-btn:last-child > .btn-group > .btn,
|
| 2277 |
-
.input-group-btn:last-child > .dropdown-toggle,
|
| 2278 |
-
.input-group-btn:first-child > .btn:not(:first-child),
|
| 2279 |
-
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
|
| 2280 |
border-bottom-left-radius: 0;
|
| 2281 |
-
border-top-left-radius: 0;
|
| 2282 |
-
|
| 2283 |
-
.input-group-addon:last-child {
|
| 2284 |
-
border-left: 0;
|
| 2285 |
-
|
| 2286 |
-
.input-group-btn {
|
| 2287 |
position: relative;
|
| 2288 |
font-size: 0;
|
| 2289 |
-
white-space: nowrap;
|
| 2290 |
-
|
| 2291 |
-
|
| 2292 |
-
|
| 2293 |
-
}
|
| 2294 |
-
.input-group-btn > .btn
|
| 2295 |
-
|
| 2296 |
-
|
| 2297 |
-
.input-group-btn > .btn
|
| 2298 |
-
|
| 2299 |
-
.input-group-btn > .btn
|
| 2300 |
-
|
| 2301 |
-
|
| 2302 |
-
|
| 2303 |
-
|
| 2304 |
-
|
| 2305 |
-
}
|
| 2306 |
-
.input-group-btn:last-child > .btn,
|
| 2307 |
-
.input-group-btn:last-child > .btn-group {
|
| 2308 |
-
z-index: 2;
|
| 2309 |
-
margin-left: -1px;
|
| 2310 |
-
}
|
| 2311 |
-
.close {
|
| 2312 |
float: right;
|
| 2313 |
font-size: 21px;
|
| 2314 |
font-weight: bold;
|
| 2315 |
line-height: 1;
|
| 2316 |
-
color: #
|
| 2317 |
-
text-shadow: 0 1px 0 #
|
| 2318 |
opacity: 0.2;
|
| 2319 |
-
filter: alpha(opacity=20);
|
| 2320 |
-
|
| 2321 |
-
|
| 2322 |
-
|
| 2323 |
-
|
| 2324 |
-
|
| 2325 |
-
|
| 2326 |
-
|
| 2327 |
-
|
| 2328 |
-
}
|
| 2329 |
-
button.close {
|
| 2330 |
padding: 0;
|
| 2331 |
cursor: pointer;
|
| 2332 |
background: transparent;
|
| 2333 |
border: 0;
|
| 2334 |
-
-webkit-appearance: none;
|
| 2335 |
-
|
| 2336 |
.modal-open {
|
| 2337 |
-
overflow: hidden;
|
| 2338 |
-
|
| 2339 |
.modal {
|
| 2340 |
display: none;
|
| 2341 |
overflow: hidden;
|
|
@@ -2346,44 +1104,32 @@ button.close {
|
|
| 2346 |
left: 0;
|
| 2347 |
z-index: 1050;
|
| 2348 |
-webkit-overflow-scrolling: touch;
|
| 2349 |
-
outline: 0;
|
| 2350 |
-
|
| 2351 |
-
|
| 2352 |
-
|
| 2353 |
-
-
|
| 2354 |
-
|
| 2355 |
-
|
| 2356 |
-
-webkit-transition: -webkit-transform 0.3s ease-out;
|
| 2357 |
-
-o-transition: -o-transform 0.3s ease-out;
|
| 2358 |
-
transition: transform 0.3s ease-out;
|
| 2359 |
-
}
|
| 2360 |
-
.modal.in .modal-dialog {
|
| 2361 |
-
-webkit-transform: translate(0, 0);
|
| 2362 |
-
-ms-transform: translate(0, 0);
|
| 2363 |
-
-o-transform: translate(0, 0);
|
| 2364 |
-
transform: translate(0, 0);
|
| 2365 |
-
}
|
| 2366 |
.modal-open .modal {
|
| 2367 |
overflow-x: hidden;
|
| 2368 |
-
overflow-y: auto;
|
| 2369 |
-
|
| 2370 |
.modal-dialog {
|
| 2371 |
position: relative;
|
| 2372 |
width: auto;
|
| 2373 |
-
margin: 10px;
|
| 2374 |
-
|
| 2375 |
.modal-content {
|
| 2376 |
position: relative;
|
| 2377 |
-
background-color: #
|
| 2378 |
-
border: 1px solid #
|
| 2379 |
border: 1px solid rgba(0, 0, 0, 0.2);
|
| 2380 |
border-radius: 6px;
|
| 2381 |
-
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
| 2382 |
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
| 2383 |
-
|
| 2384 |
-
|
| 2385 |
-
|
| 2386 |
-
}
|
| 2387 |
.modal-backdrop {
|
| 2388 |
position: fixed;
|
| 2389 |
top: 0;
|
|
@@ -2391,145 +1137,86 @@ button.close {
|
|
| 2391 |
bottom: 0;
|
| 2392 |
left: 0;
|
| 2393 |
z-index: 1040;
|
| 2394 |
-
background-color: #
|
| 2395 |
-
|
| 2396 |
-
|
| 2397 |
-
|
| 2398 |
-
|
| 2399 |
-
|
| 2400 |
-
|
| 2401 |
-
|
| 2402 |
-
filter: alpha(opacity=50);
|
| 2403 |
-
}
|
| 2404 |
.modal-header {
|
| 2405 |
padding: 15px;
|
| 2406 |
-
border-bottom: 1px solid #e5e5e5;
|
| 2407 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2408 |
.modal-header .close {
|
| 2409 |
-
margin-top: -2px;
|
| 2410 |
-
|
| 2411 |
.modal-title {
|
| 2412 |
margin: 0;
|
| 2413 |
-
line-height: 1.
|
| 2414 |
-
|
| 2415 |
.modal-body {
|
| 2416 |
position: relative;
|
| 2417 |
-
padding: 15px;
|
| 2418 |
-
|
| 2419 |
.modal-footer {
|
| 2420 |
padding: 15px;
|
| 2421 |
text-align: right;
|
| 2422 |
-
border-top: 1px solid #e5e5e5;
|
| 2423 |
-
|
| 2424 |
-
|
| 2425 |
-
|
| 2426 |
-
|
| 2427 |
-
}
|
| 2428 |
-
.modal-footer .btn
|
| 2429 |
-
|
| 2430 |
-
}
|
| 2431 |
-
.modal-footer .btn-
|
| 2432 |
-
|
| 2433 |
-
|
|
|
|
|
|
|
| 2434 |
.modal-scrollbar-measure {
|
| 2435 |
position: absolute;
|
| 2436 |
top: -9999px;
|
| 2437 |
width: 50px;
|
| 2438 |
height: 50px;
|
| 2439 |
-
overflow: scroll;
|
| 2440 |
-
|
| 2441 |
@media (min-width: 768px) {
|
| 2442 |
.modal-dialog {
|
| 2443 |
width: 600px;
|
| 2444 |
-
margin: 30px auto;
|
| 2445 |
-
}
|
| 2446 |
.modal-content {
|
| 2447 |
-
|
| 2448 |
-
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
| 2449 |
-
}
|
| 2450 |
.modal-sm {
|
| 2451 |
-
width: 300px;
|
| 2452 |
-
|
| 2453 |
-
}
|
| 2454 |
@media (min-width: 992px) {
|
| 2455 |
.modal-lg {
|
| 2456 |
-
width: 900px;
|
| 2457 |
-
|
| 2458 |
-
}
|
| 2459 |
-
.clearfix:before,
|
| 2460 |
-
.clearfix:after,
|
| 2461 |
-
.container:before,
|
| 2462 |
-
.container:after,
|
| 2463 |
-
.container-fluid:before,
|
| 2464 |
-
.container-fluid:after,
|
| 2465 |
-
.row:before,
|
| 2466 |
-
.row:after,
|
| 2467 |
-
.form-horizontal .form-group:before,
|
| 2468 |
-
.form-horizontal .form-group:after,
|
| 2469 |
-
.btn-toolbar:before,
|
| 2470 |
-
.btn-toolbar:after,
|
| 2471 |
-
.btn-group-vertical > .btn-group:before,
|
| 2472 |
-
.btn-group-vertical > .btn-group:after,
|
| 2473 |
-
.modal-header:before,
|
| 2474 |
-
.modal-header:after,
|
| 2475 |
-
.modal-footer:before,
|
| 2476 |
-
.modal-footer:after {
|
| 2477 |
-
content: " ";
|
| 2478 |
-
display: table;
|
| 2479 |
-
}
|
| 2480 |
-
.clearfix:after,
|
| 2481 |
-
.container:after,
|
| 2482 |
-
.container-fluid:after,
|
| 2483 |
-
.row:after,
|
| 2484 |
-
.form-horizontal .form-group:after,
|
| 2485 |
-
.btn-toolbar:after,
|
| 2486 |
-
.btn-group-vertical > .btn-group:after,
|
| 2487 |
-
.modal-header:after,
|
| 2488 |
-
.modal-footer:after {
|
| 2489 |
-
clear: both;
|
| 2490 |
-
}
|
| 2491 |
-
.center-block {
|
| 2492 |
-
display: block;
|
| 2493 |
-
margin-left: auto;
|
| 2494 |
-
margin-right: auto;
|
| 2495 |
-
}
|
| 2496 |
-
.pull-right {
|
| 2497 |
-
float: right !important;
|
| 2498 |
-
}
|
| 2499 |
-
.pull-left {
|
| 2500 |
-
float: left !important;
|
| 2501 |
-
}
|
| 2502 |
-
.hide {
|
| 2503 |
-
display: none !important;
|
| 2504 |
-
}
|
| 2505 |
-
.show {
|
| 2506 |
-
display: block !important;
|
| 2507 |
-
}
|
| 2508 |
-
.invisible {
|
| 2509 |
-
visibility: hidden;
|
| 2510 |
-
}
|
| 2511 |
-
.text-hide {
|
| 2512 |
-
font: 0/0 a;
|
| 2513 |
-
color: transparent;
|
| 2514 |
-
text-shadow: none;
|
| 2515 |
-
background-color: transparent;
|
| 2516 |
-
border: 0;
|
| 2517 |
-
}
|
| 2518 |
-
.hidden {
|
| 2519 |
-
display: none !important;
|
| 2520 |
-
}
|
| 2521 |
-
.affix {
|
| 2522 |
-
position: fixed;
|
| 2523 |
-
}
|
| 2524 |
@-ms-viewport {
|
| 2525 |
-
width: device-width;
|
| 2526 |
-
|
| 2527 |
-
.visible-xs
|
| 2528 |
-
|
| 2529 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2530 |
.visible-lg {
|
| 2531 |
-
display: none !important;
|
| 2532 |
-
|
| 2533 |
.visible-xs-block,
|
| 2534 |
.visible-xs-inline,
|
| 2535 |
.visible-xs-inline-block,
|
|
@@ -2542,192 +1229,148 @@ button.close {
|
|
| 2542 |
.visible-lg-block,
|
| 2543 |
.visible-lg-inline,
|
| 2544 |
.visible-lg-inline-block {
|
| 2545 |
-
display: none !important;
|
| 2546 |
-
|
| 2547 |
@media (max-width: 767px) {
|
| 2548 |
.visible-xs {
|
| 2549 |
-
display: block !important;
|
| 2550 |
-
}
|
| 2551 |
table.visible-xs {
|
| 2552 |
-
display: table !important;
|
| 2553 |
-
}
|
| 2554 |
tr.visible-xs {
|
| 2555 |
-
display: table-row !important;
|
| 2556 |
-
}
|
| 2557 |
th.visible-xs,
|
| 2558 |
td.visible-xs {
|
| 2559 |
-
display: table-cell !important;
|
| 2560 |
-
|
| 2561 |
-
}
|
| 2562 |
@media (max-width: 767px) {
|
| 2563 |
.visible-xs-block {
|
| 2564 |
-
display: block !important;
|
| 2565 |
-
|
| 2566 |
-
}
|
| 2567 |
@media (max-width: 767px) {
|
| 2568 |
.visible-xs-inline {
|
| 2569 |
-
display: inline !important;
|
| 2570 |
-
|
| 2571 |
-
}
|
| 2572 |
@media (max-width: 767px) {
|
| 2573 |
.visible-xs-inline-block {
|
| 2574 |
-
display: inline-block !important;
|
| 2575 |
-
|
| 2576 |
-
}
|
| 2577 |
@media (min-width: 768px) and (max-width: 991px) {
|
| 2578 |
.visible-sm {
|
| 2579 |
-
display: block !important;
|
| 2580 |
-
}
|
| 2581 |
table.visible-sm {
|
| 2582 |
-
display: table !important;
|
| 2583 |
-
}
|
| 2584 |
tr.visible-sm {
|
| 2585 |
-
display: table-row !important;
|
| 2586 |
-
}
|
| 2587 |
th.visible-sm,
|
| 2588 |
td.visible-sm {
|
| 2589 |
-
display: table-cell !important;
|
| 2590 |
-
|
| 2591 |
-
}
|
| 2592 |
@media (min-width: 768px) and (max-width: 991px) {
|
| 2593 |
.visible-sm-block {
|
| 2594 |
-
display: block !important;
|
| 2595 |
-
|
| 2596 |
-
}
|
| 2597 |
@media (min-width: 768px) and (max-width: 991px) {
|
| 2598 |
.visible-sm-inline {
|
| 2599 |
-
display: inline !important;
|
| 2600 |
-
|
| 2601 |
-
}
|
| 2602 |
@media (min-width: 768px) and (max-width: 991px) {
|
| 2603 |
.visible-sm-inline-block {
|
| 2604 |
-
display: inline-block !important;
|
| 2605 |
-
|
| 2606 |
-
}
|
| 2607 |
@media (min-width: 992px) and (max-width: 1199px) {
|
| 2608 |
.visible-md {
|
| 2609 |
-
display: block !important;
|
| 2610 |
-
}
|
| 2611 |
table.visible-md {
|
| 2612 |
-
display: table !important;
|
| 2613 |
-
}
|
| 2614 |
tr.visible-md {
|
| 2615 |
-
display: table-row !important;
|
| 2616 |
-
}
|
| 2617 |
th.visible-md,
|
| 2618 |
td.visible-md {
|
| 2619 |
-
display: table-cell !important;
|
| 2620 |
-
|
| 2621 |
-
}
|
| 2622 |
@media (min-width: 992px) and (max-width: 1199px) {
|
| 2623 |
.visible-md-block {
|
| 2624 |
-
display: block !important;
|
| 2625 |
-
|
| 2626 |
-
}
|
| 2627 |
@media (min-width: 992px) and (max-width: 1199px) {
|
| 2628 |
.visible-md-inline {
|
| 2629 |
-
display: inline !important;
|
| 2630 |
-
|
| 2631 |
-
}
|
| 2632 |
@media (min-width: 992px) and (max-width: 1199px) {
|
| 2633 |
.visible-md-inline-block {
|
| 2634 |
-
display: inline-block !important;
|
| 2635 |
-
|
| 2636 |
-
}
|
| 2637 |
@media (min-width: 1200px) {
|
| 2638 |
.visible-lg {
|
| 2639 |
-
display: block !important;
|
| 2640 |
-
}
|
| 2641 |
table.visible-lg {
|
| 2642 |
-
display: table !important;
|
| 2643 |
-
}
|
| 2644 |
tr.visible-lg {
|
| 2645 |
-
display: table-row !important;
|
| 2646 |
-
}
|
| 2647 |
th.visible-lg,
|
| 2648 |
td.visible-lg {
|
| 2649 |
-
display: table-cell !important;
|
| 2650 |
-
|
| 2651 |
-
}
|
| 2652 |
@media (min-width: 1200px) {
|
| 2653 |
.visible-lg-block {
|
| 2654 |
-
display: block !important;
|
| 2655 |
-
|
| 2656 |
-
}
|
| 2657 |
@media (min-width: 1200px) {
|
| 2658 |
.visible-lg-inline {
|
| 2659 |
-
display: inline !important;
|
| 2660 |
-
|
| 2661 |
-
}
|
| 2662 |
@media (min-width: 1200px) {
|
| 2663 |
.visible-lg-inline-block {
|
| 2664 |
-
display: inline-block !important;
|
| 2665 |
-
|
| 2666 |
-
}
|
| 2667 |
@media (max-width: 767px) {
|
| 2668 |
.hidden-xs {
|
| 2669 |
-
display: none !important;
|
| 2670 |
-
|
| 2671 |
-
}
|
| 2672 |
@media (min-width: 768px) and (max-width: 991px) {
|
| 2673 |
.hidden-sm {
|
| 2674 |
-
display: none !important;
|
| 2675 |
-
|
| 2676 |
-
}
|
| 2677 |
@media (min-width: 992px) and (max-width: 1199px) {
|
| 2678 |
.hidden-md {
|
| 2679 |
-
display: none !important;
|
| 2680 |
-
|
| 2681 |
-
}
|
| 2682 |
@media (min-width: 1200px) {
|
| 2683 |
.hidden-lg {
|
| 2684 |
-
display: none !important;
|
| 2685 |
-
|
| 2686 |
-
}
|
| 2687 |
.visible-print {
|
| 2688 |
-
display: none !important;
|
| 2689 |
-
|
| 2690 |
@media print {
|
| 2691 |
.visible-print {
|
| 2692 |
-
display: block !important;
|
| 2693 |
-
}
|
| 2694 |
table.visible-print {
|
| 2695 |
-
display: table !important;
|
| 2696 |
-
}
|
| 2697 |
tr.visible-print {
|
| 2698 |
-
display: table-row !important;
|
| 2699 |
-
}
|
| 2700 |
th.visible-print,
|
| 2701 |
td.visible-print {
|
| 2702 |
-
display: table-cell !important;
|
| 2703 |
-
|
| 2704 |
-
}
|
| 2705 |
.visible-print-block {
|
| 2706 |
-
display: none !important;
|
| 2707 |
-
|
| 2708 |
-
|
| 2709 |
-
|
| 2710 |
-
|
| 2711 |
-
}
|
| 2712 |
-
}
|
| 2713 |
.visible-print-inline {
|
| 2714 |
-
display: none !important;
|
| 2715 |
-
|
| 2716 |
-
|
| 2717 |
-
|
| 2718 |
-
|
| 2719 |
-
}
|
| 2720 |
-
}
|
| 2721 |
.visible-print-inline-block {
|
| 2722 |
-
display: none !important;
|
| 2723 |
-
|
| 2724 |
-
|
| 2725 |
-
|
| 2726 |
-
|
| 2727 |
-
}
|
| 2728 |
-
}
|
| 2729 |
@media print {
|
| 2730 |
.hidden-print {
|
| 2731 |
-
display: none !important;
|
| 2732 |
-
}
|
| 2733 |
-
}
|
| 1 |
/*!
|
| 2 |
+
* This file was generated through the Sass port of Bootstrap (https://github.com/twbs/bootstrap-sass).
|
| 3 |
+
* The following modules were used: "forms", "buttons", "button-groups", "input-groups", "close", "modals".
|
| 4 |
+
* - - - - - - - - - - - - - - - - - - - - - - - - -
|
| 5 |
+
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
| 6 |
* Copyright 2011-2016 Twitter, Inc.
|
| 7 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 8 |
*/
|
| 9 |
|
| 10 |
+
.embedpress-modal fieldset {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
padding: 0;
|
| 12 |
margin: 0;
|
| 13 |
border: 0;
|
| 14 |
+
min-width: 0; }
|
| 15 |
+
|
| 16 |
+
.embedpress-modal legend {
|
| 17 |
display: block;
|
| 18 |
width: 100%;
|
| 19 |
padding: 0;
|
| 22 |
line-height: inherit;
|
| 23 |
color: #333333;
|
| 24 |
border: 0;
|
| 25 |
+
border-bottom: 1px solid #e5e5e5; }
|
| 26 |
+
|
| 27 |
+
.embedpress-modal label {
|
| 28 |
display: inline-block;
|
| 29 |
max-width: 100%;
|
| 30 |
margin-bottom: 5px;
|
| 31 |
+
font-weight: bold; }
|
| 32 |
+
|
| 33 |
+
.embedpress-modal input[type="search"] {
|
| 34 |
+
box-sizing: border-box; }
|
| 35 |
+
|
| 36 |
+
.embedpress-modal input[type="radio"],
|
| 37 |
+
.embedpress-modal input[type="checkbox"] {
|
|
|
|
|
|
|
| 38 |
margin: 4px 0 0;
|
| 39 |
margin-top: 1px \9;
|
| 40 |
+
line-height: normal; }
|
| 41 |
+
|
| 42 |
+
.embedpress-modal input[type="file"] {
|
| 43 |
+
display: block; }
|
| 44 |
+
|
| 45 |
+
.embedpress-modal input[type="range"] {
|
| 46 |
display: block;
|
| 47 |
+
width: 100%; }
|
| 48 |
+
|
| 49 |
+
.embedpress-modal select[multiple],
|
| 50 |
+
.embedpress-modal select[size] {
|
| 51 |
+
height: auto; }
|
| 52 |
+
|
| 53 |
+
.embedpress-modal input[type="file"]:focus,
|
| 54 |
+
.embedpress-modal input[type="radio"]:focus,
|
| 55 |
+
.embedpress-modal input[type="checkbox"]:focus {
|
|
|
|
| 56 |
outline: 5px auto -webkit-focus-ring-color;
|
| 57 |
+
outline-offset: -2px; }
|
| 58 |
+
|
| 59 |
+
.embedpress-modal output {
|
| 60 |
display: block;
|
| 61 |
padding-top: 7px;
|
| 62 |
font-size: 14px;
|
| 63 |
+
line-height: 1.42857;
|
| 64 |
+
color: #555555; }
|
| 65 |
+
|
| 66 |
+
.embedpress-modal .form-control {
|
| 67 |
display: block;
|
| 68 |
width: 100%;
|
| 69 |
height: 34px;
|
| 70 |
padding: 6px 12px;
|
| 71 |
font-size: 14px;
|
| 72 |
+
line-height: 1.42857;
|
| 73 |
color: #555555;
|
| 74 |
+
background-color: #fff;
|
| 75 |
background-image: none;
|
| 76 |
+
border: 1px solid #ccc;
|
| 77 |
border-radius: 4px;
|
|
|
|
| 78 |
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
| 79 |
+
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
|
| 80 |
+
.embedpress-modal .form-control:focus {
|
| 81 |
+
border-color: #66afe9;
|
| 82 |
+
outline: 0;
|
| 83 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
|
| 84 |
+
.embedpress-modal .form-control::-moz-placeholder {
|
| 85 |
+
color: #999;
|
| 86 |
+
opacity: 1; }
|
| 87 |
+
.embedpress-modal .form-control:-ms-input-placeholder {
|
| 88 |
+
color: #999; }
|
| 89 |
+
.embedpress-modal .form-control::-webkit-input-placeholder {
|
| 90 |
+
color: #999; }
|
| 91 |
+
.embedpress-modal .form-control::-ms-expand {
|
| 92 |
+
border: 0;
|
| 93 |
+
background-color: transparent; }
|
| 94 |
+
.embedpress-modal .form-control[disabled], .embedpress-modal .form-control[readonly],
|
| 95 |
+
fieldset[disabled] .embedpress-modal .form-control {
|
| 96 |
+
background-color: #eeeeee;
|
| 97 |
+
opacity: 1; }
|
| 98 |
+
.embedpress-modal .form-control[disabled],
|
| 99 |
+
fieldset[disabled] .embedpress-modal .form-control {
|
| 100 |
+
cursor: not-allowed; }
|
| 101 |
+
|
| 102 |
+
.embedpress-modal textarea.form-control {
|
| 103 |
+
height: auto; }
|
| 104 |
+
|
| 105 |
+
.embedpress-modal input[type="search"] {
|
| 106 |
+
-webkit-appearance: none; }
|
| 107 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
| 109 |
+
.embedpress-modal input[type="date"].form-control,
|
| 110 |
+
.embedpress-modal input[type="time"].form-control,
|
| 111 |
+
.embedpress-modal input[type="datetime-local"].form-control,
|
| 112 |
+
.embedpress-modal input[type="month"].form-control {
|
| 113 |
+
line-height: 34px; }
|
| 114 |
+
.embedpress-modal input[type="date"].input-sm, .embedpress-modal .input-group-sm > input[type="date"].form-control, .embedpress-modal .input-group-sm > input[type="date"].input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > input[type="date"].btn,
|
| 115 |
+
.input-group-sm .embedpress-modal input[type="date"],
|
| 116 |
+
.embedpress-modal input[type="time"].input-sm, .embedpress-modal .input-group-sm > input[type="time"].form-control, .embedpress-modal .input-group-sm > input[type="time"].input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > input[type="time"].btn,
|
| 117 |
+
.input-group-sm
|
| 118 |
+
.embedpress-modal input[type="time"],
|
| 119 |
+
.embedpress-modal input[type="datetime-local"].input-sm, .embedpress-modal .input-group-sm > input[type="datetime-local"].form-control, .embedpress-modal .input-group-sm > input[type="datetime-local"].input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
|
| 120 |
+
.input-group-sm
|
| 121 |
+
.embedpress-modal input[type="datetime-local"],
|
| 122 |
+
.embedpress-modal input[type="month"].input-sm, .embedpress-modal .input-group-sm > input[type="month"].form-control, .embedpress-modal .input-group-sm > input[type="month"].input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > input[type="month"].btn,
|
| 123 |
+
.input-group-sm
|
| 124 |
+
.embedpress-modal input[type="month"] {
|
| 125 |
+
line-height: 30px; }
|
| 126 |
+
.embedpress-modal input[type="date"].input-lg, .embedpress-modal .input-group-lg > input[type="date"].form-control, .embedpress-modal .input-group-lg > input[type="date"].input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > input[type="date"].btn,
|
| 127 |
+
.input-group-lg .embedpress-modal input[type="date"],
|
| 128 |
+
.embedpress-modal input[type="time"].input-lg, .embedpress-modal .input-group-lg > input[type="time"].form-control, .embedpress-modal .input-group-lg > input[type="time"].input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > input[type="time"].btn,
|
| 129 |
+
.input-group-lg
|
| 130 |
+
.embedpress-modal input[type="time"],
|
| 131 |
+
.embedpress-modal input[type="datetime-local"].input-lg, .embedpress-modal .input-group-lg > input[type="datetime-local"].form-control, .embedpress-modal .input-group-lg > input[type="datetime-local"].input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
|
| 132 |
+
.input-group-lg
|
| 133 |
+
.embedpress-modal input[type="datetime-local"],
|
| 134 |
+
.embedpress-modal input[type="month"].input-lg, .embedpress-modal .input-group-lg > input[type="month"].form-control, .embedpress-modal .input-group-lg > input[type="month"].input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > input[type="month"].btn,
|
| 135 |
+
.input-group-lg
|
| 136 |
+
.embedpress-modal input[type="month"] {
|
| 137 |
+
line-height: 46px; } }
|
| 138 |
+
|
| 139 |
+
.embedpress-modal .form-group {
|
| 140 |
+
margin-bottom: 15px; }
|
| 141 |
+
|
| 142 |
+
.embedpress-modal .radio,
|
| 143 |
+
.embedpress-modal .checkbox {
|
| 144 |
position: relative;
|
| 145 |
display: block;
|
| 146 |
margin-top: 10px;
|
| 147 |
+
margin-bottom: 10px; }
|
| 148 |
+
.embedpress-modal .radio label,
|
| 149 |
+
.embedpress-modal .checkbox label {
|
| 150 |
+
min-height: 20px;
|
| 151 |
+
padding-left: 20px;
|
| 152 |
+
margin-bottom: 0;
|
| 153 |
+
font-weight: normal;
|
| 154 |
+
cursor: pointer; }
|
| 155 |
+
|
| 156 |
+
.embedpress-modal .radio input[type="radio"],
|
| 157 |
+
.embedpress-modal .radio-inline input[type="radio"],
|
| 158 |
+
.embedpress-modal .checkbox input[type="checkbox"],
|
| 159 |
+
.embedpress-modal .checkbox-inline input[type="checkbox"] {
|
|
|
|
| 160 |
position: absolute;
|
| 161 |
margin-left: -20px;
|
| 162 |
+
margin-top: 4px \9; }
|
| 163 |
+
|
| 164 |
+
.embedpress-modal .radio + .radio,
|
| 165 |
+
.embedpress-modal .checkbox + .checkbox {
|
| 166 |
+
margin-top: -5px; }
|
| 167 |
+
|
| 168 |
+
.embedpress-modal .radio-inline,
|
| 169 |
+
.embedpress-modal .checkbox-inline {
|
| 170 |
position: relative;
|
| 171 |
display: inline-block;
|
| 172 |
padding-left: 20px;
|
| 173 |
margin-bottom: 0;
|
| 174 |
vertical-align: middle;
|
| 175 |
font-weight: normal;
|
| 176 |
+
cursor: pointer; }
|
| 177 |
+
|
| 178 |
+
.embedpress-modal .radio-inline + .radio-inline,
|
| 179 |
+
.embedpress-modal .checkbox-inline + .checkbox-inline {
|
| 180 |
margin-top: 0;
|
| 181 |
+
margin-left: 10px; }
|
| 182 |
+
|
| 183 |
+
.embedpress-modal input[type="radio"][disabled], .embedpress-modal input[type="radio"].disabled,
|
| 184 |
+
fieldset[disabled] .embedpress-modal input[type="radio"],
|
| 185 |
+
.embedpress-modal input[type="checkbox"][disabled],
|
| 186 |
+
.embedpress-modal input[type="checkbox"].disabled,
|
| 187 |
+
fieldset[disabled]
|
| 188 |
+
.embedpress-modal input[type="checkbox"] {
|
| 189 |
+
cursor: not-allowed; }
|
| 190 |
+
|
| 191 |
+
.embedpress-modal .radio-inline.disabled,
|
| 192 |
+
fieldset[disabled] .embedpress-modal .radio-inline,
|
| 193 |
+
.embedpress-modal .checkbox-inline.disabled,
|
| 194 |
+
fieldset[disabled]
|
| 195 |
+
.embedpress-modal .checkbox-inline {
|
| 196 |
+
cursor: not-allowed; }
|
| 197 |
+
|
| 198 |
+
.embedpress-modal .radio.disabled label,
|
| 199 |
+
fieldset[disabled] .embedpress-modal .radio label,
|
| 200 |
+
.embedpress-modal .checkbox.disabled label,
|
| 201 |
+
fieldset[disabled]
|
| 202 |
+
.embedpress-modal .checkbox label {
|
| 203 |
+
cursor: not-allowed; }
|
| 204 |
+
|
| 205 |
+
.embedpress-modal .form-control-static {
|
| 206 |
padding-top: 7px;
|
| 207 |
padding-bottom: 7px;
|
| 208 |
margin-bottom: 0;
|
| 209 |
+
min-height: 34px; }
|
| 210 |
+
.embedpress-modal .form-control-static.input-lg, .embedpress-modal .input-group-lg > .form-control-static.form-control, .embedpress-modal .input-group-lg > .form-control-static.input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > .form-control-static.btn, .embedpress-modal .form-control-static.input-sm, .embedpress-modal .input-group-sm > .form-control-static.form-control, .embedpress-modal .input-group-sm > .form-control-static.input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > .form-control-static.btn {
|
| 211 |
+
padding-left: 0;
|
| 212 |
+
padding-right: 0; }
|
| 213 |
+
|
| 214 |
+
.embedpress-modal .input-sm, .embedpress-modal .input-group-sm > .form-control, .embedpress-modal .input-group-sm > .input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > .btn {
|
|
|
|
|
|
|
| 215 |
height: 30px;
|
| 216 |
padding: 5px 10px;
|
| 217 |
font-size: 12px;
|
| 218 |
line-height: 1.5;
|
| 219 |
+
border-radius: 3px; }
|
| 220 |
+
|
| 221 |
+
.embedpress-modal select.input-sm, .embedpress-modal .input-group-sm > select.form-control, .embedpress-modal .input-group-sm > select.input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > select.btn {
|
| 222 |
height: 30px;
|
| 223 |
+
line-height: 30px; }
|
| 224 |
+
|
| 225 |
+
.embedpress-modal textarea.input-sm, .embedpress-modal .input-group-sm > textarea.form-control, .embedpress-modal .input-group-sm > textarea.input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > textarea.btn,
|
| 226 |
+
.embedpress-modal select[multiple].input-sm, .embedpress-modal .input-group-sm > select[multiple].form-control, .embedpress-modal .input-group-sm > select[multiple].input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > select[multiple].btn {
|
| 227 |
+
height: auto; }
|
| 228 |
+
|
| 229 |
+
.embedpress-modal .form-group-sm .form-control {
|
| 230 |
height: 30px;
|
| 231 |
padding: 5px 10px;
|
| 232 |
font-size: 12px;
|
| 233 |
line-height: 1.5;
|
| 234 |
+
border-radius: 3px; }
|
| 235 |
+
|
| 236 |
+
.embedpress-modal .form-group-sm select.form-control {
|
| 237 |
height: 30px;
|
| 238 |
+
line-height: 30px; }
|
| 239 |
+
|
| 240 |
+
.embedpress-modal .form-group-sm textarea.form-control,
|
| 241 |
+
.embedpress-modal .form-group-sm select[multiple].form-control {
|
| 242 |
+
height: auto; }
|
| 243 |
+
|
| 244 |
+
.embedpress-modal .form-group-sm .form-control-static {
|
| 245 |
height: 30px;
|
| 246 |
min-height: 32px;
|
| 247 |
padding: 6px 10px;
|
| 248 |
font-size: 12px;
|
| 249 |
+
line-height: 1.5; }
|
| 250 |
+
|
| 251 |
+
.embedpress-modal .input-lg, .embedpress-modal .input-group-lg > .form-control, .embedpress-modal .input-group-lg > .input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > .btn {
|
| 252 |
height: 46px;
|
| 253 |
padding: 10px 16px;
|
| 254 |
font-size: 18px;
|
| 255 |
+
line-height: 1.33333;
|
| 256 |
+
border-radius: 6px; }
|
| 257 |
+
|
| 258 |
+
.embedpress-modal select.input-lg, .embedpress-modal .input-group-lg > select.form-control, .embedpress-modal .input-group-lg > select.input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > select.btn {
|
| 259 |
height: 46px;
|
| 260 |
+
line-height: 46px; }
|
| 261 |
+
|
| 262 |
+
.embedpress-modal textarea.input-lg, .embedpress-modal .input-group-lg > textarea.form-control, .embedpress-modal .input-group-lg > textarea.input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > textarea.btn,
|
| 263 |
+
.embedpress-modal select[multiple].input-lg, .embedpress-modal .input-group-lg > select[multiple].form-control, .embedpress-modal .input-group-lg > select[multiple].input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > select[multiple].btn {
|
| 264 |
+
height: auto; }
|
| 265 |
+
|
| 266 |
+
.embedpress-modal .form-group-lg .form-control {
|
| 267 |
height: 46px;
|
| 268 |
padding: 10px 16px;
|
| 269 |
font-size: 18px;
|
| 270 |
+
line-height: 1.33333;
|
| 271 |
+
border-radius: 6px; }
|
| 272 |
+
|
| 273 |
+
.embedpress-modal .form-group-lg select.form-control {
|
| 274 |
height: 46px;
|
| 275 |
+
line-height: 46px; }
|
| 276 |
+
|
| 277 |
+
.embedpress-modal .form-group-lg textarea.form-control,
|
| 278 |
+
.embedpress-modal .form-group-lg select[multiple].form-control {
|
| 279 |
+
height: auto; }
|
| 280 |
+
|
| 281 |
+
.embedpress-modal .form-group-lg .form-control-static {
|
| 282 |
height: 46px;
|
| 283 |
min-height: 38px;
|
| 284 |
padding: 11px 16px;
|
| 285 |
font-size: 18px;
|
| 286 |
+
line-height: 1.33333; }
|
| 287 |
+
|
| 288 |
+
.embedpress-modal .has-feedback {
|
| 289 |
+
position: relative; }
|
| 290 |
+
.embedpress-modal .has-feedback .form-control {
|
| 291 |
+
padding-right: 42.5px; }
|
| 292 |
+
|
| 293 |
+
.embedpress-modal .form-control-feedback {
|
|
|
|
| 294 |
position: absolute;
|
| 295 |
top: 0;
|
| 296 |
right: 0;
|
| 300 |
height: 34px;
|
| 301 |
line-height: 34px;
|
| 302 |
text-align: center;
|
| 303 |
+
pointer-events: none; }
|
| 304 |
+
|
| 305 |
+
.embedpress-modal .input-lg + .form-control-feedback, .embedpress-modal .input-group-lg > .form-control + .form-control-feedback, .embedpress-modal .input-group-lg > .input-group-addon + .form-control-feedback, .embedpress-modal .input-group-lg > .input-group-btn > .btn + .form-control-feedback,
|
| 306 |
+
.embedpress-modal .input-group-lg + .form-control-feedback,
|
| 307 |
+
.embedpress-modal .form-group-lg .form-control + .form-control-feedback {
|
| 308 |
width: 46px;
|
| 309 |
height: 46px;
|
| 310 |
+
line-height: 46px; }
|
| 311 |
+
|
| 312 |
+
.embedpress-modal .input-sm + .form-control-feedback, .embedpress-modal .input-group-sm > .form-control + .form-control-feedback, .embedpress-modal .input-group-sm > .input-group-addon + .form-control-feedback, .embedpress-modal .input-group-sm > .input-group-btn > .btn + .form-control-feedback,
|
| 313 |
+
.embedpress-modal .input-group-sm + .form-control-feedback,
|
| 314 |
+
.embedpress-modal .form-group-sm .form-control + .form-control-feedback {
|
| 315 |
width: 30px;
|
| 316 |
height: 30px;
|
| 317 |
+
line-height: 30px; }
|
| 318 |
+
|
| 319 |
+
.embedpress-modal .has-success .help-block,
|
| 320 |
+
.embedpress-modal .has-success .control-label,
|
| 321 |
+
.embedpress-modal .has-success .radio,
|
| 322 |
+
.embedpress-modal .has-success .checkbox,
|
| 323 |
+
.embedpress-modal .has-success .radio-inline,
|
| 324 |
+
.embedpress-modal .has-success .checkbox-inline,
|
| 325 |
+
.embedpress-modal .has-success.radio label,
|
| 326 |
+
.embedpress-modal .has-success.checkbox label,
|
| 327 |
+
.embedpress-modal .has-success.radio-inline label,
|
| 328 |
+
.embedpress-modal .has-success.checkbox-inline label {
|
| 329 |
+
color: #3c763d; }
|
| 330 |
+
|
| 331 |
+
.embedpress-modal .has-success .form-control {
|
| 332 |
border-color: #3c763d;
|
| 333 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
|
| 334 |
+
.embedpress-modal .has-success .form-control:focus {
|
| 335 |
+
border-color: #2b542c;
|
| 336 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }
|
| 337 |
+
|
| 338 |
+
.embedpress-modal .has-success .input-group-addon {
|
|
|
|
|
|
|
|
|
|
| 339 |
color: #3c763d;
|
| 340 |
border-color: #3c763d;
|
| 341 |
+
background-color: #dff0d8; }
|
| 342 |
+
|
| 343 |
+
.embedpress-modal .has-success .form-control-feedback {
|
| 344 |
+
color: #3c763d; }
|
| 345 |
+
|
| 346 |
+
.embedpress-modal .has-warning .help-block,
|
| 347 |
+
.embedpress-modal .has-warning .control-label,
|
| 348 |
+
.embedpress-modal .has-warning .radio,
|
| 349 |
+
.embedpress-modal .has-warning .checkbox,
|
| 350 |
+
.embedpress-modal .has-warning .radio-inline,
|
| 351 |
+
.embedpress-modal .has-warning .checkbox-inline,
|
| 352 |
+
.embedpress-modal .has-warning.radio label,
|
| 353 |
+
.embedpress-modal .has-warning.checkbox label,
|
| 354 |
+
.embedpress-modal .has-warning.radio-inline label,
|
| 355 |
+
.embedpress-modal .has-warning.checkbox-inline label {
|
| 356 |
+
color: #8a6d3b; }
|
| 357 |
+
|
| 358 |
+
.embedpress-modal .has-warning .form-control {
|
| 359 |
border-color: #8a6d3b;
|
| 360 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
|
| 361 |
+
.embedpress-modal .has-warning .form-control:focus {
|
| 362 |
+
border-color: #66512c;
|
| 363 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }
|
| 364 |
+
|
| 365 |
+
.embedpress-modal .has-warning .input-group-addon {
|
|
|
|
|
|
|
|
|
|
| 366 |
color: #8a6d3b;
|
| 367 |
border-color: #8a6d3b;
|
| 368 |
+
background-color: #fcf8e3; }
|
| 369 |
+
|
| 370 |
+
.embedpress-modal .has-warning .form-control-feedback {
|
| 371 |
+
color: #8a6d3b; }
|
| 372 |
+
|
| 373 |
+
.embedpress-modal .has-error .help-block,
|
| 374 |
+
.embedpress-modal .has-error .control-label,
|
| 375 |
+
.embedpress-modal .has-error .radio,
|
| 376 |
+
.embedpress-modal .has-error .checkbox,
|
| 377 |
+
.embedpress-modal .has-error .radio-inline,
|
| 378 |
+
.embedpress-modal .has-error .checkbox-inline,
|
| 379 |
+
.embedpress-modal .has-error.radio label,
|
| 380 |
+
.embedpress-modal .has-error.checkbox label,
|
| 381 |
+
.embedpress-modal .has-error.radio-inline label,
|
| 382 |
+
.embedpress-modal .has-error.checkbox-inline label {
|
| 383 |
+
color: #a94442; }
|
| 384 |
+
|
| 385 |
+
.embedpress-modal .has-error .form-control {
|
| 386 |
border-color: #a94442;
|
| 387 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
|
| 388 |
+
.embedpress-modal .has-error .form-control:focus {
|
| 389 |
+
border-color: #843534;
|
| 390 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }
|
| 391 |
+
|
| 392 |
+
.embedpress-modal .has-error .input-group-addon {
|
|
|
|
|
|
|
|
|
|
| 393 |
color: #a94442;
|
| 394 |
border-color: #a94442;
|
| 395 |
+
background-color: #f2dede; }
|
| 396 |
+
|
| 397 |
+
.embedpress-modal .has-error .form-control-feedback {
|
| 398 |
+
color: #a94442; }
|
| 399 |
+
|
| 400 |
+
.embedpress-modal .has-feedback label ~ .form-control-feedback {
|
| 401 |
+
top: 25px; }
|
| 402 |
+
|
| 403 |
+
.embedpress-modal .has-feedback label.sr-only ~ .form-control-feedback {
|
| 404 |
+
top: 0; }
|
| 405 |
+
|
| 406 |
+
.embedpress-modal .help-block {
|
| 407 |
display: block;
|
| 408 |
margin-top: 5px;
|
| 409 |
margin-bottom: 10px;
|
| 410 |
+
color: #737373; }
|
| 411 |
+
|
| 412 |
@media (min-width: 768px) {
|
| 413 |
+
.embedpress-modal .form-inline .form-group {
|
| 414 |
display: inline-block;
|
| 415 |
margin-bottom: 0;
|
| 416 |
+
vertical-align: middle; }
|
| 417 |
+
.embedpress-modal .form-inline .form-control {
|
|
|
|
| 418 |
display: inline-block;
|
| 419 |
width: auto;
|
| 420 |
+
vertical-align: middle; }
|
| 421 |
+
.embedpress-modal .form-inline .form-control-static {
|
| 422 |
+
display: inline-block; }
|
| 423 |
+
.embedpress-modal .form-inline .input-group {
|
|
|
|
|
|
|
| 424 |
display: inline-table;
|
| 425 |
+
vertical-align: middle; }
|
| 426 |
+
.embedpress-modal .form-inline .input-group .input-group-addon,
|
| 427 |
+
.embedpress-modal .form-inline .input-group .input-group-btn,
|
| 428 |
+
.embedpress-modal .form-inline .input-group .form-control {
|
| 429 |
+
width: auto; }
|
| 430 |
+
.embedpress-modal .form-inline .input-group > .form-control {
|
| 431 |
+
width: 100%; }
|
| 432 |
+
.embedpress-modal .form-inline .control-label {
|
|
|
|
|
|
|
|
|
|
| 433 |
margin-bottom: 0;
|
| 434 |
+
vertical-align: middle; }
|
| 435 |
+
.embedpress-modal .form-inline .radio,
|
| 436 |
+
.embedpress-modal .form-inline .checkbox {
|
|
|
|
| 437 |
display: inline-block;
|
| 438 |
margin-top: 0;
|
| 439 |
margin-bottom: 0;
|
| 440 |
+
vertical-align: middle; }
|
| 441 |
+
.embedpress-modal .form-inline .radio label,
|
| 442 |
+
.embedpress-modal .form-inline .checkbox label {
|
| 443 |
+
padding-left: 0; }
|
| 444 |
+
.embedpress-modal .form-inline .radio input[type="radio"],
|
| 445 |
+
.embedpress-modal .form-inline .checkbox input[type="checkbox"] {
|
|
|
|
|
|
|
| 446 |
position: relative;
|
| 447 |
+
margin-left: 0; }
|
| 448 |
+
.embedpress-modal .form-inline .has-feedback .form-control-feedback {
|
| 449 |
+
top: 0; } }
|
| 450 |
+
|
| 451 |
+
.embedpress-modal .form-horizontal .radio,
|
| 452 |
+
.embedpress-modal .form-horizontal .checkbox,
|
| 453 |
+
.embedpress-modal .form-horizontal .radio-inline,
|
| 454 |
+
.embedpress-modal .form-horizontal .checkbox-inline {
|
|
|
|
|
|
|
| 455 |
margin-top: 0;
|
| 456 |
margin-bottom: 0;
|
| 457 |
+
padding-top: 7px; }
|
| 458 |
+
|
| 459 |
+
.embedpress-modal .form-horizontal .radio,
|
| 460 |
+
.embedpress-modal .form-horizontal .checkbox {
|
| 461 |
+
min-height: 27px; }
|
| 462 |
+
|
| 463 |
+
.embedpress-modal .form-horizontal .form-group {
|
| 464 |
margin-left: -15px;
|
| 465 |
+
margin-right: -15px; }
|
| 466 |
+
.embedpress-modal .form-horizontal .form-group:before, .embedpress-modal .form-horizontal .form-group:after {
|
| 467 |
+
content: " ";
|
| 468 |
+
display: table; }
|
| 469 |
+
.embedpress-modal .form-horizontal .form-group:after {
|
| 470 |
+
clear: both; }
|
| 471 |
+
|
| 472 |
@media (min-width: 768px) {
|
| 473 |
+
.embedpress-modal .form-horizontal .control-label {
|
| 474 |
text-align: right;
|
| 475 |
margin-bottom: 0;
|
| 476 |
+
padding-top: 7px; } }
|
| 477 |
+
|
| 478 |
+
.embedpress-modal .form-horizontal .has-feedback .form-control-feedback {
|
| 479 |
+
right: 15px; }
|
| 480 |
+
|
|
|
|
| 481 |
@media (min-width: 768px) {
|
| 482 |
+
.embedpress-modal .form-horizontal .form-group-lg .control-label {
|
| 483 |
padding-top: 11px;
|
| 484 |
+
font-size: 18px; } }
|
| 485 |
+
|
|
|
|
| 486 |
@media (min-width: 768px) {
|
| 487 |
+
.embedpress-modal .form-horizontal .form-group-sm .control-label {
|
| 488 |
padding-top: 6px;
|
| 489 |
+
font-size: 12px; } }
|
| 490 |
+
|
| 491 |
+
.embedpress-modal .btn {
|
|
|
|
| 492 |
display: inline-block;
|
| 493 |
margin-bottom: 0;
|
| 494 |
font-weight: normal;
|
| 502 |
white-space: nowrap;
|
| 503 |
padding: 6px 12px;
|
| 504 |
font-size: 14px;
|
| 505 |
+
line-height: 1.42857;
|
| 506 |
border-radius: 4px;
|
| 507 |
-webkit-user-select: none;
|
| 508 |
-moz-user-select: none;
|
| 509 |
-ms-user-select: none;
|
| 510 |
+
user-select: none; }
|
| 511 |
+
.embedpress-modal .btn:focus, .embedpress-modal .btn.focus, .embedpress-modal .btn:active:focus, .embedpress-modal .btn:active.focus, .embedpress-modal .btn.active:focus, .embedpress-modal .btn.active.focus {
|
| 512 |
+
outline: 5px auto -webkit-focus-ring-color;
|
| 513 |
+
outline-offset: -2px; }
|
| 514 |
+
.embedpress-modal .btn:hover, .embedpress-modal .btn:focus, .embedpress-modal .btn.focus {
|
| 515 |
+
color: #333;
|
| 516 |
+
text-decoration: none; }
|
| 517 |
+
.embedpress-modal .btn:active, .embedpress-modal .btn.active {
|
| 518 |
+
outline: 0;
|
| 519 |
+
background-image: none;
|
| 520 |
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
|
| 521 |
+
.embedpress-modal .btn.disabled, .embedpress-modal .btn[disabled],
|
| 522 |
+
fieldset[disabled] .embedpress-modal .btn {
|
| 523 |
+
cursor: not-allowed;
|
| 524 |
+
opacity: 0.65;
|
| 525 |
+
filter: alpha(opacity=65);
|
| 526 |
+
box-shadow: none; }
|
| 527 |
+
|
| 528 |
+
.embedpress-modal a.btn.disabled,
|
| 529 |
+
fieldset[disabled] .embedpress-modal a.btn {
|
| 530 |
+
pointer-events: none; }
|
| 531 |
+
|
| 532 |
+
.embedpress-modal .btn-default {
|
| 533 |
+
color: #333;
|
| 534 |
+
background-color: #fff;
|
| 535 |
+
border-color: #ccc; }
|
| 536 |
+
.embedpress-modal .btn-default:focus, .embedpress-modal .btn-default.focus {
|
| 537 |
+
color: #333;
|
| 538 |
+
background-color: #e6e6e6;
|
| 539 |
+
border-color: #8c8c8c; }
|
| 540 |
+
.embedpress-modal .btn-default:hover {
|
| 541 |
+
color: #333;
|
| 542 |
+
background-color: #e6e6e6;
|
| 543 |
+
border-color: #adadad; }
|
| 544 |
+
.embedpress-modal .btn-default:active, .embedpress-modal .btn-default.active,
|
| 545 |
+
.open > .embedpress-modal .btn-default.dropdown-toggle {
|
| 546 |
+
color: #333;
|
| 547 |
+
background-color: #e6e6e6;
|
| 548 |
+
border-color: #adadad; }
|
| 549 |
+
.embedpress-modal .btn-default:active:hover, .embedpress-modal .btn-default:active:focus, .embedpress-modal .btn-default:active.focus, .embedpress-modal .btn-default.active:hover, .embedpress-modal .btn-default.active:focus, .embedpress-modal .btn-default.active.focus,
|
| 550 |
+
.open > .embedpress-modal .btn-default.dropdown-toggle:hover,
|
| 551 |
+
.open > .embedpress-modal .btn-default.dropdown-toggle:focus,
|
| 552 |
+
.open > .embedpress-modal .btn-default.dropdown-toggle.focus {
|
| 553 |
+
color: #333;
|
| 554 |
+
background-color: #d4d4d4;
|
| 555 |
+
border-color: #8c8c8c; }
|
| 556 |
+
.embedpress-modal .btn-default:active, .embedpress-modal .btn-default.active,
|
| 557 |
+
.open > .embedpress-modal .btn-default.dropdown-toggle {
|
| 558 |
+
background-image: none; }
|
| 559 |
+
.embedpress-modal .btn-default.disabled:hover, .embedpress-modal .btn-default.disabled:focus, .embedpress-modal .btn-default.disabled.focus, .embedpress-modal .btn-default[disabled]:hover, .embedpress-modal .btn-default[disabled]:focus, .embedpress-modal .btn-default[disabled].focus,
|
| 560 |
+
fieldset[disabled] .embedpress-modal .btn-default:hover,
|
| 561 |
+
fieldset[disabled] .embedpress-modal .btn-default:focus,
|
| 562 |
+
fieldset[disabled] .embedpress-modal .btn-default.focus {
|
| 563 |
+
background-color: #fff;
|
| 564 |
+
border-color: #ccc; }
|
| 565 |
+
.embedpress-modal .btn-default .badge {
|
| 566 |
+
color: #fff;
|
| 567 |
+
background-color: #333; }
|
| 568 |
+
|
| 569 |
+
.embedpress-modal .btn-primary {
|
| 570 |
+
color: #fff;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 571 |
background-color: #337ab7;
|
| 572 |
+
border-color: #2e6da4; }
|
| 573 |
+
.embedpress-modal .btn-primary:focus, .embedpress-modal .btn-primary.focus {
|
| 574 |
+
color: #fff;
|
| 575 |
+
background-color: #286090;
|
| 576 |
+
border-color: #122b40; }
|
| 577 |
+
.embedpress-modal .btn-primary:hover {
|
| 578 |
+
color: #fff;
|
| 579 |
+
background-color: #286090;
|
| 580 |
+
border-color: #204d74; }
|
| 581 |
+
.embedpress-modal .btn-primary:active, .embedpress-modal .btn-primary.active,
|
| 582 |
+
.open > .embedpress-modal .btn-primary.dropdown-toggle {
|
| 583 |
+
color: #fff;
|
| 584 |
+
background-color: #286090;
|
| 585 |
+
border-color: #204d74; }
|
| 586 |
+
.embedpress-modal .btn-primary:active:hover, .embedpress-modal .btn-primary:active:focus, .embedpress-modal .btn-primary:active.focus, .embedpress-modal .btn-primary.active:hover, .embedpress-modal .btn-primary.active:focus, .embedpress-modal .btn-primary.active.focus,
|
| 587 |
+
.open > .embedpress-modal .btn-primary.dropdown-toggle:hover,
|
| 588 |
+
.open > .embedpress-modal .btn-primary.dropdown-toggle:focus,
|
| 589 |
+
.open > .embedpress-modal .btn-primary.dropdown-toggle.focus {
|
| 590 |
+
color: #fff;
|
| 591 |
+
background-color: #204d74;
|
| 592 |
+
border-color: #122b40; }
|
| 593 |
+
.embedpress-modal .btn-primary:active, .embedpress-modal .btn-primary.active,
|
| 594 |
+
.open > .embedpress-modal .btn-primary.dropdown-toggle {
|
| 595 |
+
background-image: none; }
|
| 596 |
+
.embedpress-modal .btn-primary.disabled:hover, .embedpress-modal .btn-primary.disabled:focus, .embedpress-modal .btn-primary.disabled.focus, .embedpress-modal .btn-primary[disabled]:hover, .embedpress-modal .btn-primary[disabled]:focus, .embedpress-modal .btn-primary[disabled].focus,
|
| 597 |
+
fieldset[disabled] .embedpress-modal .btn-primary:hover,
|
| 598 |
+
fieldset[disabled] .embedpress-modal .btn-primary:focus,
|
| 599 |
+
fieldset[disabled] .embedpress-modal .btn-primary.focus {
|
| 600 |
+
background-color: #337ab7;
|
| 601 |
+
border-color: #2e6da4; }
|
| 602 |
+
.embedpress-modal .btn-primary .badge {
|
| 603 |
+
color: #337ab7;
|
| 604 |
+
background-color: #fff; }
|
| 605 |
+
|
| 606 |
+
.embedpress-modal .btn-success {
|
| 607 |
+
color: #fff;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 608 |
background-color: #5cb85c;
|
| 609 |
+
border-color: #4cae4c; }
|
| 610 |
+
.embedpress-modal .btn-success:focus, .embedpress-modal .btn-success.focus {
|
| 611 |
+
color: #fff;
|
| 612 |
+
background-color: #449d44;
|
| 613 |
+
border-color: #255625; }
|
| 614 |
+
.embedpress-modal .btn-success:hover {
|
| 615 |
+
color: #fff;
|
| 616 |
+
background-color: #449d44;
|
| 617 |
+
border-color: #398439; }
|
| 618 |
+
.embedpress-modal .btn-success:active, .embedpress-modal .btn-success.active,
|
| 619 |
+
.open > .embedpress-modal .btn-success.dropdown-toggle {
|
| 620 |
+
color: #fff;
|
| 621 |
+
background-color: #449d44;
|
| 622 |
+
border-color: #398439; }
|
| 623 |
+
.embedpress-modal .btn-success:active:hover, .embedpress-modal .btn-success:active:focus, .embedpress-modal .btn-success:active.focus, .embedpress-modal .btn-success.active:hover, .embedpress-modal .btn-success.active:focus, .embedpress-modal .btn-success.active.focus,
|
| 624 |
+
.open > .embedpress-modal .btn-success.dropdown-toggle:hover,
|
| 625 |
+
.open > .embedpress-modal .btn-success.dropdown-toggle:focus,
|
| 626 |
+
.open > .embedpress-modal .btn-success.dropdown-toggle.focus {
|
| 627 |
+
color: #fff;
|
| 628 |
+
background-color: #398439;
|
| 629 |
+
border-color: #255625; }
|
| 630 |
+
.embedpress-modal .btn-success:active, .embedpress-modal .btn-success.active,
|
| 631 |
+
.open > .embedpress-modal .btn-success.dropdown-toggle {
|
| 632 |
+
background-image: none; }
|
| 633 |
+
.embedpress-modal .btn-success.disabled:hover, .embedpress-modal .btn-success.disabled:focus, .embedpress-modal .btn-success.disabled.focus, .embedpress-modal .btn-success[disabled]:hover, .embedpress-modal .btn-success[disabled]:focus, .embedpress-modal .btn-success[disabled].focus,
|
| 634 |
+
fieldset[disabled] .embedpress-modal .btn-success:hover,
|
| 635 |
+
fieldset[disabled] .embedpress-modal .btn-success:focus,
|
| 636 |
+
fieldset[disabled] .embedpress-modal .btn-success.focus {
|
| 637 |
+
background-color: #5cb85c;
|
| 638 |
+
border-color: #4cae4c; }
|
| 639 |
+
.embedpress-modal .btn-success .badge {
|
| 640 |
+
color: #5cb85c;
|
| 641 |
+
background-color: #fff; }
|
| 642 |
+
|
| 643 |
+
.embedpress-modal .btn-info {
|
| 644 |
+
color: #fff;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 645 |
background-color: #5bc0de;
|
| 646 |
+
border-color: #46b8da; }
|
| 647 |
+
.embedpress-modal .btn-info:focus, .embedpress-modal .btn-info.focus {
|
| 648 |
+
color: #fff;
|
| 649 |
+
background-color: #31b0d5;
|
| 650 |
+
border-color: #1b6d85; }
|
| 651 |
+
.embedpress-modal .btn-info:hover {
|
| 652 |
+
color: #fff;
|
| 653 |
+
background-color: #31b0d5;
|
| 654 |
+
border-color: #269abc; }
|
| 655 |
+
.embedpress-modal .btn-info:active, .embedpress-modal .btn-info.active,
|
| 656 |
+
.open > .embedpress-modal .btn-info.dropdown-toggle {
|
| 657 |
+
color: #fff;
|
| 658 |
+
background-color: #31b0d5;
|
| 659 |
+
border-color: #269abc; }
|
| 660 |
+
.embedpress-modal .btn-info:active:hover, .embedpress-modal .btn-info:active:focus, .embedpress-modal .btn-info:active.focus, .embedpress-modal .btn-info.active:hover, .embedpress-modal .btn-info.active:focus, .embedpress-modal .btn-info.active.focus,
|
| 661 |
+
.open > .embedpress-modal .btn-info.dropdown-toggle:hover,
|
| 662 |
+
.open > .embedpress-modal .btn-info.dropdown-toggle:focus,
|
| 663 |
+
.open > .embedpress-modal .btn-info.dropdown-toggle.focus {
|
| 664 |
+
color: #fff;
|
| 665 |
+
background-color: #269abc;
|
| 666 |
+
border-color: #1b6d85; }
|
| 667 |
+
.embedpress-modal .btn-info:active, .embedpress-modal .btn-info.active,
|
| 668 |
+
.open > .embedpress-modal .btn-info.dropdown-toggle {
|
| 669 |
+
background-image: none; }
|
| 670 |
+
.embedpress-modal .btn-info.disabled:hover, .embedpress-modal .btn-info.disabled:focus, .embedpress-modal .btn-info.disabled.focus, .embedpress-modal .btn-info[disabled]:hover, .embedpress-modal .btn-info[disabled]:focus, .embedpress-modal .btn-info[disabled].focus,
|
| 671 |
+
fieldset[disabled] .embedpress-modal .btn-info:hover,
|
| 672 |
+
fieldset[disabled] .embedpress-modal .btn-info:focus,
|
| 673 |
+
fieldset[disabled] .embedpress-modal .btn-info.focus {
|
| 674 |
+
background-color: #5bc0de;
|
| 675 |
+
border-color: #46b8da; }
|
| 676 |
+
.embedpress-modal .btn-info .badge {
|
| 677 |
+
color: #5bc0de;
|
| 678 |
+
background-color: #fff; }
|
| 679 |
+
|
| 680 |
+
.embedpress-modal .btn-warning {
|
| 681 |
+
color: #fff;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 682 |
background-color: #f0ad4e;
|
| 683 |
+
border-color: #eea236; }
|
| 684 |
+
.embedpress-modal .btn-warning:focus, .embedpress-modal .btn-warning.focus {
|
| 685 |
+
color: #fff;
|
| 686 |
+
background-color: #ec971f;
|
| 687 |
+
border-color: #985f0d; }
|
| 688 |
+
.embedpress-modal .btn-warning:hover {
|
| 689 |
+
color: #fff;
|
| 690 |
+
background-color: #ec971f;
|
| 691 |
+
border-color: #d58512; }
|
| 692 |
+
.embedpress-modal .btn-warning:active, .embedpress-modal .btn-warning.active,
|
| 693 |
+
.open > .embedpress-modal .btn-warning.dropdown-toggle {
|
| 694 |
+
color: #fff;
|
| 695 |
+
background-color: #ec971f;
|
| 696 |
+
border-color: #d58512; }
|
| 697 |
+
.embedpress-modal .btn-warning:active:hover, .embedpress-modal .btn-warning:active:focus, .embedpress-modal .btn-warning:active.focus, .embedpress-modal .btn-warning.active:hover, .embedpress-modal .btn-warning.active:focus, .embedpress-modal .btn-warning.active.focus,
|
| 698 |
+
.open > .embedpress-modal .btn-warning.dropdown-toggle:hover,
|
| 699 |
+
.open > .embedpress-modal .btn-warning.dropdown-toggle:focus,
|
| 700 |
+
.open > .embedpress-modal .btn-warning.dropdown-toggle.focus {
|
| 701 |
+
color: #fff;
|
| 702 |
+
background-color: #d58512;
|
| 703 |
+
border-color: #985f0d; }
|
| 704 |
+
.embedpress-modal .btn-warning:active, .embedpress-modal .btn-warning.active,
|
| 705 |
+
.open > .embedpress-modal .btn-warning.dropdown-toggle {
|
| 706 |
+
background-image: none; }
|
| 707 |
+
.embedpress-modal .btn-warning.disabled:hover, .embedpress-modal .btn-warning.disabled:focus, .embedpress-modal .btn-warning.disabled.focus, .embedpress-modal .btn-warning[disabled]:hover, .embedpress-modal .btn-warning[disabled]:focus, .embedpress-modal .btn-warning[disabled].focus,
|
| 708 |
+
fieldset[disabled] .embedpress-modal .btn-warning:hover,
|
| 709 |
+
fieldset[disabled] .embedpress-modal .btn-warning:focus,
|
| 710 |
+
fieldset[disabled] .embedpress-modal .btn-warning.focus {
|
| 711 |
+
background-color: #f0ad4e;
|
| 712 |
+
border-color: #eea236; }
|
| 713 |
+
.embedpress-modal .btn-warning .badge {
|
| 714 |
+
color: #f0ad4e;
|
| 715 |
+
background-color: #fff; }
|
| 716 |
+
|
| 717 |
+
.embedpress-modal .btn-danger {
|
| 718 |
+
color: #fff;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 719 |
background-color: #d9534f;
|
| 720 |
+
border-color: #d43f3a; }
|
| 721 |
+
.embedpress-modal .btn-danger:focus, .embedpress-modal .btn-danger.focus {
|
| 722 |
+
color: #fff;
|
| 723 |
+
background-color: #c9302c;
|
| 724 |
+
border-color: #761c19; }
|
| 725 |
+
.embedpress-modal .btn-danger:hover {
|
| 726 |
+
color: #fff;
|
| 727 |
+
background-color: #c9302c;
|
| 728 |
+
border-color: #ac2925; }
|
| 729 |
+
.embedpress-modal .btn-danger:active, .embedpress-modal .btn-danger.active,
|
| 730 |
+
.open > .embedpress-modal .btn-danger.dropdown-toggle {
|
| 731 |
+
color: #fff;
|
| 732 |
+
background-color: #c9302c;
|
| 733 |
+
border-color: #ac2925; }
|
| 734 |
+
.embedpress-modal .btn-danger:active:hover, .embedpress-modal .btn-danger:active:focus, .embedpress-modal .btn-danger:active.focus, .embedpress-modal .btn-danger.active:hover, .embedpress-modal .btn-danger.active:focus, .embedpress-modal .btn-danger.active.focus,
|
| 735 |
+
.open > .embedpress-modal .btn-danger.dropdown-toggle:hover,
|
| 736 |
+
.open > .embedpress-modal .btn-danger.dropdown-toggle:focus,
|
| 737 |
+
.open > .embedpress-modal .btn-danger.dropdown-toggle.focus {
|
| 738 |
+
color: #fff;
|
| 739 |
+
background-color: #ac2925;
|
| 740 |
+
border-color: #761c19; }
|
| 741 |
+
.embedpress-modal .btn-danger:active, .embedpress-modal .btn-danger.active,
|
| 742 |
+
.open > .embedpress-modal .btn-danger.dropdown-toggle {
|
| 743 |
+
background-image: none; }
|
| 744 |
+
.embedpress-modal .btn-danger.disabled:hover, .embedpress-modal .btn-danger.disabled:focus, .embedpress-modal .btn-danger.disabled.focus, .embedpress-modal .btn-danger[disabled]:hover, .embedpress-modal .btn-danger[disabled]:focus, .embedpress-modal .btn-danger[disabled].focus,
|
| 745 |
+
fieldset[disabled] .embedpress-modal .btn-danger:hover,
|
| 746 |
+
fieldset[disabled] .embedpress-modal .btn-danger:focus,
|
| 747 |
+
fieldset[disabled] .embedpress-modal .btn-danger.focus {
|
| 748 |
+
background-color: #d9534f;
|
| 749 |
+
border-color: #d43f3a; }
|
| 750 |
+
.embedpress-modal .btn-danger .badge {
|
| 751 |
+
color: #d9534f;
|
| 752 |
+
background-color: #fff; }
|
| 753 |
+
|
| 754 |
+
.embedpress-modal .btn-link {
|
| 755 |
color: #337ab7;
|
| 756 |
font-weight: normal;
|
| 757 |
+
border-radius: 0; }
|
| 758 |
+
.embedpress-modal .btn-link, .embedpress-modal .btn-link:active, .embedpress-modal .btn-link.active, .embedpress-modal .btn-link[disabled],
|
| 759 |
+
fieldset[disabled] .embedpress-modal .btn-link {
|
| 760 |
+
background-color: transparent;
|
| 761 |
+
box-shadow: none; }
|
| 762 |
+
.embedpress-modal .btn-link, .embedpress-modal .btn-link:hover, .embedpress-modal .btn-link:focus, .embedpress-modal .btn-link:active {
|
| 763 |
+
border-color: transparent; }
|
| 764 |
+
.embedpress-modal .btn-link:hover, .embedpress-modal .btn-link:focus {
|
| 765 |
+
color: #23527c;
|
| 766 |
+
text-decoration: underline;
|
| 767 |
+
background-color: transparent; }
|
| 768 |
+
.embedpress-modal .btn-link[disabled]:hover, .embedpress-modal .btn-link[disabled]:focus,
|
| 769 |
+
fieldset[disabled] .embedpress-modal .btn-link:hover,
|
| 770 |
+
fieldset[disabled] .embedpress-modal .btn-link:focus {
|
| 771 |
+
color: #777777;
|
| 772 |
+
text-decoration: none; }
|
| 773 |
+
|
| 774 |
+
.embedpress-modal .btn-lg, .embedpress-modal .btn-group-lg > .btn {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 775 |
padding: 10px 16px;
|
| 776 |
font-size: 18px;
|
| 777 |
+
line-height: 1.33333;
|
| 778 |
+
border-radius: 6px; }
|
| 779 |
+
|
| 780 |
+
.embedpress-modal .btn-sm, .embedpress-modal .btn-group-sm > .btn {
|
|
|
|
| 781 |
padding: 5px 10px;
|
| 782 |
font-size: 12px;
|
| 783 |
line-height: 1.5;
|
| 784 |
+
border-radius: 3px; }
|
| 785 |
+
|
| 786 |
+
.embedpress-modal .btn-xs, .embedpress-modal .btn-group-xs > .btn {
|
|
|
|
| 787 |
padding: 1px 5px;
|
| 788 |
font-size: 12px;
|
| 789 |
line-height: 1.5;
|
| 790 |
+
border-radius: 3px; }
|
| 791 |
+
|
| 792 |
+
.embedpress-modal .btn-block {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 793 |
display: block;
|
| 794 |
+
width: 100%; }
|
| 795 |
+
|
| 796 |
+
.embedpress-modal .btn-block + .btn-block {
|
| 797 |
+
margin-top: 5px; }
|
| 798 |
+
|
| 799 |
+
.embedpress-modal input[type="submit"].btn-block,
|
| 800 |
+
.embedpress-modal input[type="reset"].btn-block,
|
| 801 |
+
.embedpress-modal input[type="button"].btn-block {
|
| 802 |
+
width: 100%; }
|
| 803 |
+
|
| 804 |
+
.embedpress-modal .btn-group,
|
| 805 |
+
.embedpress-modal .btn-group-vertical {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 806 |
position: relative;
|
| 807 |
display: inline-block;
|
| 808 |
+
vertical-align: middle; }
|
| 809 |
+
.embedpress-modal .btn-group > .btn,
|
| 810 |
+
.embedpress-modal .btn-group-vertical > .btn {
|
| 811 |
+
position: relative;
|
| 812 |
+
float: left; }
|
| 813 |
+
.embedpress-modal .btn-group > .btn:hover, .embedpress-modal .btn-group > .btn:focus, .embedpress-modal .btn-group > .btn:active, .embedpress-modal .btn-group > .btn.active,
|
| 814 |
+
.embedpress-modal .btn-group-vertical > .btn:hover,
|
| 815 |
+
.embedpress-modal .btn-group-vertical > .btn:focus,
|
| 816 |
+
.embedpress-modal .btn-group-vertical > .btn:active,
|
| 817 |
+
.embedpress-modal .btn-group-vertical > .btn.active {
|
| 818 |
+
z-index: 2; }
|
| 819 |
+
|
| 820 |
+
.embedpress-modal .btn-group .btn + .btn,
|
| 821 |
+
.embedpress-modal .btn-group .btn + .btn-group,
|
| 822 |
+
.embedpress-modal .btn-group .btn-group + .btn,
|
| 823 |
+
.embedpress-modal .btn-group .btn-group + .btn-group {
|
| 824 |
+
margin-left: -1px; }
|
| 825 |
+
|
| 826 |
+
.embedpress-modal .btn-toolbar {
|
| 827 |
+
margin-left: -5px; }
|
| 828 |
+
.embedpress-modal .btn-toolbar:before, .embedpress-modal .btn-toolbar:after {
|
| 829 |
+
content: " ";
|
| 830 |
+
display: table; }
|
| 831 |
+
.embedpress-modal .btn-toolbar:after {
|
| 832 |
+
clear: both; }
|
| 833 |
+
.embedpress-modal .btn-toolbar .btn,
|
| 834 |
+
.embedpress-modal .btn-toolbar .btn-group,
|
| 835 |
+
.embedpress-modal .btn-toolbar .input-group {
|
| 836 |
+
float: left; }
|
| 837 |
+
.embedpress-modal .btn-toolbar > .btn,
|
| 838 |
+
.embedpress-modal .btn-toolbar > .btn-group,
|
| 839 |
+
.embedpress-modal .btn-toolbar > .input-group {
|
| 840 |
+
margin-left: 5px; }
|
| 841 |
+
|
| 842 |
+
.embedpress-modal .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
| 843 |
+
border-radius: 0; }
|
| 844 |
+
|
| 845 |
+
.embedpress-modal .btn-group > .btn:first-child {
|
| 846 |
+
margin-left: 0; }
|
| 847 |
+
.embedpress-modal .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
| 848 |
+
border-bottom-right-radius: 0;
|
| 849 |
+
border-top-right-radius: 0; }
|
| 850 |
+
|
| 851 |
+
.embedpress-modal .btn-group > .btn:last-child:not(:first-child),
|
| 852 |
+
.embedpress-modal .btn-group > .dropdown-toggle:not(:first-child) {
|
|
|
|
|
|
|
|
|
|
| 853 |
border-bottom-left-radius: 0;
|
| 854 |
+
border-top-left-radius: 0; }
|
| 855 |
+
|
| 856 |
+
.embedpress-modal .btn-group > .btn-group {
|
| 857 |
+
float: left; }
|
| 858 |
+
|
| 859 |
+
.embedpress-modal .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
| 860 |
+
border-radius: 0; }
|
| 861 |
+
|
| 862 |
+
.embedpress-modal .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
| 863 |
+
.embedpress-modal .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
| 864 |
border-bottom-right-radius: 0;
|
| 865 |
+
border-top-right-radius: 0; }
|
| 866 |
+
|
| 867 |
+
.embedpress-modal .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
| 868 |
border-bottom-left-radius: 0;
|
| 869 |
+
border-top-left-radius: 0; }
|
| 870 |
+
|
| 871 |
+
.embedpress-modal .btn-group .dropdown-toggle:active,
|
| 872 |
+
.embedpress-modal .btn-group.open .dropdown-toggle {
|
| 873 |
+
outline: 0; }
|
| 874 |
+
|
| 875 |
+
.embedpress-modal .btn-group > .btn + .dropdown-toggle {
|
| 876 |
padding-left: 8px;
|
| 877 |
+
padding-right: 8px; }
|
| 878 |
+
|
| 879 |
+
.embedpress-modal .btn-group > .btn-lg + .dropdown-toggle, .embedpress-modal .btn-group-lg.btn-group > .btn + .dropdown-toggle {
|
| 880 |
padding-left: 12px;
|
| 881 |
+
padding-right: 12px; }
|
| 882 |
+
|
| 883 |
+
.embedpress-modal .btn-group.open .dropdown-toggle {
|
| 884 |
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
|
| 885 |
+
.embedpress-modal .btn-group.open .dropdown-toggle.btn-link {
|
| 886 |
+
box-shadow: none; }
|
| 887 |
+
|
| 888 |
+
.embedpress-modal .btn .caret {
|
| 889 |
+
margin-left: 0; }
|
| 890 |
+
|
| 891 |
+
.embedpress-modal .btn-lg .caret, .embedpress-modal .btn-group-lg > .btn .caret {
|
|
|
|
|
|
|
|
|
|
| 892 |
border-width: 5px 5px 0;
|
| 893 |
+
border-bottom-width: 0; }
|
| 894 |
+
|
| 895 |
+
.embedpress-modal .dropup .btn-lg .caret, .embedpress-modal .dropup .btn-group-lg > .btn .caret {
|
| 896 |
+
border-width: 0 5px 5px; }
|
| 897 |
+
|
| 898 |
+
.embedpress-modal .btn-group-vertical > .btn,
|
| 899 |
+
.embedpress-modal .btn-group-vertical > .btn-group,
|
| 900 |
+
.embedpress-modal .btn-group-vertical > .btn-group > .btn {
|
| 901 |
display: block;
|
| 902 |
float: none;
|
| 903 |
width: 100%;
|
| 904 |
+
max-width: 100%; }
|
| 905 |
+
|
| 906 |
+
.embedpress-modal .btn-group-vertical > .btn-group:before, .embedpress-modal .btn-group-vertical > .btn-group:after {
|
| 907 |
+
content: " ";
|
| 908 |
+
display: table; }
|
| 909 |
+
|
| 910 |
+
.embedpress-modal .btn-group-vertical > .btn-group:after {
|
| 911 |
+
clear: both; }
|
| 912 |
+
|
| 913 |
+
.embedpress-modal .btn-group-vertical > .btn-group > .btn {
|
| 914 |
+
float: none; }
|
| 915 |
+
|
| 916 |
+
.embedpress-modal .btn-group-vertical > .btn + .btn,
|
| 917 |
+
.embedpress-modal .btn-group-vertical > .btn + .btn-group,
|
| 918 |
+
.embedpress-modal .btn-group-vertical > .btn-group + .btn,
|
| 919 |
+
.embedpress-modal .btn-group-vertical > .btn-group + .btn-group {
|
| 920 |
margin-top: -1px;
|
| 921 |
+
margin-left: 0; }
|
| 922 |
+
|
| 923 |
+
.embedpress-modal .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
| 924 |
+
border-radius: 0; }
|
| 925 |
+
|
| 926 |
+
.embedpress-modal .btn-group-vertical > .btn:first-child:not(:last-child) {
|
| 927 |
border-top-right-radius: 4px;
|
| 928 |
border-top-left-radius: 4px;
|
| 929 |
border-bottom-right-radius: 0;
|
| 930 |
+
border-bottom-left-radius: 0; }
|
| 931 |
+
|
| 932 |
+
.embedpress-modal .btn-group-vertical > .btn:last-child:not(:first-child) {
|
| 933 |
border-top-right-radius: 0;
|
| 934 |
border-top-left-radius: 0;
|
| 935 |
border-bottom-right-radius: 4px;
|
| 936 |
+
border-bottom-left-radius: 4px; }
|
| 937 |
+
|
| 938 |
+
.embedpress-modal .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
| 939 |
+
border-radius: 0; }
|
| 940 |
+
|
| 941 |
+
.embedpress-modal .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
| 942 |
+
.embedpress-modal .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
| 943 |
border-bottom-right-radius: 0;
|
| 944 |
+
border-bottom-left-radius: 0; }
|
| 945 |
+
|
| 946 |
+
.embedpress-modal .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
| 947 |
border-top-right-radius: 0;
|
| 948 |
+
border-top-left-radius: 0; }
|
| 949 |
+
|
| 950 |
+
.embedpress-modal .btn-group-justified {
|
| 951 |
display: table;
|
| 952 |
width: 100%;
|
| 953 |
table-layout: fixed;
|
| 954 |
+
border-collapse: separate; }
|
| 955 |
+
.embedpress-modal .btn-group-justified > .btn,
|
| 956 |
+
.embedpress-modal .btn-group-justified > .btn-group {
|
| 957 |
+
float: none;
|
| 958 |
+
display: table-cell;
|
| 959 |
+
width: 1%; }
|
| 960 |
+
.embedpress-modal .btn-group-justified > .btn-group .btn {
|
| 961 |
+
width: 100%; }
|
| 962 |
+
.embedpress-modal .btn-group-justified > .btn-group .dropdown-menu {
|
| 963 |
+
left: auto; }
|
| 964 |
+
|
| 965 |
+
.embedpress-modal [data-toggle="buttons"] > .btn input[type="radio"],
|
| 966 |
+
.embedpress-modal [data-toggle="buttons"] > .btn input[type="checkbox"],
|
| 967 |
+
.embedpress-modal [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
|
| 968 |
+
.embedpress-modal [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
|
|
|
|
|
|
|
|
|
|
| 969 |
position: absolute;
|
| 970 |
clip: rect(0, 0, 0, 0);
|
| 971 |
+
pointer-events: none; }
|
| 972 |
+
|
| 973 |
+
.embedpress-modal .input-group {
|
| 974 |
position: relative;
|
| 975 |
display: table;
|
| 976 |
+
border-collapse: separate; }
|
| 977 |
+
.embedpress-modal .input-group[class*="col-"] {
|
| 978 |
+
float: none;
|
| 979 |
+
padding-left: 0;
|
| 980 |
+
padding-right: 0; }
|
| 981 |
+
.embedpress-modal .input-group .form-control {
|
| 982 |
+
position: relative;
|
| 983 |
+
z-index: 2;
|
| 984 |
+
float: left;
|
| 985 |
+
width: 100%;
|
| 986 |
+
margin-bottom: 0; }
|
| 987 |
+
.embedpress-modal .input-group .form-control:focus {
|
| 988 |
+
z-index: 3; }
|
| 989 |
+
|
| 990 |
+
.embedpress-modal .input-group-addon,
|
| 991 |
+
.embedpress-modal .input-group-btn,
|
| 992 |
+
.embedpress-modal .input-group .form-control {
|
| 993 |
+
display: table-cell; }
|
| 994 |
+
.embedpress-modal .input-group-addon:not(:first-child):not(:last-child),
|
| 995 |
+
.embedpress-modal .input-group-btn:not(:first-child):not(:last-child),
|
| 996 |
+
.embedpress-modal .input-group .form-control:not(:first-child):not(:last-child) {
|
| 997 |
+
border-radius: 0; }
|
| 998 |
+
|
| 999 |
+
.embedpress-modal .input-group-addon,
|
| 1000 |
+
.embedpress-modal .input-group-btn {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1001 |
width: 1%;
|
| 1002 |
white-space: nowrap;
|
| 1003 |
+
vertical-align: middle; }
|
| 1004 |
+
|
| 1005 |
+
.embedpress-modal .input-group-addon {
|
| 1006 |
padding: 6px 12px;
|
| 1007 |
font-size: 14px;
|
| 1008 |
font-weight: normal;
|
| 1010 |
color: #555555;
|
| 1011 |
text-align: center;
|
| 1012 |
background-color: #eeeeee;
|
| 1013 |
+
border: 1px solid #ccc;
|
| 1014 |
+
border-radius: 4px; }
|
| 1015 |
+
.embedpress-modal .input-group-addon.input-sm, .embedpress-modal .input-group-sm > .input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > .input-group-addon.btn {
|
| 1016 |
+
padding: 5px 10px;
|
| 1017 |
+
font-size: 12px;
|
| 1018 |
+
border-radius: 3px; }
|
| 1019 |
+
.embedpress-modal .input-group-addon.input-lg, .embedpress-modal .input-group-lg > .input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > .input-group-addon.btn {
|
| 1020 |
+
padding: 10px 16px;
|
| 1021 |
+
font-size: 18px;
|
| 1022 |
+
border-radius: 6px; }
|
| 1023 |
+
.embedpress-modal .input-group-addon input[type="radio"],
|
| 1024 |
+
.embedpress-modal .input-group-addon input[type="checkbox"] {
|
| 1025 |
+
margin-top: 0; }
|
| 1026 |
+
|
| 1027 |
+
.embedpress-modal .input-group .form-control:first-child,
|
| 1028 |
+
.embedpress-modal .input-group-addon:first-child,
|
| 1029 |
+
.embedpress-modal .input-group-btn:first-child > .btn,
|
| 1030 |
+
.embedpress-modal .input-group-btn:first-child > .btn-group > .btn,
|
| 1031 |
+
.embedpress-modal .input-group-btn:first-child > .dropdown-toggle,
|
| 1032 |
+
.embedpress-modal .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
| 1033 |
+
.embedpress-modal .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
|
|
|
|
|
|
|
|
|
|
| 1034 |
border-bottom-right-radius: 0;
|
| 1035 |
+
border-top-right-radius: 0; }
|
| 1036 |
+
|
| 1037 |
+
.embedpress-modal .input-group-addon:first-child {
|
| 1038 |
+
border-right: 0; }
|
| 1039 |
+
|
| 1040 |
+
.embedpress-modal .input-group .form-control:last-child,
|
| 1041 |
+
.embedpress-modal .input-group-addon:last-child,
|
| 1042 |
+
.embedpress-modal .input-group-btn:last-child > .btn,
|
| 1043 |
+
.embedpress-modal .input-group-btn:last-child > .btn-group > .btn,
|
| 1044 |
+
.embedpress-modal .input-group-btn:last-child > .dropdown-toggle,
|
| 1045 |
+
.embedpress-modal .input-group-btn:first-child > .btn:not(:first-child),
|
| 1046 |
+
.embedpress-modal .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
|
| 1047 |
border-bottom-left-radius: 0;
|
| 1048 |
+
border-top-left-radius: 0; }
|
| 1049 |
+
|
| 1050 |
+
.embedpress-modal .input-group-addon:last-child {
|
| 1051 |
+
border-left: 0; }
|
| 1052 |
+
|
| 1053 |
+
.embedpress-modal .input-group-btn {
|
| 1054 |
position: relative;
|
| 1055 |
font-size: 0;
|
| 1056 |
+
white-space: nowrap; }
|
| 1057 |
+
.embedpress-modal .input-group-btn > .btn {
|
| 1058 |
+
position: relative; }
|
| 1059 |
+
.embedpress-modal .input-group-btn > .btn + .btn {
|
| 1060 |
+
margin-left: -1px; }
|
| 1061 |
+
.embedpress-modal .input-group-btn > .btn:hover, .embedpress-modal .input-group-btn > .btn:focus, .embedpress-modal .input-group-btn > .btn:active {
|
| 1062 |
+
z-index: 2; }
|
| 1063 |
+
.embedpress-modal .input-group-btn:first-child > .btn,
|
| 1064 |
+
.embedpress-modal .input-group-btn:first-child > .btn-group {
|
| 1065 |
+
margin-right: -1px; }
|
| 1066 |
+
.embedpress-modal .input-group-btn:last-child > .btn,
|
| 1067 |
+
.embedpress-modal .input-group-btn:last-child > .btn-group {
|
| 1068 |
+
z-index: 2;
|
| 1069 |
+
margin-left: -1px; }
|
| 1070 |
+
|
| 1071 |
+
.embedpress-modal .close {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1072 |
float: right;
|
| 1073 |
font-size: 21px;
|
| 1074 |
font-weight: bold;
|
| 1075 |
line-height: 1;
|
| 1076 |
+
color: #000;
|
| 1077 |
+
text-shadow: 0 1px 0 #fff;
|
| 1078 |
opacity: 0.2;
|
| 1079 |
+
filter: alpha(opacity=20); }
|
| 1080 |
+
.embedpress-modal .close:hover, .embedpress-modal .close:focus {
|
| 1081 |
+
color: #000;
|
| 1082 |
+
text-decoration: none;
|
| 1083 |
+
cursor: pointer;
|
| 1084 |
+
opacity: 0.5;
|
| 1085 |
+
filter: alpha(opacity=50); }
|
| 1086 |
+
|
| 1087 |
+
.embedpress-modal button.close {
|
|
|
|
|
|
|
| 1088 |
padding: 0;
|
| 1089 |
cursor: pointer;
|
| 1090 |
background: transparent;
|
| 1091 |
border: 0;
|
| 1092 |
+
-webkit-appearance: none; }
|
| 1093 |
+
|
| 1094 |
.modal-open {
|
| 1095 |
+
overflow: hidden; }
|
| 1096 |
+
|
| 1097 |
.modal {
|
| 1098 |
display: none;
|
| 1099 |
overflow: hidden;
|
| 1104 |
left: 0;
|
| 1105 |
z-index: 1050;
|
| 1106 |
-webkit-overflow-scrolling: touch;
|
| 1107 |
+
outline: 0; }
|
| 1108 |
+
.modal.fade .modal-dialog {
|
| 1109 |
+
transform: translate(0, -25%);
|
| 1110 |
+
transition: transform 0.3s ease-out; }
|
| 1111 |
+
.modal.in .modal-dialog {
|
| 1112 |
+
transform: translate(0, 0); }
|
| 1113 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1114 |
.modal-open .modal {
|
| 1115 |
overflow-x: hidden;
|
| 1116 |
+
overflow-y: auto; }
|
| 1117 |
+
|
| 1118 |
.modal-dialog {
|
| 1119 |
position: relative;
|
| 1120 |
width: auto;
|
| 1121 |
+
margin: 10px; }
|
| 1122 |
+
|
| 1123 |
.modal-content {
|
| 1124 |
position: relative;
|
| 1125 |
+
background-color: #fff;
|
| 1126 |
+
border: 1px solid #999;
|
| 1127 |
border: 1px solid rgba(0, 0, 0, 0.2);
|
| 1128 |
border-radius: 6px;
|
|
|
|
| 1129 |
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
| 1130 |
+
background-clip: padding-box;
|
| 1131 |
+
outline: 0; }
|
| 1132 |
+
|
|
|
|
| 1133 |
.modal-backdrop {
|
| 1134 |
position: fixed;
|
| 1135 |
top: 0;
|
| 1137 |
bottom: 0;
|
| 1138 |
left: 0;
|
| 1139 |
z-index: 1040;
|
| 1140 |
+
background-color: #000; }
|
| 1141 |
+
.modal-backdrop.fade {
|
| 1142 |
+
opacity: 0;
|
| 1143 |
+
filter: alpha(opacity=0); }
|
| 1144 |
+
.modal-backdrop.in {
|
| 1145 |
+
opacity: 0.5;
|
| 1146 |
+
filter: alpha(opacity=50); }
|
| 1147 |
+
|
|
|
|
|
|
|
| 1148 |
.modal-header {
|
| 1149 |
padding: 15px;
|
| 1150 |
+
border-bottom: 1px solid #e5e5e5; }
|
| 1151 |
+
.modal-header:before, .modal-header:after {
|
| 1152 |
+
content: " ";
|
| 1153 |
+
display: table; }
|
| 1154 |
+
.modal-header:after {
|
| 1155 |
+
clear: both; }
|
| 1156 |
+
|
| 1157 |
.modal-header .close {
|
| 1158 |
+
margin-top: -2px; }
|
| 1159 |
+
|
| 1160 |
.modal-title {
|
| 1161 |
margin: 0;
|
| 1162 |
+
line-height: 1.42857; }
|
| 1163 |
+
|
| 1164 |
.modal-body {
|
| 1165 |
position: relative;
|
| 1166 |
+
padding: 15px; }
|
| 1167 |
+
|
| 1168 |
.modal-footer {
|
| 1169 |
padding: 15px;
|
| 1170 |
text-align: right;
|
| 1171 |
+
border-top: 1px solid #e5e5e5; }
|
| 1172 |
+
.modal-footer:before, .modal-footer:after {
|
| 1173 |
+
content: " ";
|
| 1174 |
+
display: table; }
|
| 1175 |
+
.modal-footer:after {
|
| 1176 |
+
clear: both; }
|
| 1177 |
+
.modal-footer .btn + .btn {
|
| 1178 |
+
margin-left: 5px;
|
| 1179 |
+
margin-bottom: 0; }
|
| 1180 |
+
.modal-footer .btn-group .btn + .btn {
|
| 1181 |
+
margin-left: -1px; }
|
| 1182 |
+
.modal-footer .btn-block + .btn-block {
|
| 1183 |
+
margin-left: 0; }
|
| 1184 |
+
|
| 1185 |
.modal-scrollbar-measure {
|
| 1186 |
position: absolute;
|
| 1187 |
top: -9999px;
|
| 1188 |
width: 50px;
|
| 1189 |
height: 50px;
|
| 1190 |
+
overflow: scroll; }
|
| 1191 |
+
|
| 1192 |
@media (min-width: 768px) {
|
| 1193 |
.modal-dialog {
|
| 1194 |
width: 600px;
|
| 1195 |
+
margin: 30px auto; }
|
|
|
|
| 1196 |
.modal-content {
|
| 1197 |
+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
|
|
|
|
|
|
|
| 1198 |
.modal-sm {
|
| 1199 |
+
width: 300px; } }
|
| 1200 |
+
|
|
|
|
| 1201 |
@media (min-width: 992px) {
|
| 1202 |
.modal-lg {
|
| 1203 |
+
width: 900px; } }
|
| 1204 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1205 |
@-ms-viewport {
|
| 1206 |
+
width: device-width; }
|
| 1207 |
+
|
| 1208 |
+
.visible-xs {
|
| 1209 |
+
display: none !important; }
|
| 1210 |
+
|
| 1211 |
+
.visible-sm {
|
| 1212 |
+
display: none !important; }
|
| 1213 |
+
|
| 1214 |
+
.visible-md {
|
| 1215 |
+
display: none !important; }
|
| 1216 |
+
|
| 1217 |
.visible-lg {
|
| 1218 |
+
display: none !important; }
|
| 1219 |
+
|
| 1220 |
.visible-xs-block,
|
| 1221 |
.visible-xs-inline,
|
| 1222 |
.visible-xs-inline-block,
|
| 1229 |
.visible-lg-block,
|
| 1230 |
.visible-lg-inline,
|
| 1231 |
.visible-lg-inline-block {
|
| 1232 |
+
display: none !important; }
|
| 1233 |
+
|
| 1234 |
@media (max-width: 767px) {
|
| 1235 |
.visible-xs {
|
| 1236 |
+
display: block !important; }
|
|
|
|
| 1237 |
table.visible-xs {
|
| 1238 |
+
display: table !important; }
|
|
|
|
| 1239 |
tr.visible-xs {
|
| 1240 |
+
display: table-row !important; }
|
|
|
|
| 1241 |
th.visible-xs,
|
| 1242 |
td.visible-xs {
|
| 1243 |
+
display: table-cell !important; } }
|
| 1244 |
+
|
|
|
|
| 1245 |
@media (max-width: 767px) {
|
| 1246 |
.visible-xs-block {
|
| 1247 |
+
display: block !important; } }
|
| 1248 |
+
|
|
|
|
| 1249 |
@media (max-width: 767px) {
|
| 1250 |
.visible-xs-inline {
|
| 1251 |
+
display: inline !important; } }
|
| 1252 |
+
|
|
|
|
| 1253 |
@media (max-width: 767px) {
|
| 1254 |
.visible-xs-inline-block {
|
| 1255 |
+
display: inline-block !important; } }
|
| 1256 |
+
|
|
|
|
| 1257 |
@media (min-width: 768px) and (max-width: 991px) {
|
| 1258 |
.visible-sm {
|
| 1259 |
+
display: block !important; }
|
|
|
|
| 1260 |
table.visible-sm {
|
| 1261 |
+
display: table !important; }
|
|
|
|
| 1262 |
tr.visible-sm {
|
| 1263 |
+
display: table-row !important; }
|
|
|
|
| 1264 |
th.visible-sm,
|
| 1265 |
td.visible-sm {
|
| 1266 |
+
display: table-cell !important; } }
|
| 1267 |
+
|
|
|
|
| 1268 |
@media (min-width: 768px) and (max-width: 991px) {
|
| 1269 |
.visible-sm-block {
|
| 1270 |
+
display: block !important; } }
|
| 1271 |
+
|
|
|
|
| 1272 |
@media (min-width: 768px) and (max-width: 991px) {
|
| 1273 |
.visible-sm-inline {
|
| 1274 |
+
display: inline !important; } }
|
| 1275 |
+
|
|
|
|
| 1276 |
@media (min-width: 768px) and (max-width: 991px) {
|
| 1277 |
.visible-sm-inline-block {
|
| 1278 |
+
display: inline-block !important; } }
|
| 1279 |
+
|
|
|
|
| 1280 |
@media (min-width: 992px) and (max-width: 1199px) {
|
| 1281 |
.visible-md {
|
| 1282 |
+
display: block !important; }
|
|
|
|
| 1283 |
table.visible-md {
|
| 1284 |
+
display: table !important; }
|
|
|
|
| 1285 |
tr.visible-md {
|
| 1286 |
+
display: table-row !important; }
|
|
|
|
| 1287 |
th.visible-md,
|
| 1288 |
td.visible-md {
|
| 1289 |
+
display: table-cell !important; } }
|
| 1290 |
+
|
|
|
|
| 1291 |
@media (min-width: 992px) and (max-width: 1199px) {
|
| 1292 |
.visible-md-block {
|
| 1293 |
+
display: block !important; } }
|
| 1294 |
+
|
|
|
|
| 1295 |
@media (min-width: 992px) and (max-width: 1199px) {
|
| 1296 |
.visible-md-inline {
|
| 1297 |
+
display: inline !important; } }
|
| 1298 |
+
|
|
|
|
| 1299 |
@media (min-width: 992px) and (max-width: 1199px) {
|
| 1300 |
.visible-md-inline-block {
|
| 1301 |
+
display: inline-block !important; } }
|
| 1302 |
+
|
|
|
|
| 1303 |
@media (min-width: 1200px) {
|
| 1304 |
.visible-lg {
|
| 1305 |
+
display: block !important; }
|
|
|
|
| 1306 |
table.visible-lg {
|
| 1307 |
+
display: table !important; }
|
|
|
|
| 1308 |
tr.visible-lg {
|
| 1309 |
+
display: table-row !important; }
|
|
|
|
| 1310 |
th.visible-lg,
|
| 1311 |
td.visible-lg {
|
| 1312 |
+
display: table-cell !important; } }
|
| 1313 |
+
|
|
|
|
| 1314 |
@media (min-width: 1200px) {
|
| 1315 |
.visible-lg-block {
|
| 1316 |
+
display: block !important; } }
|
| 1317 |
+
|
|
|
|
| 1318 |
@media (min-width: 1200px) {
|
| 1319 |
.visible-lg-inline {
|
| 1320 |
+
display: inline !important; } }
|
| 1321 |
+
|
|
|
|
| 1322 |
@media (min-width: 1200px) {
|
| 1323 |
.visible-lg-inline-block {
|
| 1324 |
+
display: inline-block !important; } }
|
| 1325 |
+
|
|
|
|
| 1326 |
@media (max-width: 767px) {
|
| 1327 |
.hidden-xs {
|
| 1328 |
+
display: none !important; } }
|
| 1329 |
+
|
|
|
|
| 1330 |
@media (min-width: 768px) and (max-width: 991px) {
|
| 1331 |
.hidden-sm {
|
| 1332 |
+
display: none !important; } }
|
| 1333 |
+
|
|
|
|
| 1334 |
@media (min-width: 992px) and (max-width: 1199px) {
|
| 1335 |
.hidden-md {
|
| 1336 |
+
display: none !important; } }
|
| 1337 |
+
|
|
|
|
| 1338 |
@media (min-width: 1200px) {
|
| 1339 |
.hidden-lg {
|
| 1340 |
+
display: none !important; } }
|
| 1341 |
+
|
|
|
|
| 1342 |
.visible-print {
|
| 1343 |
+
display: none !important; }
|
| 1344 |
+
|
| 1345 |
@media print {
|
| 1346 |
.visible-print {
|
| 1347 |
+
display: block !important; }
|
|
|
|
| 1348 |
table.visible-print {
|
| 1349 |
+
display: table !important; }
|
|
|
|
| 1350 |
tr.visible-print {
|
| 1351 |
+
display: table-row !important; }
|
|
|
|
| 1352 |
th.visible-print,
|
| 1353 |
td.visible-print {
|
| 1354 |
+
display: table-cell !important; } }
|
| 1355 |
+
|
|
|
|
| 1356 |
.visible-print-block {
|
| 1357 |
+
display: none !important; }
|
| 1358 |
+
@media print {
|
| 1359 |
+
.visible-print-block {
|
| 1360 |
+
display: block !important; } }
|
| 1361 |
+
|
|
|
|
|
|
|
| 1362 |
.visible-print-inline {
|
| 1363 |
+
display: none !important; }
|
| 1364 |
+
@media print {
|
| 1365 |
+
.visible-print-inline {
|
| 1366 |
+
display: inline !important; } }
|
| 1367 |
+
|
|
|
|
|
|
|
| 1368 |
.visible-print-inline-block {
|
| 1369 |
+
display: none !important; }
|
| 1370 |
+
@media print {
|
| 1371 |
+
.visible-print-inline-block {
|
| 1372 |
+
display: inline-block !important; } }
|
| 1373 |
+
|
|
|
|
|
|
|
| 1374 |
@media print {
|
| 1375 |
.hidden-print {
|
| 1376 |
+
display: none !important; } }
|
|
|
|
|
|
assets/css/vendor/bootstrap/bootstrap.css.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
| 1 |
+
{"version":3,"sources":["bootstrap.css"],"names":[],"mappings":"AAAA;EACE,WAAW;EACX,UAAU;EACV,UAAU;EACV,aAAa,EAAE;;AAEjB;EACE,eAAe;EACf,YAAY;EACZ,WAAW;EACX,oBAAoB;EACpB,gBAAgB;EAChB,qBAAqB;EACrB,eAAe;EACf,UAAU;EACV,iCAAiC,EAAE;;AAErC;EACE,sBAAsB;EACtB,gBAAgB;EAChB,mBAAmB;EACnB,kBAAkB,EAAE;;AAEtB;EAGE,uBAAuB,EAAE;;AAE3B;;EAEE,gBAAgB;EAChB,mBAAmB;EACnB,oBAAoB,EAAE;;AAExB;EACE,eAAe,EAAE;;AAEnB;EACE,eAAe;EACf,YAAY,EAAE;;AAEhB;;EAEE,aAAa,EAAE;;AAEjB;;;EAGE,2CAA2C;EAC3C,qBAAqB,EAAE;;AAEzB;EACE,eAAe;EACf,iBAAiB;EACjB,gBAAgB;EAChB,qBAAqB;EACrB,eAAe,EAAE;;AAEnB;EACE,eAAe;EACf,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,gBAAgB;EAChB,qBAAqB;EACrB,eAAe;EACf,uBAAuB;EACvB,uBAAuB;EACvB,uBAAuB;EACvB,mBAAmB;EAEnB,iDAAiD;EAGjD,yEAAyE,EAAE;EAC3E;IACE,sBAAsB;IACtB,WAAW;IAEX,mFAAmF,EAAE;EACvF;IACE,YAAY;IACZ,WAAW,EAAE;EACf;IACE,YAAY,EAAE;EAChB;IACE,YAAY,EAAE;EAChB;IACE,UAAU;IACV,8BAA8B,EAAE;EAClC;;IAEE,0BAA0B;IAC1B,WAAW,EAAE;EACf;;IAEE,oBAAoB,EAAE;;AAE1B;EACE,aAAa,EAAE;;AAEjB;EACE,yBAAyB,EAAE;;AAE7B;EACE;;;;IAIE,kBAAkB,EAAE;EACtB;;;;;;;;;;;IAWE,kBAAkB,EAAE;EACtB;;;;;;;;;;;IAWE,kBAAkB,EAAE,EAAE;;AAE1B;EACE,oBAAoB,EAAE;;AAExB;;EAEE,mBAAmB;EACnB,eAAe;EACf,iBAAiB;EACjB,oBAAoB,EAAE;EACtB;;IAEE,iBAAiB;IACjB,mBAAmB;IACnB,iBAAiB;IACjB,oBAAoB;IACpB,gBAAgB,EAAE;;AAEtB;;;;EAIE,mBAAmB;EACnB,mBAAmB;EACnB,mBAAmB,EAAE;;AAEvB;;EAEE,iBAAiB,EAAE;;AAErB;;EAEE,mBAAmB;EACnB,sBAAsB;EACtB,mBAAmB;EACnB,iBAAiB;EACjB,uBAAuB;EACvB,oBAAoB;EACpB,gBAAgB,EAAE;;AAEpB;;EAEE,cAAc;EACd,kBAAkB,EAAE;;AAEtB;;;;;;EAME,oBAAoB,EAAE;;AAExB;;;;;EAKE,oBAAoB,EAAE;;AAExB;;;;;EAKE,oBAAoB,EAAE;;AAExB;EACE,iBAAiB;EACjB,oBAAoB;EACpB,iBAAiB;EACjB,iBAAiB,EAAE;EACnB;IACE,gBAAgB;IAChB,iBAAiB,EAAE;;AAEvB;EACE,aAAa;EACb,kBAAkB;EAClB,gBAAgB;EAChB,iBAAiB;EACjB,mBAAmB,EAAE;;AAEvB;EACE,aAAa;EACb,kBAAkB,EAAE;;AAEtB;;EAEE,aAAa,EAAE;;AAEjB;EACE,aAAa;EACb,kBAAkB;EAClB,gBAAgB;EAChB,iBAAiB;EACjB,mBAAmB,EAAE;;AAEvB;EACE,aAAa;EACb,kBAAkB,EAAE;;AAEtB;;EAEE,aAAa,EAAE;;AAEjB;EACE,aAAa;EACb,iBAAiB;EACjB,kBAAkB;EAClB,gBAAgB;EAChB,iBAAiB,EAAE;;AAErB;EACE,aAAa;EACb,mBAAmB;EACnB,gBAAgB;EAChB,qBAAqB;EACrB,mBAAmB,EAAE;;AAEvB;EACE,aAAa;EACb,kBAAkB,EAAE;;AAEtB;;EAEE,aAAa,EAAE;;AAEjB;EACE,aAAa;EACb,mBAAmB;EACnB,gBAAgB;EAChB,qBAAqB;EACrB,mBAAmB,EAAE;;AAEvB;EACE,aAAa;EACb,kBAAkB,EAAE;;AAEtB;;EAEE,aAAa,EAAE;;AAEjB;EACE,aAAa;EACb,iBAAiB;EACjB,mBAAmB;EACnB,gBAAgB;EAChB,qBAAqB,EAAE;;AAEzB;EACE,mBAAmB,EAAE;EACrB;IACE,sBAAsB,EAAE;;AAE5B;EACE,mBAAmB;EACnB,OAAO;EACP,SAAS;EACT,WAAW;EACX,eAAe;EACf,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,mBAAmB;EACnB,qBAAqB,EAAE;;AAEzB;;;EAGE,YAAY;EACZ,aAAa;EACb,kBAAkB,EAAE;;AAEtB;;;EAGE,YAAY;EACZ,aAAa;EACb,kBAAkB,EAAE;;AAEtB;;;;;;;;;;EAUE,eAAe,EAAE;;AAEnB;EACE,sBAAsB;EAEtB,iDAAiD,EAAE;EACnD;IACE,sBAAsB;IAEtB,kEAAkE,EAAE;;AAExE;EACE,eAAe;EACf,sBAAsB;EACtB,0BAA0B,EAAE;;AAE9B;EACE,eAAe,EAAE;;AAEnB;;;;;;;;;;EAUE,eAAe,EAAE;;AAEnB;EACE,sBAAsB;EAEtB,iDAAiD,EAAE;EACnD;IACE,sBAAsB;IAEtB,kEAAkE,EAAE;;AAExE;EACE,eAAe;EACf,sBAAsB;EACtB,0BAA0B,EAAE;;AAE9B;EACE,eAAe,EAAE;;AAEnB;;;;;;;;;;EAUE,eAAe,EAAE;;AAEnB;EACE,sBAAsB;EAEtB,iDAAiD,EAAE;EACnD;IACE,sBAAsB;IAEtB,kEAAkE,EAAE;;AAExE;EACE,eAAe;EACf,sBAAsB;EACtB,0BAA0B,EAAE;;AAE9B;EACE,eAAe,EAAE;;AAEnB;EACE,UAAU,EAAE;;AAEd;EACE,OAAO,EAAE;;AAEX;EACE,eAAe;EACf,gBAAgB;EAChB,oBAAoB;EACpB,eAAe,EAAE;;AAEnB;EACE;IACE,sBAAsB;IACtB,iBAAiB;IACjB,uBAAuB,EAAE;EAC3B;IACE,sBAAsB;IACtB,YAAY;IACZ,uBAAuB,EAAE;EAC3B;IACE,sBAAsB,EAAE;EAC1B;IACE,sBAAsB;IACtB,uBAAuB,EAAE;IACzB;;;MAGE,YAAY,EAAE;EAClB;IACE,YAAY,EAAE;EAChB;IACE,iBAAiB;IACjB,uBAAuB,EAAE;EAC3B;;IAEE,sBAAsB;IACtB,cAAc;IACd,iBAAiB;IACjB,uBAAuB,EAAE;IACzB;;MAEE,gBAAgB,EAAE;EACtB;;IAEE,mBAAmB;IACnB,eAAe,EAAE;EACnB;IACE,OAAO,EAAE,EAAE;;AAEf;;;;EAIE,cAAc;EACd,iBAAiB;EACjB,iBAAiB,EAAE;;AAErB;;EAEE,iBAAiB,EAAE;;AAErB;EACE,mBAAmB;EACnB,oBAAoB,EAAE;EACtB;IACE,aAAa;IACb,eAAe,EAAE;EACnB;IACE,YAAY,EAAE;;AAElB;EACE;IACE,kBAAkB;IAClB,iBAAiB;IACjB,iBAAiB,EAAE,EAAE;;AAEzB;EACE,YAAY,EAAE;;AAEhB;EACE;IACE,kBAAkB;IAClB,gBAAgB,EAAE,EAAE;;AAExB;EACE;IACE,iBAAiB;IACjB,gBAAgB,EAAE,EAAE;;AAExB;EACE,sBAAsB;EACtB,iBAAiB;EACjB,oBAAoB;EACpB,mBAAmB;EACnB,uBAAuB;EACvB,+BAA2B;MAA3B,2BAA2B;EAC3B,gBAAgB;EAChB,uBAAuB;EACvB,8BAA8B;EAC9B,oBAAoB;EACpB,kBAAkB;EAClB,gBAAgB;EAChB,qBAAqB;EACrB,mBAAmB;EACnB,0BAA0B;EAC1B,uBAAuB;EACvB,sBAAsB;EACtB,kBAAkB,EAAE;EACpB;IACE,2CAA2C;IAC3C,qBAAqB,EAAE;EACzB;IACE,YAAY;IACZ,sBAAsB,EAAE;EAC1B;IACE,WAAW;IACX,uBAAuB;IAEvB,iDAAiD,EAAE;EACrD;;IAEE,oBAAoB;IACpB,cAAc;IACd,0BAA0B;IAE1B,iBAAiB,EAAE;;AAEvB;;EAEE,qBAAqB,EAAE;;AAEzB;EACE,YAAY;EACZ,uBAAuB;EACvB,mBAAmB,EAAE;EACrB;IACE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;IACE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;;IAEE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;IACxB;;;;MAIE,YAAY;MACZ,0BAA0B;MAC1B,sBAAsB,EAAE;EAC5B;;IAEE,uBAAuB,EAAE;EAC3B;;;;IAIE,uBAAuB;IACvB,mBAAmB,EAAE;EACvB;IACE,YAAY;IACZ,uBAAuB,EAAE;;AAE7B;EACE,YAAY;EACZ,0BAA0B;EAC1B,sBAAsB,EAAE;EACxB;IACE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;IACE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;;IAEE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;IACxB;;;;MAIE,YAAY;MACZ,0BAA0B;MAC1B,sBAAsB,EAAE;EAC5B;;IAEE,uBAAuB,EAAE;EAC3B;;;;IAIE,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;IACE,eAAe;IACf,uBAAuB,EAAE;;AAE7B;EACE,YAAY;EACZ,0BAA0B;EAC1B,sBAAsB,EAAE;EACxB;IACE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;IACE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;;IAEE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;IACxB;;;;MAIE,YAAY;MACZ,0BAA0B;MAC1B,sBAAsB,EAAE;EAC5B;;IAEE,uBAAuB,EAAE;EAC3B;;;;IAIE,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;IACE,eAAe;IACf,uBAAuB,EAAE;;AAE7B;EACE,YAAY;EACZ,0BAA0B;EAC1B,sBAAsB,EAAE;EACxB;IACE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;IACE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;;IAEE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;IACxB;;;;MAIE,YAAY;MACZ,0BAA0B;MAC1B,sBAAsB,EAAE;EAC5B;;IAEE,uBAAuB,EAAE;EAC3B;;;;IAIE,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;IACE,eAAe;IACf,uBAAuB,EAAE;;AAE7B;EACE,YAAY;EACZ,0BAA0B;EAC1B,sBAAsB,EAAE;EACxB;IACE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;IACE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;;IAEE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;IACxB;;;;MAIE,YAAY;MACZ,0BAA0B;MAC1B,sBAAsB,EAAE;EAC5B;;IAEE,uBAAuB,EAAE;EAC3B;;;;IAIE,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;IACE,eAAe;IACf,uBAAuB,EAAE;;AAE7B;EACE,YAAY;EACZ,0BAA0B;EAC1B,sBAAsB,EAAE;EACxB;IACE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;IACE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;;IAEE,YAAY;IACZ,0BAA0B;IAC1B,sBAAsB,EAAE;IACxB;;;;MAIE,YAAY;MACZ,0BAA0B;MAC1B,sBAAsB,EAAE;EAC5B;;IAEE,uBAAuB,EAAE;EAC3B;;;;IAIE,0BAA0B;IAC1B,sBAAsB,EAAE;EAC1B;IACE,eAAe;IACf,uBAAuB,EAAE;;AAE7B;EACE,eAAe;EACf,oBAAoB;EACpB,iBAAiB,EAAE;EACnB;;IAEE,8BAA8B;IAE9B,iBAAiB,EAAE;EACrB;IACE,0BAA0B,EAAE;EAC9B;IACE,eAAe;IACf,2BAA2B;IAC3B,8BAA8B,EAAE;EAClC;;;IAGE,eAAe;IACf,sBAAsB,EAAE;;AAE5B;EACE,mBAAmB;EACnB,gBAAgB;EAChB,qBAAqB;EACrB,mBAAmB,EAAE;;AAEvB;EACE,kBAAkB;EAClB,gBAAgB;EAChB,iBAAiB;EACjB,mBAAmB,EAAE;;AAEvB;EACE,iBAAiB;EACjB,gBAAgB;EAChB,iBAAiB;EACjB,mBAAmB,EAAE;;AAEvB;EACE,eAAe;EACf,YAAY,EAAE;;AAEhB;EACE,gBAAgB,EAAE;;AAEpB;;;EAGE,YAAY,EAAE;;AAEhB;;EAEE,mBAAmB;EACnB,sBAAsB;EACtB,uBAAuB,EAAE;EACzB;;IAEE,mBAAmB;IACnB,YAAY,EAAE;IACd;;;;;MAKE,WAAW,EAAE;;AAEnB;;;;EAIE,kBAAkB,EAAE;;AAEtB;EACE,kBAAkB,EAAE;EACpB;IACE,aAAa;IACb,eAAe,EAAE;EACnB;IACE,YAAY,EAAE;EAChB;;;IAGE,YAAY,EAAE;EAChB;;;IAGE,iBAAiB,EAAE;;AAEvB;EACE,iBAAiB,EAAE;;AAErB;EACE,eAAe,EAAE;EACjB;IACE,8BAA8B;IAC9B,2BAA2B,EAAE;;AAEjC;;EAEE,6BAA6B;EAC7B,0BAA0B,EAAE;;AAE9B;EACE,YAAY,EAAE;;AAEhB;EACE,iBAAiB,EAAE;;AAErB;;EAEE,8BAA8B;EAC9B,2BAA2B,EAAE;;AAE/B;EACE,6BAA6B;EAC7B,0BAA0B,EAAE;;AAE9B;;EAEE,WAAW,EAAE;;AAEf;EACE,kBAAkB;EAClB,mBAAmB,EAAE;;AAEvB;EACE,mBAAmB;EACnB,oBAAoB,EAAE;;AAExB;EAEE,iDAAiD,EAAE;EACnD;IAEE,iBAAiB,EAAE;;AAEvB;EACE,eAAe,EAAE;;AAEnB;EACE,wBAAwB;EACxB,uBAAuB,EAAE;;AAE3B;EACE,wBAAwB,EAAE;;AAE5B;;;EAGE,eAAe;EACf,YAAY;EACZ,YAAY;EACZ,gBAAgB,EAAE;;AAEpB;EACE,aAAa;EACb,eAAe,EAAE;;AAEnB;EACE,YAAY,EAAE;;AAEhB;EACE,YAAY,EAAE;;AAEhB;;;;EAIE,iBAAiB;EACjB,eAAe,EAAE;;AAEnB;EACE,iBAAiB,EAAE;;AAErB;EACE,6BAA6B;EAC7B,4BAA4B;EAC5B,8BAA8B;EAC9B,6BAA6B,EAAE;;AAEjC;EACE,2BAA2B;EAC3B,0BAA0B;EAC1B,gCAAgC;EAChC,+BAA+B,EAAE;;AAEnC;EACE,iBAAiB,EAAE;;AAErB;;EAEE,8BAA8B;EAC9B,6BAA6B,EAAE;;AAEjC;EACE,2BAA2B;EAC3B,0BAA0B,EAAE;;AAE9B;EACE,eAAe;EACf,YAAY;EACZ,oBAAoB;EACpB,0BAA0B,EAAE;EAC5B;;IAEE,YAAY;IACZ,oBAAoB;IACpB,UAAU,EAAE;EACd;IACE,YAAY,EAAE;EAChB;IACE,WAAW,EAAE;;AAEjB;;;;EAIE,mBAAmB;EACnB,uBAAuB;EACvB,qBAAqB,EAAE;;AAEzB;EACE,mBAAmB;EACnB,eAAe;EACf,0BAA0B,EAAE;EAC5B;IACE,YAAY;IACZ,gBAAgB;IAChB,iBAAiB,EAAE;EACrB;IACE,mBAAmB;IACnB,WAAW;IACX,YAAY;IACZ,YAAY;IACZ,iBAAiB,EAAE;IACnB;MACE,WAAW,EAAE;;AAEnB;;;EAGE,oBAAoB,EAAE;EACtB;;;IAGE,iBAAiB,EAAE;;AAEvB;;EAEE,UAAU;EACV,oBAAoB;EACpB,uBAAuB,EAAE;;AAE3B;EACE,kBAAkB;EAClB,gBAAgB;EAChB,oBAAoB;EACpB,eAAe;EACf,eAAe;EACf,mBAAmB;EACnB,0BAA0B;EAC1B,uBAAuB;EACvB,mBAAmB,EAAE;EACrB;IACE,kBAAkB;IAClB,gBAAgB;IAChB,mBAAmB,EAAE;EACvB;IACE,mBAAmB;IACnB,gBAAgB;IAChB,mBAAmB,EAAE;EACvB;;IAEE,cAAc,EAAE;;AAEpB;;;;;;;EAOE,8BAA8B;EAC9B,2BAA2B,EAAE;;AAE/B;EACE,gBAAgB,EAAE;;AAEpB;;;;;;;EAOE,6BAA6B;EAC7B,0BAA0B,EAAE;;AAE9B;EACE,eAAe,EAAE;;AAEnB;EACE,mBAAmB;EACnB,aAAa;EACb,oBAAoB,EAAE;EACtB;IACE,mBAAmB,EAAE;IACrB;MACE,kBAAkB,EAAE;IACtB;MACE,WAAW,EAAE;EACjB;;IAEE,mBAAmB,EAAE;EACvB;;IAEE,WAAW;IACX,kBAAkB,EAAE;;AAExB;EACE,aAAa;EACb,gBAAgB;EAChB,kBAAkB;EAClB,eAAe;EACf,YAAY;EACZ,0BAA0B;EAC1B,aAAa;EACb,0BAA0B,EAAE;EAC5B;IACE,YAAY;IACZ,sBAAsB;IACtB,gBAAgB;IAChB,aAAa;IACb,0BAA0B,EAAE;;AAEhC;EACE,WAAW;EACX,gBAAgB;EAChB,wBAAwB;EACxB,UAAU;EACV,yBAAyB,EAAE;;AAE7B;EACE,iBAAiB,EAAE;;AAErB;EACE,cAAc;EACd,iBAAiB;EACjB,gBAAgB;EAChB,OAAO;EACP,SAAS;EACT,UAAU;EACV,QAAQ;EACR,cAAc;EACd,kCAAkC;EAClC,WAAW,EAAE;EACb;IAIE,8BAA8B;IAI9B,oCAAoC,EAAE;EACxC;IAIE,2BAA2B,EAAE;;AAEjC;EACE,mBAAmB;EACnB,iBAAiB,EAAE;;AAErB;EACE,mBAAmB;EACnB,YAAY;EACZ,aAAa,EAAE;;AAEjB;EACE,mBAAmB;EACnB,uBAAuB;EACvB,uBAAuB;EACvB,qCAAqC;EACrC,mBAAmB;EAEnB,yCAAyC;EACzC,6BAA6B;EAC7B,WAAW,EAAE;;AAEf;EACE,gBAAgB;EAChB,OAAO;EACP,SAAS;EACT,UAAU;EACV,QAAQ;EACR,cAAc;EACd,uBAAuB,EAAE;EACzB;IACE,WAAW;IACX,yBAAyB,EAAE;EAC7B;IACE,aAAa;IACb,0BAA0B,EAAE;;AAEhC;EACE,cAAc;EACd,iCAAiC,EAAE;EACnC;IACE,aAAa;IACb,eAAe,EAAE;EACnB;IACE,YAAY,EAAE;;AAElB;EACE,iBAAiB,EAAE;;AAErB;EACE,UAAU;EACV,qBAAqB,EAAE;;AAEzB;EACE,mBAAmB;EACnB,cAAc,EAAE;;AAElB;EACE,cAAc;EACd,kBAAkB;EAClB,8BAA8B,EAAE;EAChC;IACE,aAAa;IACb,eAAe,EAAE;EACnB;IACE,YAAY,EAAE;EAChB;IACE,iBAAiB;IACjB,iBAAiB,EAAE;EACrB;IACE,kBAAkB,EAAE;EACtB;IACE,eAAe,EAAE;;AAErB;EACE,mBAAmB;EACnB,aAAa;EACb,YAAY;EACZ,aAAa;EACb,iBAAiB,EAAE;;AAErB;EACE;IACE,aAAa;IACb,kBAAkB,EAAE;EACtB;IAEE,0CAA0C,EAAE;EAC9C;IACE,aAAa,EAAE,EAAE;;AAErB;EACE;IACE,aAAa,EAAE,EAAE;;AAErB;EACE,oBAAoB,EAAE;;AAExB;EACE,yBAAyB,EAAE;;AAE7B;EACE,yBAAyB,EAAE;;AAE7B;EACE,yBAAyB,EAAE;;AAE7B;EACE,yBAAyB,EAAE;;AAE7B;;;;;;;;;;;;EAYE,yBAAyB,EAAE;;AAE7B;EACE;IACE,0BAA0B,EAAE;EAC9B;IACE,0BAA0B,EAAE;EAC9B;IACE,8BAA8B,EAAE;EAClC;;IAEE,+BAA+B,EAAE,EAAE;;AAEvC;EACE;IACE,0BAA0B,EAAE,EAAE;;AAElC;EACE;IACE,2BAA2B,EAAE,EAAE;;AAEnC;EACE;IACE,iCAAiC,EAAE,EAAE;;AAEzC;EACE;IACE,0BAA0B,EAAE;EAC9B;IACE,0BAA0B,EAAE;EAC9B;IACE,8BAA8B,EAAE;EAClC;;IAEE,+BAA+B,EAAE,EAAE;;AAEvC;EACE;IACE,0BAA0B,EAAE,EAAE;;AAElC;EACE;IACE,2BAA2B,EAAE,EAAE;;AAEnC;EACE;IACE,iCAAiC,EAAE,EAAE;;AAEzC;EACE;IACE,0BAA0B,EAAE;EAC9B;IACE,0BAA0B,EAAE;EAC9B;IACE,8BAA8B,EAAE;EAClC;;IAEE,+BAA+B,EAAE,EAAE;;AAEvC;EACE;IACE,0BAA0B,EAAE,EAAE;;AAElC;EACE;IACE,2BAA2B,EAAE,EAAE;;AAEnC;EACE;IACE,iCAAiC,EAAE,EAAE;;AAEzC;EACE;IACE,0BAA0B,EAAE;EAC9B;IACE,0BAA0B,EAAE;EAC9B;IACE,8BAA8B,EAAE;EAClC;;IAEE,+BAA+B,EAAE,EAAE;;AAEvC;EACE;IACE,0BAA0B,EAAE,EAAE;;AAElC;EACE;IACE,2BAA2B,EAAE,EAAE;;AAEnC;EACE;IACE,iCAAiC,EAAE,EAAE;;AAEzC;EACE;IACE,yBAAyB,EAAE,EAAE;;AAEjC;EACE;IACE,yBAAyB,EAAE,EAAE;;AAEjC;EACE;IACE,yBAAyB,EAAE,EAAE;;AAEjC;EACE;IACE,yBAAyB,EAAE,EAAE;;AAEjC;EACE,yBAAyB,EAAE;;AAE7B;EACE;IACE,0BAA0B,EAAE;EAC9B;IACE,0BAA0B,EAAE;EAC9B;IACE,8BAA8B,EAAE;EAClC;;IAEE,+BAA+B,EAAE,EAAE;;AAEvC;EACE,yBAAyB,EAAE;EAC3B;IACE;MACE,0BAA0B,EAAE,EAAE;;AAEpC;EACE,yBAAyB,EAAE;EAC3B;IACE;MACE,2BAA2B,EAAE,EAAE;;AAErC;EACE,yBAAyB,EAAE;EAC3B;IACE;MACE,iCAAiC,EAAE,EAAE;;AAE3C;EACE;IACE,yBAAyB,EAAE,EAAE","file":"bootstrap.css","sourcesContent":[".embedpress-modal fieldset {\n padding: 0;\n margin: 0;\n border: 0;\n min-width: 0; }\n\n.embedpress-modal legend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: 20px;\n font-size: 21px;\n line-height: inherit;\n color: #333333;\n border: 0;\n border-bottom: 1px solid #e5e5e5; }\n\n.embedpress-modal label {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: bold; }\n\n.embedpress-modal input[type=\"search\"] {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box; }\n\n.embedpress-modal input[type=\"radio\"],\n.embedpress-modal input[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9;\n line-height: normal; }\n\n.embedpress-modal input[type=\"file\"] {\n display: block; }\n\n.embedpress-modal input[type=\"range\"] {\n display: block;\n width: 100%; }\n\n.embedpress-modal select[multiple],\n.embedpress-modal select[size] {\n height: auto; }\n\n.embedpress-modal input[type=\"file\"]:focus,\n.embedpress-modal input[type=\"radio\"]:focus,\n.embedpress-modal input[type=\"checkbox\"]:focus {\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px; }\n\n.embedpress-modal output {\n display: block;\n padding-top: 7px;\n font-size: 14px;\n line-height: 1.42857;\n color: #555555; }\n\n.embedpress-modal .form-control {\n display: block;\n width: 100%;\n height: 34px;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857;\n color: #555555;\n background-color: #fff;\n background-image: none;\n border: 1px solid #ccc;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;\n -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;\n transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }\n .embedpress-modal .form-control:focus {\n border-color: #66afe9;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }\n .embedpress-modal .form-control::-moz-placeholder {\n color: #999;\n opacity: 1; }\n .embedpress-modal .form-control:-ms-input-placeholder {\n color: #999; }\n .embedpress-modal .form-control::-webkit-input-placeholder {\n color: #999; }\n .embedpress-modal .form-control::-ms-expand {\n border: 0;\n background-color: transparent; }\n .embedpress-modal .form-control[disabled], .embedpress-modal .form-control[readonly],\n fieldset[disabled] .embedpress-modal .form-control {\n background-color: #eeeeee;\n opacity: 1; }\n .embedpress-modal .form-control[disabled],\n fieldset[disabled] .embedpress-modal .form-control {\n cursor: not-allowed; }\n\n.embedpress-modal textarea.form-control {\n height: auto; }\n\n.embedpress-modal input[type=\"search\"] {\n -webkit-appearance: none; }\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n .embedpress-modal input[type=\"date\"].form-control,\n .embedpress-modal input[type=\"time\"].form-control,\n .embedpress-modal input[type=\"datetime-local\"].form-control,\n .embedpress-modal input[type=\"month\"].form-control {\n line-height: 34px; }\n .embedpress-modal input[type=\"date\"].input-sm, .embedpress-modal .input-group-sm > input[type=\"date\"].form-control, .embedpress-modal .input-group-sm > input[type=\"date\"].input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > input[type=\"date\"].btn,\n .input-group-sm .embedpress-modal input[type=\"date\"],\n .embedpress-modal input[type=\"time\"].input-sm, .embedpress-modal .input-group-sm > input[type=\"time\"].form-control, .embedpress-modal .input-group-sm > input[type=\"time\"].input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > input[type=\"time\"].btn,\n .input-group-sm\n .embedpress-modal input[type=\"time\"],\n .embedpress-modal input[type=\"datetime-local\"].input-sm, .embedpress-modal .input-group-sm > input[type=\"datetime-local\"].form-control, .embedpress-modal .input-group-sm > input[type=\"datetime-local\"].input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > input[type=\"datetime-local\"].btn,\n .input-group-sm\n .embedpress-modal input[type=\"datetime-local\"],\n .embedpress-modal input[type=\"month\"].input-sm, .embedpress-modal .input-group-sm > input[type=\"month\"].form-control, .embedpress-modal .input-group-sm > input[type=\"month\"].input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > input[type=\"month\"].btn,\n .input-group-sm\n .embedpress-modal input[type=\"month\"] {\n line-height: 30px; }\n .embedpress-modal input[type=\"date\"].input-lg, .embedpress-modal .input-group-lg > input[type=\"date\"].form-control, .embedpress-modal .input-group-lg > input[type=\"date\"].input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > input[type=\"date\"].btn,\n .input-group-lg .embedpress-modal input[type=\"date\"],\n .embedpress-modal input[type=\"time\"].input-lg, .embedpress-modal .input-group-lg > input[type=\"time\"].form-control, .embedpress-modal .input-group-lg > input[type=\"time\"].input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > input[type=\"time\"].btn,\n .input-group-lg\n .embedpress-modal input[type=\"time\"],\n .embedpress-modal input[type=\"datetime-local\"].input-lg, .embedpress-modal .input-group-lg > input[type=\"datetime-local\"].form-control, .embedpress-modal .input-group-lg > input[type=\"datetime-local\"].input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > input[type=\"datetime-local\"].btn,\n .input-group-lg\n .embedpress-modal input[type=\"datetime-local\"],\n .embedpress-modal input[type=\"month\"].input-lg, .embedpress-modal .input-group-lg > input[type=\"month\"].form-control, .embedpress-modal .input-group-lg > input[type=\"month\"].input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > input[type=\"month\"].btn,\n .input-group-lg\n .embedpress-modal input[type=\"month\"] {\n line-height: 46px; } }\n\n.embedpress-modal .form-group {\n margin-bottom: 15px; }\n\n.embedpress-modal .radio,\n.embedpress-modal .checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px; }\n .embedpress-modal .radio label,\n .embedpress-modal .checkbox label {\n min-height: 20px;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer; }\n\n.embedpress-modal .radio input[type=\"radio\"],\n.embedpress-modal .radio-inline input[type=\"radio\"],\n.embedpress-modal .checkbox input[type=\"checkbox\"],\n.embedpress-modal .checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9; }\n\n.embedpress-modal .radio + .radio,\n.embedpress-modal .checkbox + .checkbox {\n margin-top: -5px; }\n\n.embedpress-modal .radio-inline,\n.embedpress-modal .checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer; }\n\n.embedpress-modal .radio-inline + .radio-inline,\n.embedpress-modal .checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px; }\n\n.embedpress-modal input[type=\"radio\"][disabled], .embedpress-modal input[type=\"radio\"].disabled,\nfieldset[disabled] .embedpress-modal input[type=\"radio\"],\n.embedpress-modal input[type=\"checkbox\"][disabled],\n.embedpress-modal input[type=\"checkbox\"].disabled,\nfieldset[disabled]\n.embedpress-modal input[type=\"checkbox\"] {\n cursor: not-allowed; }\n\n.embedpress-modal .radio-inline.disabled,\nfieldset[disabled] .embedpress-modal .radio-inline,\n.embedpress-modal .checkbox-inline.disabled,\nfieldset[disabled]\n.embedpress-modal .checkbox-inline {\n cursor: not-allowed; }\n\n.embedpress-modal .radio.disabled label,\nfieldset[disabled] .embedpress-modal .radio label,\n.embedpress-modal .checkbox.disabled label,\nfieldset[disabled]\n.embedpress-modal .checkbox label {\n cursor: not-allowed; }\n\n.embedpress-modal .form-control-static {\n padding-top: 7px;\n padding-bottom: 7px;\n margin-bottom: 0;\n min-height: 34px; }\n .embedpress-modal .form-control-static.input-lg, .embedpress-modal .input-group-lg > .form-control-static.form-control, .embedpress-modal .input-group-lg > .form-control-static.input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > .form-control-static.btn, .embedpress-modal .form-control-static.input-sm, .embedpress-modal .input-group-sm > .form-control-static.form-control, .embedpress-modal .input-group-sm > .form-control-static.input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > .form-control-static.btn {\n padding-left: 0;\n padding-right: 0; }\n\n.embedpress-modal .input-sm, .embedpress-modal .input-group-sm > .form-control, .embedpress-modal .input-group-sm > .input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > .btn {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px; }\n\n.embedpress-modal select.input-sm, .embedpress-modal .input-group-sm > select.form-control, .embedpress-modal .input-group-sm > select.input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > select.btn {\n height: 30px;\n line-height: 30px; }\n\n.embedpress-modal textarea.input-sm, .embedpress-modal .input-group-sm > textarea.form-control, .embedpress-modal .input-group-sm > textarea.input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > textarea.btn,\n.embedpress-modal select[multiple].input-sm, .embedpress-modal .input-group-sm > select[multiple].form-control, .embedpress-modal .input-group-sm > select[multiple].input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > select[multiple].btn {\n height: auto; }\n\n.embedpress-modal .form-group-sm .form-control {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px; }\n\n.embedpress-modal .form-group-sm select.form-control {\n height: 30px;\n line-height: 30px; }\n\n.embedpress-modal .form-group-sm textarea.form-control,\n.embedpress-modal .form-group-sm select[multiple].form-control {\n height: auto; }\n\n.embedpress-modal .form-group-sm .form-control-static {\n height: 30px;\n min-height: 32px;\n padding: 6px 10px;\n font-size: 12px;\n line-height: 1.5; }\n\n.embedpress-modal .input-lg, .embedpress-modal .input-group-lg > .form-control, .embedpress-modal .input-group-lg > .input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > .btn {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.33333;\n border-radius: 6px; }\n\n.embedpress-modal select.input-lg, .embedpress-modal .input-group-lg > select.form-control, .embedpress-modal .input-group-lg > select.input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > select.btn {\n height: 46px;\n line-height: 46px; }\n\n.embedpress-modal textarea.input-lg, .embedpress-modal .input-group-lg > textarea.form-control, .embedpress-modal .input-group-lg > textarea.input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > textarea.btn,\n.embedpress-modal select[multiple].input-lg, .embedpress-modal .input-group-lg > select[multiple].form-control, .embedpress-modal .input-group-lg > select[multiple].input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > select[multiple].btn {\n height: auto; }\n\n.embedpress-modal .form-group-lg .form-control {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.33333;\n border-radius: 6px; }\n\n.embedpress-modal .form-group-lg select.form-control {\n height: 46px;\n line-height: 46px; }\n\n.embedpress-modal .form-group-lg textarea.form-control,\n.embedpress-modal .form-group-lg select[multiple].form-control {\n height: auto; }\n\n.embedpress-modal .form-group-lg .form-control-static {\n height: 46px;\n min-height: 38px;\n padding: 11px 16px;\n font-size: 18px;\n line-height: 1.33333; }\n\n.embedpress-modal .has-feedback {\n position: relative; }\n .embedpress-modal .has-feedback .form-control {\n padding-right: 42.5px; }\n\n.embedpress-modal .form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n display: block;\n width: 34px;\n height: 34px;\n line-height: 34px;\n text-align: center;\n pointer-events: none; }\n\n.embedpress-modal .input-lg + .form-control-feedback, .embedpress-modal .input-group-lg > .form-control + .form-control-feedback, .embedpress-modal .input-group-lg > .input-group-addon + .form-control-feedback, .embedpress-modal .input-group-lg > .input-group-btn > .btn + .form-control-feedback,\n.embedpress-modal .input-group-lg + .form-control-feedback,\n.embedpress-modal .form-group-lg .form-control + .form-control-feedback {\n width: 46px;\n height: 46px;\n line-height: 46px; }\n\n.embedpress-modal .input-sm + .form-control-feedback, .embedpress-modal .input-group-sm > .form-control + .form-control-feedback, .embedpress-modal .input-group-sm > .input-group-addon + .form-control-feedback, .embedpress-modal .input-group-sm > .input-group-btn > .btn + .form-control-feedback,\n.embedpress-modal .input-group-sm + .form-control-feedback,\n.embedpress-modal .form-group-sm .form-control + .form-control-feedback {\n width: 30px;\n height: 30px;\n line-height: 30px; }\n\n.embedpress-modal .has-success .help-block,\n.embedpress-modal .has-success .control-label,\n.embedpress-modal .has-success .radio,\n.embedpress-modal .has-success .checkbox,\n.embedpress-modal .has-success .radio-inline,\n.embedpress-modal .has-success .checkbox-inline,\n.embedpress-modal .has-success.radio label,\n.embedpress-modal .has-success.checkbox label,\n.embedpress-modal .has-success.radio-inline label,\n.embedpress-modal .has-success.checkbox-inline label {\n color: #3c763d; }\n\n.embedpress-modal .has-success .form-control {\n border-color: #3c763d;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }\n .embedpress-modal .has-success .form-control:focus {\n border-color: #2b542c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }\n\n.embedpress-modal .has-success .input-group-addon {\n color: #3c763d;\n border-color: #3c763d;\n background-color: #dff0d8; }\n\n.embedpress-modal .has-success .form-control-feedback {\n color: #3c763d; }\n\n.embedpress-modal .has-warning .help-block,\n.embedpress-modal .has-warning .control-label,\n.embedpress-modal .has-warning .radio,\n.embedpress-modal .has-warning .checkbox,\n.embedpress-modal .has-warning .radio-inline,\n.embedpress-modal .has-warning .checkbox-inline,\n.embedpress-modal .has-warning.radio label,\n.embedpress-modal .has-warning.checkbox label,\n.embedpress-modal .has-warning.radio-inline label,\n.embedpress-modal .has-warning.checkbox-inline label {\n color: #8a6d3b; }\n\n.embedpress-modal .has-warning .form-control {\n border-color: #8a6d3b;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }\n .embedpress-modal .has-warning .form-control:focus {\n border-color: #66512c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }\n\n.embedpress-modal .has-warning .input-group-addon {\n color: #8a6d3b;\n border-color: #8a6d3b;\n background-color: #fcf8e3; }\n\n.embedpress-modal .has-warning .form-control-feedback {\n color: #8a6d3b; }\n\n.embedpress-modal .has-error .help-block,\n.embedpress-modal .has-error .control-label,\n.embedpress-modal .has-error .radio,\n.embedpress-modal .has-error .checkbox,\n.embedpress-modal .has-error .radio-inline,\n.embedpress-modal .has-error .checkbox-inline,\n.embedpress-modal .has-error.radio label,\n.embedpress-modal .has-error.checkbox label,\n.embedpress-modal .has-error.radio-inline label,\n.embedpress-modal .has-error.checkbox-inline label {\n color: #a94442; }\n\n.embedpress-modal .has-error .form-control {\n border-color: #a94442;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }\n .embedpress-modal .has-error .form-control:focus {\n border-color: #843534;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }\n\n.embedpress-modal .has-error .input-group-addon {\n color: #a94442;\n border-color: #a94442;\n background-color: #f2dede; }\n\n.embedpress-modal .has-error .form-control-feedback {\n color: #a94442; }\n\n.embedpress-modal .has-feedback label ~ .form-control-feedback {\n top: 25px; }\n\n.embedpress-modal .has-feedback label.sr-only ~ .form-control-feedback {\n top: 0; }\n\n.embedpress-modal .help-block {\n display: block;\n margin-top: 5px;\n margin-bottom: 10px;\n color: #737373; }\n\n@media (min-width: 768px) {\n .embedpress-modal .form-inline .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle; }\n .embedpress-modal .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle; }\n .embedpress-modal .form-inline .form-control-static {\n display: inline-block; }\n .embedpress-modal .form-inline .input-group {\n display: inline-table;\n vertical-align: middle; }\n .embedpress-modal .form-inline .input-group .input-group-addon,\n .embedpress-modal .form-inline .input-group .input-group-btn,\n .embedpress-modal .form-inline .input-group .form-control {\n width: auto; }\n .embedpress-modal .form-inline .input-group > .form-control {\n width: 100%; }\n .embedpress-modal .form-inline .control-label {\n margin-bottom: 0;\n vertical-align: middle; }\n .embedpress-modal .form-inline .radio,\n .embedpress-modal .form-inline .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle; }\n .embedpress-modal .form-inline .radio label,\n .embedpress-modal .form-inline .checkbox label {\n padding-left: 0; }\n .embedpress-modal .form-inline .radio input[type=\"radio\"],\n .embedpress-modal .form-inline .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0; }\n .embedpress-modal .form-inline .has-feedback .form-control-feedback {\n top: 0; } }\n\n.embedpress-modal .form-horizontal .radio,\n.embedpress-modal .form-horizontal .checkbox,\n.embedpress-modal .form-horizontal .radio-inline,\n.embedpress-modal .form-horizontal .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: 7px; }\n\n.embedpress-modal .form-horizontal .radio,\n.embedpress-modal .form-horizontal .checkbox {\n min-height: 27px; }\n\n.embedpress-modal .form-horizontal .form-group {\n margin-left: -15px;\n margin-right: -15px; }\n .embedpress-modal .form-horizontal .form-group:before, .embedpress-modal .form-horizontal .form-group:after {\n content: \" \";\n display: table; }\n .embedpress-modal .form-horizontal .form-group:after {\n clear: both; }\n\n@media (min-width: 768px) {\n .embedpress-modal .form-horizontal .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: 7px; } }\n\n.embedpress-modal .form-horizontal .has-feedback .form-control-feedback {\n right: 15px; }\n\n@media (min-width: 768px) {\n .embedpress-modal .form-horizontal .form-group-lg .control-label {\n padding-top: 11px;\n font-size: 18px; } }\n\n@media (min-width: 768px) {\n .embedpress-modal .form-horizontal .form-group-sm .control-label {\n padding-top: 6px;\n font-size: 12px; } }\n\n.embedpress-modal .btn {\n display: inline-block;\n margin-bottom: 0;\n font-weight: normal;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none;\n border: 1px solid transparent;\n white-space: nowrap;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857;\n border-radius: 4px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n .embedpress-modal .btn:focus, .embedpress-modal .btn.focus, .embedpress-modal .btn:active:focus, .embedpress-modal .btn:active.focus, .embedpress-modal .btn.active:focus, .embedpress-modal .btn.active.focus {\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px; }\n .embedpress-modal .btn:hover, .embedpress-modal .btn:focus, .embedpress-modal .btn.focus {\n color: #333;\n text-decoration: none; }\n .embedpress-modal .btn:active, .embedpress-modal .btn.active {\n outline: 0;\n background-image: none;\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }\n .embedpress-modal .btn.disabled, .embedpress-modal .btn[disabled],\n fieldset[disabled] .embedpress-modal .btn {\n cursor: not-allowed;\n opacity: 0.65;\n filter: alpha(opacity=65);\n -webkit-box-shadow: none;\n box-shadow: none; }\n\n.embedpress-modal a.btn.disabled,\nfieldset[disabled] .embedpress-modal a.btn {\n pointer-events: none; }\n\n.embedpress-modal .btn-default {\n color: #333;\n background-color: #fff;\n border-color: #ccc; }\n .embedpress-modal .btn-default:focus, .embedpress-modal .btn-default.focus {\n color: #333;\n background-color: #e6e6e6;\n border-color: #8c8c8c; }\n .embedpress-modal .btn-default:hover {\n color: #333;\n background-color: #e6e6e6;\n border-color: #adadad; }\n .embedpress-modal .btn-default:active, .embedpress-modal .btn-default.active,\n .open > .embedpress-modal .btn-default.dropdown-toggle {\n color: #333;\n background-color: #e6e6e6;\n border-color: #adadad; }\n .embedpress-modal .btn-default:active:hover, .embedpress-modal .btn-default:active:focus, .embedpress-modal .btn-default:active.focus, .embedpress-modal .btn-default.active:hover, .embedpress-modal .btn-default.active:focus, .embedpress-modal .btn-default.active.focus,\n .open > .embedpress-modal .btn-default.dropdown-toggle:hover,\n .open > .embedpress-modal .btn-default.dropdown-toggle:focus,\n .open > .embedpress-modal .btn-default.dropdown-toggle.focus {\n color: #333;\n background-color: #d4d4d4;\n border-color: #8c8c8c; }\n .embedpress-modal .btn-default:active, .embedpress-modal .btn-default.active,\n .open > .embedpress-modal .btn-default.dropdown-toggle {\n background-image: none; }\n .embedpress-modal .btn-default.disabled:hover, .embedpress-modal .btn-default.disabled:focus, .embedpress-modal .btn-default.disabled.focus, .embedpress-modal .btn-default[disabled]:hover, .embedpress-modal .btn-default[disabled]:focus, .embedpress-modal .btn-default[disabled].focus,\n fieldset[disabled] .embedpress-modal .btn-default:hover,\n fieldset[disabled] .embedpress-modal .btn-default:focus,\n fieldset[disabled] .embedpress-modal .btn-default.focus {\n background-color: #fff;\n border-color: #ccc; }\n .embedpress-modal .btn-default .badge {\n color: #fff;\n background-color: #333; }\n\n.embedpress-modal .btn-primary {\n color: #fff;\n background-color: #337ab7;\n border-color: #2e6da4; }\n .embedpress-modal .btn-primary:focus, .embedpress-modal .btn-primary.focus {\n color: #fff;\n background-color: #286090;\n border-color: #122b40; }\n .embedpress-modal .btn-primary:hover {\n color: #fff;\n background-color: #286090;\n border-color: #204d74; }\n .embedpress-modal .btn-primary:active, .embedpress-modal .btn-primary.active,\n .open > .embedpress-modal .btn-primary.dropdown-toggle {\n color: #fff;\n background-color: #286090;\n border-color: #204d74; }\n .embedpress-modal .btn-primary:active:hover, .embedpress-modal .btn-primary:active:focus, .embedpress-modal .btn-primary:active.focus, .embedpress-modal .btn-primary.active:hover, .embedpress-modal .btn-primary.active:focus, .embedpress-modal .btn-primary.active.focus,\n .open > .embedpress-modal .btn-primary.dropdown-toggle:hover,\n .open > .embedpress-modal .btn-primary.dropdown-toggle:focus,\n .open > .embedpress-modal .btn-primary.dropdown-toggle.focus {\n color: #fff;\n background-color: #204d74;\n border-color: #122b40; }\n .embedpress-modal .btn-primary:active, .embedpress-modal .btn-primary.active,\n .open > .embedpress-modal .btn-primary.dropdown-toggle {\n background-image: none; }\n .embedpress-modal .btn-primary.disabled:hover, .embedpress-modal .btn-primary.disabled:focus, .embedpress-modal .btn-primary.disabled.focus, .embedpress-modal .btn-primary[disabled]:hover, .embedpress-modal .btn-primary[disabled]:focus, .embedpress-modal .btn-primary[disabled].focus,\n fieldset[disabled] .embedpress-modal .btn-primary:hover,\n fieldset[disabled] .embedpress-modal .btn-primary:focus,\n fieldset[disabled] .embedpress-modal .btn-primary.focus {\n background-color: #337ab7;\n border-color: #2e6da4; }\n .embedpress-modal .btn-primary .badge {\n color: #337ab7;\n background-color: #fff; }\n\n.embedpress-modal .btn-success {\n color: #fff;\n background-color: #5cb85c;\n border-color: #4cae4c; }\n .embedpress-modal .btn-success:focus, .embedpress-modal .btn-success.focus {\n color: #fff;\n background-color: #449d44;\n border-color: #255625; }\n .embedpress-modal .btn-success:hover {\n color: #fff;\n background-color: #449d44;\n border-color: #398439; }\n .embedpress-modal .btn-success:active, .embedpress-modal .btn-success.active,\n .open > .embedpress-modal .btn-success.dropdown-toggle {\n color: #fff;\n background-color: #449d44;\n border-color: #398439; }\n .embedpress-modal .btn-success:active:hover, .embedpress-modal .btn-success:active:focus, .embedpress-modal .btn-success:active.focus, .embedpress-modal .btn-success.active:hover, .embedpress-modal .btn-success.active:focus, .embedpress-modal .btn-success.active.focus,\n .open > .embedpress-modal .btn-success.dropdown-toggle:hover,\n .open > .embedpress-modal .btn-success.dropdown-toggle:focus,\n .open > .embedpress-modal .btn-success.dropdown-toggle.focus {\n color: #fff;\n background-color: #398439;\n border-color: #255625; }\n .embedpress-modal .btn-success:active, .embedpress-modal .btn-success.active,\n .open > .embedpress-modal .btn-success.dropdown-toggle {\n background-image: none; }\n .embedpress-modal .btn-success.disabled:hover, .embedpress-modal .btn-success.disabled:focus, .embedpress-modal .btn-success.disabled.focus, .embedpress-modal .btn-success[disabled]:hover, .embedpress-modal .btn-success[disabled]:focus, .embedpress-modal .btn-success[disabled].focus,\n fieldset[disabled] .embedpress-modal .btn-success:hover,\n fieldset[disabled] .embedpress-modal .btn-success:focus,\n fieldset[disabled] .embedpress-modal .btn-success.focus {\n background-color: #5cb85c;\n border-color: #4cae4c; }\n .embedpress-modal .btn-success .badge {\n color: #5cb85c;\n background-color: #fff; }\n\n.embedpress-modal .btn-info {\n color: #fff;\n background-color: #5bc0de;\n border-color: #46b8da; }\n .embedpress-modal .btn-info:focus, .embedpress-modal .btn-info.focus {\n color: #fff;\n background-color: #31b0d5;\n border-color: #1b6d85; }\n .embedpress-modal .btn-info:hover {\n color: #fff;\n background-color: #31b0d5;\n border-color: #269abc; }\n .embedpress-modal .btn-info:active, .embedpress-modal .btn-info.active,\n .open > .embedpress-modal .btn-info.dropdown-toggle {\n color: #fff;\n background-color: #31b0d5;\n border-color: #269abc; }\n .embedpress-modal .btn-info:active:hover, .embedpress-modal .btn-info:active:focus, .embedpress-modal .btn-info:active.focus, .embedpress-modal .btn-info.active:hover, .embedpress-modal .btn-info.active:focus, .embedpress-modal .btn-info.active.focus,\n .open > .embedpress-modal .btn-info.dropdown-toggle:hover,\n .open > .embedpress-modal .btn-info.dropdown-toggle:focus,\n .open > .embedpress-modal .btn-info.dropdown-toggle.focus {\n color: #fff;\n background-color: #269abc;\n border-color: #1b6d85; }\n .embedpress-modal .btn-info:active, .embedpress-modal .btn-info.active,\n .open > .embedpress-modal .btn-info.dropdown-toggle {\n background-image: none; }\n .embedpress-modal .btn-info.disabled:hover, .embedpress-modal .btn-info.disabled:focus, .embedpress-modal .btn-info.disabled.focus, .embedpress-modal .btn-info[disabled]:hover, .embedpress-modal .btn-info[disabled]:focus, .embedpress-modal .btn-info[disabled].focus,\n fieldset[disabled] .embedpress-modal .btn-info:hover,\n fieldset[disabled] .embedpress-modal .btn-info:focus,\n fieldset[disabled] .embedpress-modal .btn-info.focus {\n background-color: #5bc0de;\n border-color: #46b8da; }\n .embedpress-modal .btn-info .badge {\n color: #5bc0de;\n background-color: #fff; }\n\n.embedpress-modal .btn-warning {\n color: #fff;\n background-color: #f0ad4e;\n border-color: #eea236; }\n .embedpress-modal .btn-warning:focus, .embedpress-modal .btn-warning.focus {\n color: #fff;\n background-color: #ec971f;\n border-color: #985f0d; }\n .embedpress-modal .btn-warning:hover {\n color: #fff;\n background-color: #ec971f;\n border-color: #d58512; }\n .embedpress-modal .btn-warning:active, .embedpress-modal .btn-warning.active,\n .open > .embedpress-modal .btn-warning.dropdown-toggle {\n color: #fff;\n background-color: #ec971f;\n border-color: #d58512; }\n .embedpress-modal .btn-warning:active:hover, .embedpress-modal .btn-warning:active:focus, .embedpress-modal .btn-warning:active.focus, .embedpress-modal .btn-warning.active:hover, .embedpress-modal .btn-warning.active:focus, .embedpress-modal .btn-warning.active.focus,\n .open > .embedpress-modal .btn-warning.dropdown-toggle:hover,\n .open > .embedpress-modal .btn-warning.dropdown-toggle:focus,\n .open > .embedpress-modal .btn-warning.dropdown-toggle.focus {\n color: #fff;\n background-color: #d58512;\n border-color: #985f0d; }\n .embedpress-modal .btn-warning:active, .embedpress-modal .btn-warning.active,\n .open > .embedpress-modal .btn-warning.dropdown-toggle {\n background-image: none; }\n .embedpress-modal .btn-warning.disabled:hover, .embedpress-modal .btn-warning.disabled:focus, .embedpress-modal .btn-warning.disabled.focus, .embedpress-modal .btn-warning[disabled]:hover, .embedpress-modal .btn-warning[disabled]:focus, .embedpress-modal .btn-warning[disabled].focus,\n fieldset[disabled] .embedpress-modal .btn-warning:hover,\n fieldset[disabled] .embedpress-modal .btn-warning:focus,\n fieldset[disabled] .embedpress-modal .btn-warning.focus {\n background-color: #f0ad4e;\n border-color: #eea236; }\n .embedpress-modal .btn-warning .badge {\n color: #f0ad4e;\n background-color: #fff; }\n\n.embedpress-modal .btn-danger {\n color: #fff;\n background-color: #d9534f;\n border-color: #d43f3a; }\n .embedpress-modal .btn-danger:focus, .embedpress-modal .btn-danger.focus {\n color: #fff;\n background-color: #c9302c;\n border-color: #761c19; }\n .embedpress-modal .btn-danger:hover {\n color: #fff;\n background-color: #c9302c;\n border-color: #ac2925; }\n .embedpress-modal .btn-danger:active, .embedpress-modal .btn-danger.active,\n .open > .embedpress-modal .btn-danger.dropdown-toggle {\n color: #fff;\n background-color: #c9302c;\n border-color: #ac2925; }\n .embedpress-modal .btn-danger:active:hover, .embedpress-modal .btn-danger:active:focus, .embedpress-modal .btn-danger:active.focus, .embedpress-modal .btn-danger.active:hover, .embedpress-modal .btn-danger.active:focus, .embedpress-modal .btn-danger.active.focus,\n .open > .embedpress-modal .btn-danger.dropdown-toggle:hover,\n .open > .embedpress-modal .btn-danger.dropdown-toggle:focus,\n .open > .embedpress-modal .btn-danger.dropdown-toggle.focus {\n color: #fff;\n background-color: #ac2925;\n border-color: #761c19; }\n .embedpress-modal .btn-danger:active, .embedpress-modal .btn-danger.active,\n .open > .embedpress-modal .btn-danger.dropdown-toggle {\n background-image: none; }\n .embedpress-modal .btn-danger.disabled:hover, .embedpress-modal .btn-danger.disabled:focus, .embedpress-modal .btn-danger.disabled.focus, .embedpress-modal .btn-danger[disabled]:hover, .embedpress-modal .btn-danger[disabled]:focus, .embedpress-modal .btn-danger[disabled].focus,\n fieldset[disabled] .embedpress-modal .btn-danger:hover,\n fieldset[disabled] .embedpress-modal .btn-danger:focus,\n fieldset[disabled] .embedpress-modal .btn-danger.focus {\n background-color: #d9534f;\n border-color: #d43f3a; }\n .embedpress-modal .btn-danger .badge {\n color: #d9534f;\n background-color: #fff; }\n\n.embedpress-modal .btn-link {\n color: #337ab7;\n font-weight: normal;\n border-radius: 0; }\n .embedpress-modal .btn-link, .embedpress-modal .btn-link:active, .embedpress-modal .btn-link.active, .embedpress-modal .btn-link[disabled],\n fieldset[disabled] .embedpress-modal .btn-link {\n background-color: transparent;\n -webkit-box-shadow: none;\n box-shadow: none; }\n .embedpress-modal .btn-link, .embedpress-modal .btn-link:hover, .embedpress-modal .btn-link:focus, .embedpress-modal .btn-link:active {\n border-color: transparent; }\n .embedpress-modal .btn-link:hover, .embedpress-modal .btn-link:focus {\n color: #23527c;\n text-decoration: underline;\n background-color: transparent; }\n .embedpress-modal .btn-link[disabled]:hover, .embedpress-modal .btn-link[disabled]:focus,\n fieldset[disabled] .embedpress-modal .btn-link:hover,\n fieldset[disabled] .embedpress-modal .btn-link:focus {\n color: #777777;\n text-decoration: none; }\n\n.embedpress-modal .btn-lg, .embedpress-modal .btn-group-lg > .btn {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.33333;\n border-radius: 6px; }\n\n.embedpress-modal .btn-sm, .embedpress-modal .btn-group-sm > .btn {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px; }\n\n.embedpress-modal .btn-xs, .embedpress-modal .btn-group-xs > .btn {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px; }\n\n.embedpress-modal .btn-block {\n display: block;\n width: 100%; }\n\n.embedpress-modal .btn-block + .btn-block {\n margin-top: 5px; }\n\n.embedpress-modal input[type=\"submit\"].btn-block,\n.embedpress-modal input[type=\"reset\"].btn-block,\n.embedpress-modal input[type=\"button\"].btn-block {\n width: 100%; }\n\n.embedpress-modal .btn-group,\n.embedpress-modal .btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle; }\n .embedpress-modal .btn-group > .btn,\n .embedpress-modal .btn-group-vertical > .btn {\n position: relative;\n float: left; }\n .embedpress-modal .btn-group > .btn:hover, .embedpress-modal .btn-group > .btn:focus, .embedpress-modal .btn-group > .btn:active, .embedpress-modal .btn-group > .btn.active,\n .embedpress-modal .btn-group-vertical > .btn:hover,\n .embedpress-modal .btn-group-vertical > .btn:focus,\n .embedpress-modal .btn-group-vertical > .btn:active,\n .embedpress-modal .btn-group-vertical > .btn.active {\n z-index: 2; }\n\n.embedpress-modal .btn-group .btn + .btn,\n.embedpress-modal .btn-group .btn + .btn-group,\n.embedpress-modal .btn-group .btn-group + .btn,\n.embedpress-modal .btn-group .btn-group + .btn-group {\n margin-left: -1px; }\n\n.embedpress-modal .btn-toolbar {\n margin-left: -5px; }\n .embedpress-modal .btn-toolbar:before, .embedpress-modal .btn-toolbar:after {\n content: \" \";\n display: table; }\n .embedpress-modal .btn-toolbar:after {\n clear: both; }\n .embedpress-modal .btn-toolbar .btn,\n .embedpress-modal .btn-toolbar .btn-group,\n .embedpress-modal .btn-toolbar .input-group {\n float: left; }\n .embedpress-modal .btn-toolbar > .btn,\n .embedpress-modal .btn-toolbar > .btn-group,\n .embedpress-modal .btn-toolbar > .input-group {\n margin-left: 5px; }\n\n.embedpress-modal .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0; }\n\n.embedpress-modal .btn-group > .btn:first-child {\n margin-left: 0; }\n .embedpress-modal .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0; }\n\n.embedpress-modal .btn-group > .btn:last-child:not(:first-child),\n.embedpress-modal .btn-group > .dropdown-toggle:not(:first-child) {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0; }\n\n.embedpress-modal .btn-group > .btn-group {\n float: left; }\n\n.embedpress-modal .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0; }\n\n.embedpress-modal .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.embedpress-modal .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0; }\n\n.embedpress-modal .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0; }\n\n.embedpress-modal .btn-group .dropdown-toggle:active,\n.embedpress-modal .btn-group.open .dropdown-toggle {\n outline: 0; }\n\n.embedpress-modal .btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px; }\n\n.embedpress-modal .btn-group > .btn-lg + .dropdown-toggle, .embedpress-modal .btn-group-lg.btn-group > .btn + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px; }\n\n.embedpress-modal .btn-group.open .dropdown-toggle {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }\n .embedpress-modal .btn-group.open .dropdown-toggle.btn-link {\n -webkit-box-shadow: none;\n box-shadow: none; }\n\n.embedpress-modal .btn .caret {\n margin-left: 0; }\n\n.embedpress-modal .btn-lg .caret, .embedpress-modal .btn-group-lg > .btn .caret {\n border-width: 5px 5px 0;\n border-bottom-width: 0; }\n\n.embedpress-modal .dropup .btn-lg .caret, .embedpress-modal .dropup .btn-group-lg > .btn .caret {\n border-width: 0 5px 5px; }\n\n.embedpress-modal .btn-group-vertical > .btn,\n.embedpress-modal .btn-group-vertical > .btn-group,\n.embedpress-modal .btn-group-vertical > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%; }\n\n.embedpress-modal .btn-group-vertical > .btn-group:before, .embedpress-modal .btn-group-vertical > .btn-group:after {\n content: \" \";\n display: table; }\n\n.embedpress-modal .btn-group-vertical > .btn-group:after {\n clear: both; }\n\n.embedpress-modal .btn-group-vertical > .btn-group > .btn {\n float: none; }\n\n.embedpress-modal .btn-group-vertical > .btn + .btn,\n.embedpress-modal .btn-group-vertical > .btn + .btn-group,\n.embedpress-modal .btn-group-vertical > .btn-group + .btn,\n.embedpress-modal .btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0; }\n\n.embedpress-modal .btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n border-radius: 0; }\n\n.embedpress-modal .btn-group-vertical > .btn:first-child:not(:last-child) {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0; }\n\n.embedpress-modal .btn-group-vertical > .btn:last-child:not(:first-child) {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px; }\n\n.embedpress-modal .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0; }\n\n.embedpress-modal .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.embedpress-modal .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0; }\n\n.embedpress-modal .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-right-radius: 0;\n border-top-left-radius: 0; }\n\n.embedpress-modal .btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate; }\n .embedpress-modal .btn-group-justified > .btn,\n .embedpress-modal .btn-group-justified > .btn-group {\n float: none;\n display: table-cell;\n width: 1%; }\n .embedpress-modal .btn-group-justified > .btn-group .btn {\n width: 100%; }\n .embedpress-modal .btn-group-justified > .btn-group .dropdown-menu {\n left: auto; }\n\n.embedpress-modal [data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n.embedpress-modal [data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n.embedpress-modal [data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n.embedpress-modal [data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none; }\n\n.embedpress-modal .input-group {\n position: relative;\n display: table;\n border-collapse: separate; }\n .embedpress-modal .input-group[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0; }\n .embedpress-modal .input-group .form-control {\n position: relative;\n z-index: 2;\n float: left;\n width: 100%;\n margin-bottom: 0; }\n .embedpress-modal .input-group .form-control:focus {\n z-index: 3; }\n\n.embedpress-modal .input-group-addon,\n.embedpress-modal .input-group-btn,\n.embedpress-modal .input-group .form-control {\n display: table-cell; }\n .embedpress-modal .input-group-addon:not(:first-child):not(:last-child),\n .embedpress-modal .input-group-btn:not(:first-child):not(:last-child),\n .embedpress-modal .input-group .form-control:not(:first-child):not(:last-child) {\n border-radius: 0; }\n\n.embedpress-modal .input-group-addon,\n.embedpress-modal .input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle; }\n\n.embedpress-modal .input-group-addon {\n padding: 6px 12px;\n font-size: 14px;\n font-weight: normal;\n line-height: 1;\n color: #555555;\n text-align: center;\n background-color: #eeeeee;\n border: 1px solid #ccc;\n border-radius: 4px; }\n .embedpress-modal .input-group-addon.input-sm, .embedpress-modal .input-group-sm > .input-group-addon, .embedpress-modal .input-group-sm > .input-group-btn > .input-group-addon.btn {\n padding: 5px 10px;\n font-size: 12px;\n border-radius: 3px; }\n .embedpress-modal .input-group-addon.input-lg, .embedpress-modal .input-group-lg > .input-group-addon, .embedpress-modal .input-group-lg > .input-group-btn > .input-group-addon.btn {\n padding: 10px 16px;\n font-size: 18px;\n border-radius: 6px; }\n .embedpress-modal .input-group-addon input[type=\"radio\"],\n .embedpress-modal .input-group-addon input[type=\"checkbox\"] {\n margin-top: 0; }\n\n.embedpress-modal .input-group .form-control:first-child,\n.embedpress-modal .input-group-addon:first-child,\n.embedpress-modal .input-group-btn:first-child > .btn,\n.embedpress-modal .input-group-btn:first-child > .btn-group > .btn,\n.embedpress-modal .input-group-btn:first-child > .dropdown-toggle,\n.embedpress-modal .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.embedpress-modal .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0; }\n\n.embedpress-modal .input-group-addon:first-child {\n border-right: 0; }\n\n.embedpress-modal .input-group .form-control:last-child,\n.embedpress-modal .input-group-addon:last-child,\n.embedpress-modal .input-group-btn:last-child > .btn,\n.embedpress-modal .input-group-btn:last-child > .btn-group > .btn,\n.embedpress-modal .input-group-btn:last-child > .dropdown-toggle,\n.embedpress-modal .input-group-btn:first-child > .btn:not(:first-child),\n.embedpress-modal .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0; }\n\n.embedpress-modal .input-group-addon:last-child {\n border-left: 0; }\n\n.embedpress-modal .input-group-btn {\n position: relative;\n font-size: 0;\n white-space: nowrap; }\n .embedpress-modal .input-group-btn > .btn {\n position: relative; }\n .embedpress-modal .input-group-btn > .btn + .btn {\n margin-left: -1px; }\n .embedpress-modal .input-group-btn > .btn:hover, .embedpress-modal .input-group-btn > .btn:focus, .embedpress-modal .input-group-btn > .btn:active {\n z-index: 2; }\n .embedpress-modal .input-group-btn:first-child > .btn,\n .embedpress-modal .input-group-btn:first-child > .btn-group {\n margin-right: -1px; }\n .embedpress-modal .input-group-btn:last-child > .btn,\n .embedpress-modal .input-group-btn:last-child > .btn-group {\n z-index: 2;\n margin-left: -1px; }\n\n.embedpress-modal .close {\n float: right;\n font-size: 21px;\n font-weight: bold;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n opacity: 0.2;\n filter: alpha(opacity=20); }\n .embedpress-modal .close:hover, .embedpress-modal .close:focus {\n color: #000;\n text-decoration: none;\n cursor: pointer;\n opacity: 0.5;\n filter: alpha(opacity=50); }\n\n.embedpress-modal button.close {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none; }\n\n.modal-open {\n overflow: hidden; }\n\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n -webkit-overflow-scrolling: touch;\n outline: 0; }\n .modal.fade .modal-dialog {\n -webkit-transform: translate(0, -25%);\n -ms-transform: translate(0, -25%);\n -o-transform: translate(0, -25%);\n transform: translate(0, -25%);\n -webkit-transition: -webkit-transform 0.3s ease-out;\n -moz-transition: -moz-transform 0.3s ease-out;\n -o-transition: -o-transform 0.3s ease-out;\n transition: transform 0.3s ease-out; }\n .modal.in .modal-dialog {\n -webkit-transform: translate(0, 0);\n -ms-transform: translate(0, 0);\n -o-transform: translate(0, 0);\n transform: translate(0, 0); }\n\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto; }\n\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px; }\n\n.modal-content {\n position: relative;\n background-color: #fff;\n border: 1px solid #999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-clip: padding-box;\n outline: 0; }\n\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000; }\n .modal-backdrop.fade {\n opacity: 0;\n filter: alpha(opacity=0); }\n .modal-backdrop.in {\n opacity: 0.5;\n filter: alpha(opacity=50); }\n\n.modal-header {\n padding: 15px;\n border-bottom: 1px solid #e5e5e5; }\n .modal-header:before, .modal-header:after {\n content: \" \";\n display: table; }\n .modal-header:after {\n clear: both; }\n\n.modal-header .close {\n margin-top: -2px; }\n\n.modal-title {\n margin: 0;\n line-height: 1.42857; }\n\n.modal-body {\n position: relative;\n padding: 15px; }\n\n.modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5; }\n .modal-footer:before, .modal-footer:after {\n content: \" \";\n display: table; }\n .modal-footer:after {\n clear: both; }\n .modal-footer .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0; }\n .modal-footer .btn-group .btn + .btn {\n margin-left: -1px; }\n .modal-footer .btn-block + .btn-block {\n margin-left: 0; }\n\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll; }\n\n@media (min-width: 768px) {\n .modal-dialog {\n width: 600px;\n margin: 30px auto; }\n .modal-content {\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }\n .modal-sm {\n width: 300px; } }\n\n@media (min-width: 992px) {\n .modal-lg {\n width: 900px; } }\n\n@-ms-viewport {\n width: device-width; }\n\n.visible-xs {\n display: none !important; }\n\n.visible-sm {\n display: none !important; }\n\n.visible-md {\n display: none !important; }\n\n.visible-lg {\n display: none !important; }\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important; }\n\n@media (max-width: 767px) {\n .visible-xs {\n display: block !important; }\n table.visible-xs {\n display: table !important; }\n tr.visible-xs {\n display: table-row !important; }\n th.visible-xs,\n td.visible-xs {\n display: table-cell !important; } }\n\n@media (max-width: 767px) {\n .visible-xs-block {\n display: block !important; } }\n\n@media (max-width: 767px) {\n .visible-xs-inline {\n display: inline !important; } }\n\n@media (max-width: 767px) {\n .visible-xs-inline-block {\n display: inline-block !important; } }\n\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm {\n display: block !important; }\n table.visible-sm {\n display: table !important; }\n tr.visible-sm {\n display: table-row !important; }\n th.visible-sm,\n td.visible-sm {\n display: table-cell !important; } }\n\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-block {\n display: block !important; } }\n\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline {\n display: inline !important; } }\n\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline-block {\n display: inline-block !important; } }\n\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md {\n display: block !important; }\n table.visible-md {\n display: table !important; }\n tr.visible-md {\n display: table-row !important; }\n th.visible-md,\n td.visible-md {\n display: table-cell !important; } }\n\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-block {\n display: block !important; } }\n\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline {\n display: inline !important; } }\n\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline-block {\n display: inline-block !important; } }\n\n@media (min-width: 1200px) {\n .visible-lg {\n display: block !important; }\n table.visible-lg {\n display: table !important; }\n tr.visible-lg {\n display: table-row !important; }\n th.visible-lg,\n td.visible-lg {\n display: table-cell !important; } }\n\n@media (min-width: 1200px) {\n .visible-lg-block {\n display: block !important; } }\n\n@media (min-width: 1200px) {\n .visible-lg-inline {\n display: inline !important; } }\n\n@media (min-width: 1200px) {\n .visible-lg-inline-block {\n display: inline-block !important; } }\n\n@media (max-width: 767px) {\n .hidden-xs {\n display: none !important; } }\n\n@media (min-width: 768px) and (max-width: 991px) {\n .hidden-sm {\n display: none !important; } }\n\n@media (min-width: 992px) and (max-width: 1199px) {\n .hidden-md {\n display: none !important; } }\n\n@media (min-width: 1200px) {\n .hidden-lg {\n display: none !important; } }\n\n.visible-print {\n display: none !important; }\n\n@media print {\n .visible-print {\n display: block !important; }\n table.visible-print {\n display: table !important; }\n tr.visible-print {\n display: table-row !important; }\n th.visible-print,\n td.visible-print {\n display: table-cell !important; } }\n\n.visible-print-block {\n display: none !important; }\n @media print {\n .visible-print-block {\n display: block !important; } }\n\n.visible-print-inline {\n display: none !important; }\n @media print {\n .visible-print-inline {\n display: inline !important; } }\n\n.visible-print-inline-block {\n display: none !important; }\n @media print {\n .visible-print-inline-block {\n display: inline-block !important; } }\n\n@media print {\n .hidden-print {\n display: none !important; } }\n"],"sourceRoot":"/source/"}
|
assets/css/vendor/bootstrap/bootstrap.min.css
CHANGED
|
@@ -1,14 +1,10 @@
|
|
| 1 |
/*!
|
| 2 |
-
* Bootstrap
|
|
|
|
|
|
|
|
|
|
| 3 |
* Copyright 2011-2016 Twitter, Inc.
|
| 4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 5 |
*/
|
| 6 |
|
| 7 |
-
/*!
|
| 8 |
-
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=f9591b2f58105c5fa28db0e6eba864bd)
|
| 9 |
-
* Config saved to config.json and https://gist.github.com/f9591b2f58105c5fa28db0e6eba864bd
|
| 10 |
-
*//*!
|
| 11 |
-
* Bootstrap v3.3.6 (http://getbootstrap.com)
|
| 12 |
-
* Copyright 2011-2015 Twitter, Inc.
|
| 13 |
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 14 |
-
*//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:transparent}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:transparent;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;-o-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);-webkit-background-clip:padding-box;background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}
|
| 1 |
/*!
|
| 2 |
+
* This file was generated through the Sass port of Bootstrap (https://github.com/twbs/bootstrap-sass).
|
| 3 |
+
* The following modules were used: "forms", "buttons", "button-groups", "input-groups", "close", "modals".
|
| 4 |
+
* - - - - - - - - - - - - - - - - - - - - - - - - -
|
| 5 |
+
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
| 6 |
* Copyright 2011-2016 Twitter, Inc.
|
| 7 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 8 |
*/
|
| 9 |
|
| 10 |
+
.embedpress-modal fieldset{padding:0;margin:0;border:0;min-width:0}.embedpress-modal legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}.embedpress-modal label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}.embedpress-modal input[type=search]{box-sizing:border-box}.embedpress-modal input[type=checkbox],.embedpress-modal input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}.embedpress-modal input[type=file]{display:block}.embedpress-modal input[type=range]{display:block;width:100%}.embedpress-modal select[multiple],.embedpress-modal select[size]{height:auto}.embedpress-modal input[type=checkbox]:focus,.embedpress-modal input[type=file]:focus,.embedpress-modal input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.embedpress-modal output{padding-top:7px}.embedpress-modal .form-control,.embedpress-modal output{display:block;font-size:14px;line-height:1.42857;color:#555}.embedpress-modal .form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.embedpress-modal .form-control:focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.embedpress-modal .form-control::-moz-placeholder{color:#999;opacity:1}.embedpress-modal .form-control:-ms-input-placeholder{color:#999}.embedpress-modal .form-control::-webkit-input-placeholder{color:#999}.embedpress-modal .form-control::-ms-expand{border:0;background-color:transparent}.embedpress-modal .form-control[disabled],.embedpress-modal .form-control[readonly],fieldset[disabled] .embedpress-modal .form-control{background-color:#eee;opacity:1}.embedpress-modal .form-control[disabled],fieldset[disabled] .embedpress-modal .form-control{cursor:not-allowed}.embedpress-modal textarea.form-control{height:auto}.embedpress-modal input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){.embedpress-modal input[type=date].form-control,.embedpress-modal input[type=datetime-local].form-control,.embedpress-modal input[type=month].form-control,.embedpress-modal input[type=time].form-control{line-height:34px}.embedpress-modal .input-group-sm>.input-group-btn>input[type=date].btn,.embedpress-modal .input-group-sm>.input-group-btn>input[type=datetime-local].btn,.embedpress-modal .input-group-sm>.input-group-btn>input[type=month].btn,.embedpress-modal .input-group-sm>.input-group-btn>input[type=time].btn,.embedpress-modal .input-group-sm>input[type=date].form-control,.embedpress-modal .input-group-sm>input[type=date].input-group-addon,.embedpress-modal .input-group-sm>input[type=datetime-local].form-control,.embedpress-modal .input-group-sm>input[type=datetime-local].input-group-addon,.embedpress-modal .input-group-sm>input[type=month].form-control,.embedpress-modal .input-group-sm>input[type=month].input-group-addon,.embedpress-modal .input-group-sm>input[type=time].form-control,.embedpress-modal .input-group-sm>input[type=time].input-group-addon,.embedpress-modal input[type=date].input-sm,.embedpress-modal input[type=datetime-local].input-sm,.embedpress-modal input[type=month].input-sm,.embedpress-modal input[type=time].input-sm,.input-group-sm .embedpress-modal input[type=date],.input-group-sm .embedpress-modal input[type=datetime-local],.input-group-sm .embedpress-modal input[type=month],.input-group-sm .embedpress-modal input[type=time]{line-height:30px}.embedpress-modal .input-group-lg>.input-group-btn>input[type=date].btn,.embedpress-modal .input-group-lg>.input-group-btn>input[type=datetime-local].btn,.embedpress-modal .input-group-lg>.input-group-btn>input[type=month].btn,.embedpress-modal .input-group-lg>.input-group-btn>input[type=time].btn,.embedpress-modal .input-group-lg>input[type=date].form-control,.embedpress-modal .input-group-lg>input[type=date].input-group-addon,.embedpress-modal .input-group-lg>input[type=datetime-local].form-control,.embedpress-modal .input-group-lg>input[type=datetime-local].input-group-addon,.embedpress-modal .input-group-lg>input[type=month].form-control,.embedpress-modal .input-group-lg>input[type=month].input-group-addon,.embedpress-modal .input-group-lg>input[type=time].form-control,.embedpress-modal .input-group-lg>input[type=time].input-group-addon,.embedpress-modal input[type=date].input-lg,.embedpress-modal input[type=datetime-local].input-lg,.embedpress-modal input[type=month].input-lg,.embedpress-modal input[type=time].input-lg,.input-group-lg .embedpress-modal input[type=date],.input-group-lg .embedpress-modal input[type=datetime-local],.input-group-lg .embedpress-modal input[type=month],.input-group-lg .embedpress-modal input[type=time]{line-height:46px}}.embedpress-modal .form-group{margin-bottom:15px}.embedpress-modal .checkbox,.embedpress-modal .radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.embedpress-modal .checkbox label,.embedpress-modal .radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.embedpress-modal .checkbox-inline input[type=checkbox],.embedpress-modal .checkbox input[type=checkbox],.embedpress-modal .radio-inline input[type=radio],.embedpress-modal .radio input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.embedpress-modal .checkbox+.checkbox,.embedpress-modal .radio+.radio{margin-top:-5px}.embedpress-modal .checkbox-inline,.embedpress-modal .radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.embedpress-modal .checkbox-inline+.checkbox-inline,.embedpress-modal .radio-inline+.radio-inline{margin-top:0;margin-left:10px}.embedpress-modal .checkbox-inline.disabled,.embedpress-modal .checkbox.disabled label,.embedpress-modal .radio-inline.disabled,.embedpress-modal .radio.disabled label,.embedpress-modal input[type=checkbox].disabled,.embedpress-modal input[type=checkbox][disabled],.embedpress-modal input[type=radio].disabled,.embedpress-modal input[type=radio][disabled],fieldset[disabled] .embedpress-modal .checkbox-inline,fieldset[disabled] .embedpress-modal .checkbox label,fieldset[disabled] .embedpress-modal .radio-inline,fieldset[disabled] .embedpress-modal .radio label,fieldset[disabled] .embedpress-modal input[type=checkbox],fieldset[disabled] .embedpress-modal input[type=radio]{cursor:not-allowed}.embedpress-modal .form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.embedpress-modal .form-control-static.input-lg,.embedpress-modal .form-control-static.input-sm,.embedpress-modal .input-group-lg>.form-control-static.form-control,.embedpress-modal .input-group-lg>.form-control-static.input-group-addon,.embedpress-modal .input-group-lg>.input-group-btn>.form-control-static.btn,.embedpress-modal .input-group-sm>.form-control-static.form-control,.embedpress-modal .input-group-sm>.form-control-static.input-group-addon,.embedpress-modal .input-group-sm>.input-group-btn>.form-control-static.btn{padding-left:0;padding-right:0}.embedpress-modal .input-group-sm>.form-control,.embedpress-modal .input-group-sm>.input-group-addon,.embedpress-modal .input-group-sm>.input-group-btn>.btn,.embedpress-modal .input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.embedpress-modal .input-group-sm>.input-group-btn>select.btn,.embedpress-modal .input-group-sm>select.form-control,.embedpress-modal .input-group-sm>select.input-group-addon,.embedpress-modal select.input-sm{height:30px;line-height:30px}.embedpress-modal .input-group-sm>.input-group-btn>select[multiple].btn,.embedpress-modal .input-group-sm>.input-group-btn>textarea.btn,.embedpress-modal .input-group-sm>select[multiple].form-control,.embedpress-modal .input-group-sm>select[multiple].input-group-addon,.embedpress-modal .input-group-sm>textarea.form-control,.embedpress-modal .input-group-sm>textarea.input-group-addon,.embedpress-modal select[multiple].input-sm,.embedpress-modal textarea.input-sm{height:auto}.embedpress-modal .form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.embedpress-modal .form-group-sm select.form-control{height:30px;line-height:30px}.embedpress-modal .form-group-sm select[multiple].form-control,.embedpress-modal .form-group-sm textarea.form-control{height:auto}.embedpress-modal .form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.embedpress-modal .input-group-lg>.form-control,.embedpress-modal .input-group-lg>.input-group-addon,.embedpress-modal .input-group-lg>.input-group-btn>.btn,.embedpress-modal .input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.embedpress-modal .input-group-lg>.input-group-btn>select.btn,.embedpress-modal .input-group-lg>select.form-control,.embedpress-modal .input-group-lg>select.input-group-addon,.embedpress-modal select.input-lg{height:46px;line-height:46px}.embedpress-modal .input-group-lg>.input-group-btn>select[multiple].btn,.embedpress-modal .input-group-lg>.input-group-btn>textarea.btn,.embedpress-modal .input-group-lg>select[multiple].form-control,.embedpress-modal .input-group-lg>select[multiple].input-group-addon,.embedpress-modal .input-group-lg>textarea.form-control,.embedpress-modal .input-group-lg>textarea.input-group-addon,.embedpress-modal select[multiple].input-lg,.embedpress-modal textarea.input-lg{height:auto}.embedpress-modal .form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.embedpress-modal .form-group-lg select.form-control{height:46px;line-height:46px}.embedpress-modal .form-group-lg select[multiple].form-control,.embedpress-modal .form-group-lg textarea.form-control{height:auto}.embedpress-modal .form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.33333}.embedpress-modal .has-feedback{position:relative}.embedpress-modal .has-feedback .form-control{padding-right:42.5px}.embedpress-modal .form-control-feedback{position:absolute;top:0;right:0;z-index:1;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.embedpress-modal .form-group-lg .form-control+.form-control-feedback,.embedpress-modal .input-group-lg+.form-control-feedback,.embedpress-modal .input-group-lg>.form-control+.form-control-feedback,.embedpress-modal .input-group-lg>.input-group-addon+.form-control-feedback,.embedpress-modal .input-group-lg>.input-group-btn>.btn+.form-control-feedback,.embedpress-modal .input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.embedpress-modal .form-group-sm .form-control+.form-control-feedback,.embedpress-modal .input-group-sm+.form-control-feedback,.embedpress-modal .input-group-sm>.form-control+.form-control-feedback,.embedpress-modal .input-group-sm>.input-group-addon+.form-control-feedback,.embedpress-modal .input-group-sm>.input-group-btn>.btn+.form-control-feedback,.embedpress-modal .input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.embedpress-modal .has-success .checkbox,.embedpress-modal .has-success .checkbox-inline,.embedpress-modal .has-success.checkbox-inline label,.embedpress-modal .has-success.checkbox label,.embedpress-modal .has-success .control-label,.embedpress-modal .has-success .help-block,.embedpress-modal .has-success .radio,.embedpress-modal .has-success .radio-inline,.embedpress-modal .has-success.radio-inline label,.embedpress-modal .has-success.radio label{color:#3c763d}.embedpress-modal .has-success .form-control{border-color:#3c763d;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.embedpress-modal .has-success .form-control:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.embedpress-modal .has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.embedpress-modal .has-success .form-control-feedback{color:#3c763d}.embedpress-modal .has-warning .checkbox,.embedpress-modal .has-warning .checkbox-inline,.embedpress-modal .has-warning.checkbox-inline label,.embedpress-modal .has-warning.checkbox label,.embedpress-modal .has-warning .control-label,.embedpress-modal .has-warning .help-block,.embedpress-modal .has-warning .radio,.embedpress-modal .has-warning .radio-inline,.embedpress-modal .has-warning.radio-inline label,.embedpress-modal .has-warning.radio label{color:#8a6d3b}.embedpress-modal .has-warning .form-control{border-color:#8a6d3b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.embedpress-modal .has-warning .form-control:focus{border-color:#66512c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.embedpress-modal .has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.embedpress-modal .has-warning .form-control-feedback{color:#8a6d3b}.embedpress-modal .has-error .checkbox,.embedpress-modal .has-error .checkbox-inline,.embedpress-modal .has-error.checkbox-inline label,.embedpress-modal .has-error.checkbox label,.embedpress-modal .has-error .control-label,.embedpress-modal .has-error .help-block,.embedpress-modal .has-error .radio,.embedpress-modal .has-error .radio-inline,.embedpress-modal .has-error.radio-inline label,.embedpress-modal .has-error.radio label{color:#a94442}.embedpress-modal .has-error .form-control{border-color:#a94442;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.embedpress-modal .has-error .form-control:focus{border-color:#843534;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.embedpress-modal .has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.embedpress-modal .has-error .form-control-feedback{color:#a94442}.embedpress-modal .has-feedback label~.form-control-feedback{top:25px}.embedpress-modal .has-feedback label.sr-only~.form-control-feedback{top:0}.embedpress-modal .help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.embedpress-modal .form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.embedpress-modal .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.embedpress-modal .form-inline .form-control-static{display:inline-block}.embedpress-modal .form-inline .input-group{display:inline-table;vertical-align:middle}.embedpress-modal .form-inline .input-group .form-control,.embedpress-modal .form-inline .input-group .input-group-addon,.embedpress-modal .form-inline .input-group .input-group-btn{width:auto}.embedpress-modal .form-inline .input-group>.form-control{width:100%}.embedpress-modal .form-inline .control-label{margin-bottom:0;vertical-align:middle}.embedpress-modal .form-inline .checkbox,.embedpress-modal .form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.embedpress-modal .form-inline .checkbox label,.embedpress-modal .form-inline .radio label{padding-left:0}.embedpress-modal .form-inline .checkbox input[type=checkbox],.embedpress-modal .form-inline .radio input[type=radio]{position:relative;margin-left:0}.embedpress-modal .form-inline .has-feedback .form-control-feedback{top:0}}.embedpress-modal .form-horizontal .checkbox,.embedpress-modal .form-horizontal .checkbox-inline,.embedpress-modal .form-horizontal .radio,.embedpress-modal .form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.embedpress-modal .form-horizontal .checkbox,.embedpress-modal .form-horizontal .radio{min-height:27px}.embedpress-modal .form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.embedpress-modal .form-horizontal .form-group:after,.embedpress-modal .form-horizontal .form-group:before{content:" ";display:table}.embedpress-modal .form-horizontal .form-group:after{clear:both}@media (min-width:768px){.embedpress-modal .form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.embedpress-modal .form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.embedpress-modal .form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.embedpress-modal .form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.embedpress-modal .btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.embedpress-modal .btn.active.focus,.embedpress-modal .btn.active:focus,.embedpress-modal .btn.focus,.embedpress-modal .btn:active.focus,.embedpress-modal .btn:active:focus,.embedpress-modal .btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.embedpress-modal .btn.focus,.embedpress-modal .btn:focus,.embedpress-modal .btn:hover{color:#333;text-decoration:none}.embedpress-modal .btn.active,.embedpress-modal .btn:active{outline:0;background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.embedpress-modal .btn.disabled,.embedpress-modal .btn[disabled],fieldset[disabled] .embedpress-modal .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);box-shadow:none}.embedpress-modal a.btn.disabled,fieldset[disabled] .embedpress-modal a.btn{pointer-events:none}.embedpress-modal .btn-default{color:#333;background-color:#fff;border-color:#ccc}.embedpress-modal .btn-default.focus,.embedpress-modal .btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.embedpress-modal .btn-default.active,.embedpress-modal .btn-default:active,.embedpress-modal .btn-default:hover,.open>.embedpress-modal .btn-default.dropdown-toggle{color:#333;background-color:#e6e6e6;border-color:#adadad}.embedpress-modal .btn-default.active.focus,.embedpress-modal .btn-default.active:focus,.embedpress-modal .btn-default.active:hover,.embedpress-modal .btn-default:active.focus,.embedpress-modal .btn-default:active:focus,.embedpress-modal .btn-default:active:hover,.open>.embedpress-modal .btn-default.dropdown-toggle.focus,.open>.embedpress-modal .btn-default.dropdown-toggle:focus,.open>.embedpress-modal .btn-default.dropdown-toggle:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.embedpress-modal .btn-default.active,.embedpress-modal .btn-default:active,.open>.embedpress-modal .btn-default.dropdown-toggle{background-image:none}.embedpress-modal .btn-default.disabled.focus,.embedpress-modal .btn-default.disabled:focus,.embedpress-modal .btn-default.disabled:hover,.embedpress-modal .btn-default[disabled].focus,.embedpress-modal .btn-default[disabled]:focus,.embedpress-modal .btn-default[disabled]:hover,fieldset[disabled] .embedpress-modal .btn-default.focus,fieldset[disabled] .embedpress-modal .btn-default:focus,fieldset[disabled] .embedpress-modal .btn-default:hover{background-color:#fff;border-color:#ccc}.embedpress-modal .btn-default .badge{color:#fff;background-color:#333}.embedpress-modal .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.embedpress-modal .btn-primary.focus,.embedpress-modal .btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.embedpress-modal .btn-primary.active,.embedpress-modal .btn-primary:active,.embedpress-modal .btn-primary:hover,.open>.embedpress-modal .btn-primary.dropdown-toggle{color:#fff;background-color:#286090;border-color:#204d74}.embedpress-modal .btn-primary.active.focus,.embedpress-modal .btn-primary.active:focus,.embedpress-modal .btn-primary.active:hover,.embedpress-modal .btn-primary:active.focus,.embedpress-modal .btn-primary:active:focus,.embedpress-modal .btn-primary:active:hover,.open>.embedpress-modal .btn-primary.dropdown-toggle.focus,.open>.embedpress-modal .btn-primary.dropdown-toggle:focus,.open>.embedpress-modal .btn-primary.dropdown-toggle:hover{color:#fff;background-color:#204d74;border-color:#122b40}.embedpress-modal .btn-primary.active,.embedpress-modal .btn-primary:active,.open>.embedpress-modal .btn-primary.dropdown-toggle{background-image:none}.embedpress-modal .btn-primary.disabled.focus,.embedpress-modal .btn-primary.disabled:focus,.embedpress-modal .btn-primary.disabled:hover,.embedpress-modal .btn-primary[disabled].focus,.embedpress-modal .btn-primary[disabled]:focus,.embedpress-modal .btn-primary[disabled]:hover,fieldset[disabled] .embedpress-modal .btn-primary.focus,fieldset[disabled] .embedpress-modal .btn-primary:focus,fieldset[disabled] .embedpress-modal .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.embedpress-modal .btn-primary .badge{color:#337ab7;background-color:#fff}.embedpress-modal .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.embedpress-modal .btn-success.focus,.embedpress-modal .btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.embedpress-modal .btn-success.active,.embedpress-modal .btn-success:active,.embedpress-modal .btn-success:hover,.open>.embedpress-modal .btn-success.dropdown-toggle{color:#fff;background-color:#449d44;border-color:#398439}.embedpress-modal .btn-success.active.focus,.embedpress-modal .btn-success.active:focus,.embedpress-modal .btn-success.active:hover,.embedpress-modal .btn-success:active.focus,.embedpress-modal .btn-success:active:focus,.embedpress-modal .btn-success:active:hover,.open>.embedpress-modal .btn-success.dropdown-toggle.focus,.open>.embedpress-modal .btn-success.dropdown-toggle:focus,.open>.embedpress-modal .btn-success.dropdown-toggle:hover{color:#fff;background-color:#398439;border-color:#255625}.embedpress-modal .btn-success.active,.embedpress-modal .btn-success:active,.open>.embedpress-modal .btn-success.dropdown-toggle{background-image:none}.embedpress-modal .btn-success.disabled.focus,.embedpress-modal .btn-success.disabled:focus,.embedpress-modal .btn-success.disabled:hover,.embedpress-modal .btn-success[disabled].focus,.embedpress-modal .btn-success[disabled]:focus,.embedpress-modal .btn-success[disabled]:hover,fieldset[disabled] .embedpress-modal .btn-success.focus,fieldset[disabled] .embedpress-modal .btn-success:focus,fieldset[disabled] .embedpress-modal .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.embedpress-modal .btn-success .badge{color:#5cb85c;background-color:#fff}.embedpress-modal .btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.embedpress-modal .btn-info.focus,.embedpress-modal .btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.embedpress-modal .btn-info.active,.embedpress-modal .btn-info:active,.embedpress-modal .btn-info:hover,.open>.embedpress-modal .btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;border-color:#269abc}.embedpress-modal .btn-info.active.focus,.embedpress-modal .btn-info.active:focus,.embedpress-modal .btn-info.active:hover,.embedpress-modal .btn-info:active.focus,.embedpress-modal .btn-info:active:focus,.embedpress-modal .btn-info:active:hover,.open>.embedpress-modal .btn-info.dropdown-toggle.focus,.open>.embedpress-modal .btn-info.dropdown-toggle:focus,.open>.embedpress-modal .btn-info.dropdown-toggle:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.embedpress-modal .btn-info.active,.embedpress-modal .btn-info:active,.open>.embedpress-modal .btn-info.dropdown-toggle{background-image:none}.embedpress-modal .btn-info.disabled.focus,.embedpress-modal .btn-info.disabled:focus,.embedpress-modal .btn-info.disabled:hover,.embedpress-modal .btn-info[disabled].focus,.embedpress-modal .btn-info[disabled]:focus,.embedpress-modal .btn-info[disabled]:hover,fieldset[disabled] .embedpress-modal .btn-info.focus,fieldset[disabled] .embedpress-modal .btn-info:focus,fieldset[disabled] .embedpress-modal .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.embedpress-modal .btn-info .badge{color:#5bc0de;background-color:#fff}.embedpress-modal .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.embedpress-modal .btn-warning.focus,.embedpress-modal .btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.embedpress-modal .btn-warning.active,.embedpress-modal .btn-warning:active,.embedpress-modal .btn-warning:hover,.open>.embedpress-modal .btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;border-color:#d58512}.embedpress-modal .btn-warning.active.focus,.embedpress-modal .btn-warning.active:focus,.embedpress-modal .btn-warning.active:hover,.embedpress-modal .btn-warning:active.focus,.embedpress-modal .btn-warning:active:focus,.embedpress-modal .btn-warning:active:hover,.open>.embedpress-modal .btn-warning.dropdown-toggle.focus,.open>.embedpress-modal .btn-warning.dropdown-toggle:focus,.open>.embedpress-modal .btn-warning.dropdown-toggle:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.embedpress-modal .btn-warning.active,.embedpress-modal .btn-warning:active,.open>.embedpress-modal .btn-warning.dropdown-toggle{background-image:none}.embedpress-modal .btn-warning.disabled.focus,.embedpress-modal .btn-warning.disabled:focus,.embedpress-modal .btn-warning.disabled:hover,.embedpress-modal .btn-warning[disabled].focus,.embedpress-modal .btn-warning[disabled]:focus,.embedpress-modal .btn-warning[disabled]:hover,fieldset[disabled] .embedpress-modal .btn-warning.focus,fieldset[disabled] .embedpress-modal .btn-warning:focus,fieldset[disabled] .embedpress-modal .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.embedpress-modal .btn-warning .badge{color:#f0ad4e;background-color:#fff}.embedpress-modal .btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.embedpress-modal .btn-danger.focus,.embedpress-modal .btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.embedpress-modal .btn-danger.active,.embedpress-modal .btn-danger:active,.embedpress-modal .btn-danger:hover,.open>.embedpress-modal .btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;border-color:#ac2925}.embedpress-modal .btn-danger.active.focus,.embedpress-modal .btn-danger.active:focus,.embedpress-modal .btn-danger.active:hover,.embedpress-modal .btn-danger:active.focus,.embedpress-modal .btn-danger:active:focus,.embedpress-modal .btn-danger:active:hover,.open>.embedpress-modal .btn-danger.dropdown-toggle.focus,.open>.embedpress-modal .btn-danger.dropdown-toggle:focus,.open>.embedpress-modal .btn-danger.dropdown-toggle:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.embedpress-modal .btn-danger.active,.embedpress-modal .btn-danger:active,.open>.embedpress-modal .btn-danger.dropdown-toggle{background-image:none}.embedpress-modal .btn-danger.disabled.focus,.embedpress-modal .btn-danger.disabled:focus,.embedpress-modal .btn-danger.disabled:hover,.embedpress-modal .btn-danger[disabled].focus,.embedpress-modal .btn-danger[disabled]:focus,.embedpress-modal .btn-danger[disabled]:hover,fieldset[disabled] .embedpress-modal .btn-danger.focus,fieldset[disabled] .embedpress-modal .btn-danger:focus,fieldset[disabled] .embedpress-modal .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.embedpress-modal .btn-danger .badge{color:#d9534f;background-color:#fff}.embedpress-modal .btn-link{color:#337ab7;font-weight:400;border-radius:0}.embedpress-modal .btn-link,.embedpress-modal .btn-link.active,.embedpress-modal .btn-link:active,.embedpress-modal .btn-link[disabled],fieldset[disabled] .embedpress-modal .btn-link{background-color:transparent;box-shadow:none}.embedpress-modal .btn-link,.embedpress-modal .btn-link:active,.embedpress-modal .btn-link:focus,.embedpress-modal .btn-link:hover{border-color:transparent}.embedpress-modal .btn-link:focus,.embedpress-modal .btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.embedpress-modal .btn-link[disabled]:focus,.embedpress-modal .btn-link[disabled]:hover,fieldset[disabled] .embedpress-modal .btn-link:focus,fieldset[disabled] .embedpress-modal .btn-link:hover{color:#777;text-decoration:none}.embedpress-modal .btn-group-lg>.btn,.embedpress-modal .btn-lg{padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.embedpress-modal .btn-group-sm>.btn,.embedpress-modal .btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.embedpress-modal .btn-group-xs>.btn,.embedpress-modal .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.embedpress-modal .btn-block{display:block;width:100%}.embedpress-modal .btn-block+.btn-block{margin-top:5px}.embedpress-modal input[type=button].btn-block,.embedpress-modal input[type=reset].btn-block,.embedpress-modal input[type=submit].btn-block{width:100%}.embedpress-modal .btn-group,.embedpress-modal .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.embedpress-modal .btn-group-vertical>.btn,.embedpress-modal .btn-group>.btn{position:relative;float:left}.embedpress-modal .btn-group-vertical>.btn.active,.embedpress-modal .btn-group-vertical>.btn:active,.embedpress-modal .btn-group-vertical>.btn:focus,.embedpress-modal .btn-group-vertical>.btn:hover,.embedpress-modal .btn-group>.btn.active,.embedpress-modal .btn-group>.btn:active,.embedpress-modal .btn-group>.btn:focus,.embedpress-modal .btn-group>.btn:hover{z-index:1}.embedpress-modal .btn-group .btn+.btn,.embedpress-modal .btn-group .btn+.btn-group,.embedpress-modal .btn-group .btn-group+.btn,.embedpress-modal .btn-group .btn-group+.btn-group{margin-left:-1px}.embedpress-modal .btn-toolbar{margin-left:-5px}.embedpress-modal .btn-toolbar:after,.embedpress-modal .btn-toolbar:before{content:" ";display:table}.embedpress-modal .btn-toolbar:after{clear:both}.embedpress-modal .btn-toolbar .btn,.embedpress-modal .btn-toolbar .btn-group,.embedpress-modal .btn-toolbar .input-group{float:left}.embedpress-modal .btn-toolbar>.btn,.embedpress-modal .btn-toolbar>.btn-group,.embedpress-modal .btn-toolbar>.input-group{margin-left:5px}.embedpress-modal .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.embedpress-modal .btn-group>.btn:first-child{margin-left:0}.embedpress-modal .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.embedpress-modal .btn-group>.btn:last-child:not(:first-child),.embedpress-modal .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.embedpress-modal .btn-group>.btn-group{float:left}.embedpress-modal .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.embedpress-modal .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.embedpress-modal .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.embedpress-modal .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.embedpress-modal .btn-group .dropdown-toggle:active,.embedpress-modal .btn-group.open .dropdown-toggle{outline:0}.embedpress-modal .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.embedpress-modal .btn-group-lg.btn-group>.btn+.dropdown-toggle,.embedpress-modal .btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.embedpress-modal .btn-group.open .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.embedpress-modal .btn-group.open .dropdown-toggle.btn-link{box-shadow:none}.embedpress-modal .btn .caret{margin-left:0}.embedpress-modal .btn-group-lg>.btn .caret,.embedpress-modal .btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.embedpress-modal .dropup .btn-group-lg>.btn .caret,.embedpress-modal .dropup .btn-lg .caret{border-width:0 5px 5px}.embedpress-modal .btn-group-vertical>.btn,.embedpress-modal .btn-group-vertical>.btn-group,.embedpress-modal .btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.embedpress-modal .btn-group-vertical>.btn-group:after,.embedpress-modal .btn-group-vertical>.btn-group:before{content:" ";display:table}.embedpress-modal .btn-group-vertical>.btn-group:after{clear:both}.embedpress-modal .btn-group-vertical>.btn-group>.btn{float:none}.embedpress-modal .btn-group-vertical>.btn+.btn,.embedpress-modal .btn-group-vertical>.btn+.btn-group,.embedpress-modal .btn-group-vertical>.btn-group+.btn,.embedpress-modal .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.embedpress-modal .btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.embedpress-modal .btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.embedpress-modal .btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.embedpress-modal .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.embedpress-modal .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.embedpress-modal .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.embedpress-modal .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.embedpress-modal .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.embedpress-modal .btn-group-justified>.btn,.embedpress-modal .btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.embedpress-modal .btn-group-justified>.btn-group .btn{width:100%}.embedpress-modal .btn-group-justified>.btn-group .dropdown-menu{left:auto}.embedpress-modal [data-toggle=buttons]>.btn-group>.btn input[type=checkbox],.embedpress-modal [data-toggle=buttons]>.btn-group>.btn input[type=radio],.embedpress-modal [data-toggle=buttons]>.btn input[type=checkbox],.embedpress-modal [data-toggle=buttons]>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.embedpress-modal .input-group{position:relative;display:table;border-collapse:separate}.embedpress-modal .input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.embedpress-modal .input-group .form-control{position:relative;z-index:1;float:left;width:100%;margin-bottom:0}.embedpress-modal .input-group .form-control:focus{z-index:2}.embedpress-modal .input-group-addon,.embedpress-modal .input-group-btn,.embedpress-modal .input-group .form-control{display:table-cell}.embedpress-modal .input-group-addon:not(:first-child):not(:last-child),.embedpress-modal .input-group-btn:not(:first-child):not(:last-child),.embedpress-modal .input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.embedpress-modal .input-group-addon,.embedpress-modal .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.embedpress-modal .input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.embedpress-modal .input-group-addon.input-sm,.embedpress-modal .input-group-sm>.input-group-addon,.embedpress-modal .input-group-sm>.input-group-btn>.input-group-addon.btn{padding:5px 10px;font-size:12px;border-radius:3px}.embedpress-modal .input-group-addon.input-lg,.embedpress-modal .input-group-lg>.input-group-addon,.embedpress-modal .input-group-lg>.input-group-btn>.input-group-addon.btn{padding:10px 16px;font-size:18px;border-radius:6px}.embedpress-modal .input-group-addon input[type=checkbox],.embedpress-modal .input-group-addon input[type=radio]{margin-top:0}.embedpress-modal .input-group-addon:first-child,.embedpress-modal .input-group-btn:first-child>.btn,.embedpress-modal .input-group-btn:first-child>.btn-group>.btn,.embedpress-modal .input-group-btn:first-child>.dropdown-toggle,.embedpress-modal .input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.embedpress-modal .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.embedpress-modal .input-group .form-control:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.embedpress-modal .input-group-addon:first-child{border-right:0}.embedpress-modal .input-group-addon:last-child,.embedpress-modal .input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.embedpress-modal .input-group-btn:first-child>.btn:not(:first-child),.embedpress-modal .input-group-btn:last-child>.btn,.embedpress-modal .input-group-btn:last-child>.btn-group>.btn,.embedpress-modal .input-group-btn:last-child>.dropdown-toggle,.embedpress-modal .input-group .form-control:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.embedpress-modal .input-group-addon:last-child{border-left:0}.embedpress-modal .input-group-btn{position:relative;font-size:0;white-space:nowrap}.embedpress-modal .input-group-btn>.btn{position:relative}.embedpress-modal .input-group-btn>.btn+.btn{margin-left:-1px}.embedpress-modal .input-group-btn>.btn:active,.embedpress-modal .input-group-btn>.btn:focus,.embedpress-modal .input-group-btn>.btn:hover{z-index:1}.embedpress-modal .input-group-btn:first-child>.btn,.embedpress-modal .input-group-btn:first-child>.btn-group{margin-right:-1px}.embedpress-modal .input-group-btn:last-child>.btn,.embedpress-modal .input-group-btn:last-child>.btn-group{z-index:1;margin-left:-1px}.embedpress-modal .close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.embedpress-modal .close:focus,.embedpress-modal .close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}.embedpress-modal button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal,.modal-open{overflow:hidden}.modal{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{transform:translateY(-25%);transition:transform .3s ease-out}.modal.in .modal-dialog{transform:translate(0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header:after,.modal-header:before{content:" ";display:table}.modal-header:after{clear:both}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:after,.modal-footer:before{content:" ";display:table}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}@-ms-viewport{width:device-width}.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/js/preview.js
CHANGED
|
@@ -243,13 +243,13 @@
|
|
| 243 |
if (!scriptSrc) {
|
| 244 |
self.addScriptDeclaration(wrapper, subject.html());
|
| 245 |
} else {
|
| 246 |
-
self.addScript(scriptSrc);
|
| 247 |
}
|
| 248 |
} else {
|
| 249 |
var innerScriptsList = $('script', subject);
|
| 250 |
if (innerScriptsList.length > 0) {
|
| 251 |
$.each(innerScriptsList, function(innerScriptIndex, innerScript) {
|
| 252 |
-
self.loadAsyncDynamicJsCodeFromElement(innerScript);
|
| 253 |
});
|
| 254 |
}
|
| 255 |
}
|
|
@@ -354,6 +354,11 @@
|
|
| 354 |
self.getProvidersURLPatterns = function() {
|
| 355 |
// @todo: Add option to disable/enable the providers
|
| 356 |
var urlSchemes = [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 357 |
// VideoPress
|
| 358 |
'videopress.com/v/*',
|
| 359 |
|
|
@@ -610,18 +615,23 @@
|
|
| 610 |
return patterns;
|
| 611 |
};
|
| 612 |
|
| 613 |
-
self.addScript = function(source, callback) {
|
| 614 |
-
var doc = self.editor.getDoc()
|
| 615 |
-
|
| 616 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 617 |
$script.attr('async', 1);
|
| 618 |
-
$head.append($script);
|
| 619 |
|
| 620 |
-
if (typeof callback
|
| 621 |
$script.ready(callback);
|
| 622 |
}
|
| 623 |
|
| 624 |
$script.attr('src', source);
|
|
|
|
|
|
|
| 625 |
};
|
| 626 |
|
| 627 |
self.addScriptDeclaration = function(wrapper, declaration) {
|
|
@@ -751,6 +761,8 @@
|
|
| 751 |
self.getParsedContent(url, function getParsedContentCallback(result) {
|
| 752 |
result.data.content = result.data.content.stripShortcode($data.EMBEDPRESS_SHORTCODE);
|
| 753 |
|
|
|
|
|
|
|
| 754 |
// Parse as DOM element
|
| 755 |
var $content;
|
| 756 |
try {
|
|
@@ -761,26 +773,97 @@
|
|
| 761 |
$content.html(result.data.content);
|
| 762 |
}
|
| 763 |
|
| 764 |
-
|
| 765 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 766 |
|
| 767 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 768 |
|
| 769 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 770 |
// Check if the element is a script and do not add it now (if added here it wouldn't be executed)
|
| 771 |
if (element.tagName.toLowerCase() !== 'script') {
|
| 772 |
-
|
| 773 |
|
| 774 |
if (element.tagName.toLowerCase() === 'iframe') {
|
| 775 |
$(element).ready(function() {
|
| 776 |
window.setTimeout(function() {
|
| 777 |
-
$.each(self.editor.dom.select('div.embedpress_wrapper iframe'), function(
|
| 778 |
self.fixIframeSize(iframe);
|
| 779 |
});
|
| 780 |
}, 300);
|
| 781 |
});
|
| 782 |
} else if (element.tagName.toLowerCase() === "div") {
|
| 783 |
-
if ($('img', $(element)).length || $('blockquote',
|
| 784 |
// This ensures that the embed wrapper have the same width as its content
|
| 785 |
$($(element).parents('.embedpress_wrapper').get(0)).addClass('dynamic-width');
|
| 786 |
}
|
|
@@ -789,9 +872,11 @@
|
|
| 789 |
}
|
| 790 |
}
|
| 791 |
|
| 792 |
-
|
| 793 |
});
|
| 794 |
-
}
|
|
|
|
|
|
|
| 795 |
};
|
| 796 |
|
| 797 |
self.encodeEmbedURLSpecialChars = function(content) {
|
|
@@ -895,143 +980,163 @@
|
|
| 895 |
self.JSON = tinymce.util.JSON;
|
| 896 |
self.Node = tinymce.html.Node;
|
| 897 |
|
| 898 |
-
|
| 899 |
-
|
| 900 |
-
|
| 901 |
-
|
| 902 |
-
|
| 903 |
-
|
| 904 |
-
|
| 905 |
-
|
| 906 |
-
|
| 907 |
-
|
| 908 |
-
|
| 909 |
-
|
| 910 |
-
|
| 911 |
-
self.
|
| 912 |
-
|
| 913 |
-
|
| 914 |
-
if (!subject.
|
| 915 |
-
|
|
|
|
|
|
|
| 916 |
}
|
| 917 |
-
}
|
| 918 |
|
| 919 |
-
|
| 920 |
-
|
| 921 |
-
|
| 922 |
-
|
|
|
|
| 923 |
}
|
| 924 |
-
}
|
| 925 |
|
| 926 |
-
|
| 927 |
|
| 928 |
-
|
| 929 |
-
|
| 930 |
|
| 931 |
-
|
| 932 |
-
|
| 933 |
-
|
| 934 |
-
|
| 935 |
|
| 936 |
-
|
| 937 |
|
| 938 |
-
|
| 939 |
-
|
| 940 |
-
|
| 941 |
-
|
| 942 |
-
|
| 943 |
-
|
| 944 |
|
| 945 |
-
|
| 946 |
-
|
| 947 |
-
|
| 948 |
-
|
| 949 |
-
|
| 950 |
|
| 951 |
-
|
| 952 |
-
|
| 953 |
-
|
| 954 |
|
| 955 |
-
|
| 956 |
-
|
| 957 |
-
|
| 958 |
-
|
| 959 |
|
| 960 |
-
|
| 961 |
-
|
|
|
|
| 962 |
}
|
| 963 |
-
}
|
| 964 |
});
|
| 965 |
});
|
| 966 |
-
});
|
| 967 |
|
| 968 |
-
|
| 969 |
-
|
| 970 |
-
|
| 971 |
-
|
| 972 |
-
|
| 973 |
-
|
| 974 |
-
|
| 975 |
-
|
| 976 |
-
|
| 977 |
-
|
| 978 |
-
|
| 979 |
-
|
| 980 |
-
|
| 981 |
-
|
| 982 |
-
|
| 983 |
-
|
| 984 |
-
|
| 985 |
-
|
| 986 |
-
|
| 987 |
-
|
| 988 |
-
|
| 989 |
-
|
| 990 |
-
|
| 991 |
-
|
| 992 |
-
|
| 993 |
-
|
|
|
|
| 994 |
}
|
| 995 |
-
}
|
| 996 |
|
| 997 |
-
|
| 998 |
-
|
|
|
|
| 999 |
}
|
| 1000 |
}
|
| 1001 |
-
}
|
| 1002 |
|
| 1003 |
-
|
| 1004 |
-
|
| 1005 |
|
| 1006 |
-
|
| 1007 |
|
| 1008 |
-
|
| 1009 |
-
|
|
|
|
| 1010 |
});
|
| 1011 |
-
});
|
| 1012 |
|
| 1013 |
-
|
| 1014 |
-
|
| 1015 |
-
|
| 1016 |
-
|
|
|
|
| 1017 |
});
|
| 1018 |
-
});
|
| 1019 |
|
| 1020 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1021 |
|
| 1022 |
-
//
|
| 1023 |
-
|
| 1024 |
-
|
| 1025 |
-
|
| 1026 |
-
|
| 1027 |
-
|
| 1028 |
-
|
| 1029 |
-
|
| 1030 |
-
self.editor.
|
| 1031 |
-
|
| 1032 |
-
|
| 1033 |
-
|
| 1034 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1035 |
};
|
| 1036 |
|
| 1037 |
self.fixIframeSize = function(iframe) {
|
|
@@ -1169,7 +1274,7 @@
|
|
| 1169 |
|
| 1170 |
if (e.keyCode == 8 || e.keyCode == 46) {
|
| 1171 |
if (node.nodeName.toLowerCase() === 'p') {
|
| 1172 |
-
children = $(node).children();
|
| 1173 |
if (children.length > 0) {
|
| 1174 |
$.each(children, function() {
|
| 1175 |
// On delete, make sure to remove the wrapper and children, not only the wrapper
|
|
@@ -1309,6 +1414,7 @@
|
|
| 1309 |
}
|
| 1310 |
|
| 1311 |
bootbox.dialog({
|
|
|
|
| 1312 |
title: "Editing Embed properties",
|
| 1313 |
message: '<form id="form-'+ wrapperUid +'" embedpress>'+
|
| 1314 |
'<div class="row">'+
|
| 243 |
if (!scriptSrc) {
|
| 244 |
self.addScriptDeclaration(wrapper, subject.html());
|
| 245 |
} else {
|
| 246 |
+
self.addScript(scriptSrc, null, wrapper);
|
| 247 |
}
|
| 248 |
} else {
|
| 249 |
var innerScriptsList = $('script', subject);
|
| 250 |
if (innerScriptsList.length > 0) {
|
| 251 |
$.each(innerScriptsList, function(innerScriptIndex, innerScript) {
|
| 252 |
+
self.loadAsyncDynamicJsCodeFromElement(innerScript, wrapper);
|
| 253 |
});
|
| 254 |
}
|
| 255 |
}
|
| 354 |
self.getProvidersURLPatterns = function() {
|
| 355 |
// @todo: Add option to disable/enable the providers
|
| 356 |
var urlSchemes = [
|
| 357 |
+
// PollDaddy
|
| 358 |
+
'*.polldaddy.com/s/*',
|
| 359 |
+
'polldaddy.com/poll/*',
|
| 360 |
+
'polldaddy.com/ratings/*',
|
| 361 |
+
|
| 362 |
// VideoPress
|
| 363 |
'videopress.com/v/*',
|
| 364 |
|
| 615 |
return patterns;
|
| 616 |
};
|
| 617 |
|
| 618 |
+
self.addScript = function(source, callback, wrapper) {
|
| 619 |
+
var doc = self.editor.getDoc();
|
| 620 |
+
|
| 621 |
+
if (typeof wrapper === 'undefined' || !wrapper) {
|
| 622 |
+
wrapper = $(doc.getElementsByTagName('head')[0]);
|
| 623 |
+
}
|
| 624 |
+
|
| 625 |
+
var $script = $(doc.createElement('script'));
|
| 626 |
$script.attr('async', 1);
|
|
|
|
| 627 |
|
| 628 |
+
if (typeof callback === 'function') {
|
| 629 |
$script.ready(callback);
|
| 630 |
}
|
| 631 |
|
| 632 |
$script.attr('src', source);
|
| 633 |
+
|
| 634 |
+
wrapper.append($script);
|
| 635 |
};
|
| 636 |
|
| 637 |
self.addScriptDeclaration = function(wrapper, declaration) {
|
| 761 |
self.getParsedContent(url, function getParsedContentCallback(result) {
|
| 762 |
result.data.content = result.data.content.stripShortcode($data.EMBEDPRESS_SHORTCODE);
|
| 763 |
|
| 764 |
+
var $wrapper = $(self.getElementInContentById('embedpress_wrapper_' + uid));
|
| 765 |
+
|
| 766 |
// Parse as DOM element
|
| 767 |
var $content;
|
| 768 |
try {
|
| 773 |
$content.html(result.data.content);
|
| 774 |
}
|
| 775 |
|
| 776 |
+
if (!$('iframe', $content).length) {
|
| 777 |
+
var contentWrapper = $($content).clone();
|
| 778 |
+
contentWrapper.html('');
|
| 779 |
+
|
| 780 |
+
var dom = self.editor.dom;
|
| 781 |
+
|
| 782 |
+
$wrapper.removeClass('embedpress_placeholder');
|
| 783 |
+
|
| 784 |
+
$wrapper.append(contentWrapper);
|
| 785 |
|
| 786 |
+
setTimeout(function() {
|
| 787 |
+
self.editor.undoManager.transact(function() {
|
| 788 |
+
var iframe = self.editor.getDoc().createElement('iframe');
|
| 789 |
+
iframe.src = tinymce.Env.ie ? 'javascript:""' : '';
|
| 790 |
+
iframe.frameBorder = '0';
|
| 791 |
+
iframe.allowTransparency = 'true';
|
| 792 |
+
iframe.scrolling = 'no';
|
| 793 |
+
iframe.class = "wpview-sandbox";
|
| 794 |
+
iframe.style.width = (customAttributes.width ? customAttributes.width +'px' : '100%');
|
| 795 |
|
| 796 |
+
dom.add(contentWrapper, iframe);
|
| 797 |
+
|
| 798 |
+
var iframeWindow = iframe.contentWindow;
|
| 799 |
+
var iframeDoc = iframeWindow.document;
|
| 800 |
+
|
| 801 |
+
$(iframe).load(function() {
|
| 802 |
+
if (customAttributes.height) {
|
| 803 |
+
iframe.height = customAttributes.height;
|
| 804 |
+
iframe.style.height = customAttributes.height +'px';
|
| 805 |
+
} else {
|
| 806 |
+
iframe.height = iframeDoc.body.scrollHeight;
|
| 807 |
+
}
|
| 808 |
+
});
|
| 809 |
+
|
| 810 |
+
iframeDoc.open();
|
| 811 |
+
iframeDoc.write(
|
| 812 |
+
'<!DOCTYPE html>'+
|
| 813 |
+
'<html>'+
|
| 814 |
+
'<head>'+
|
| 815 |
+
'<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />'+
|
| 816 |
+
'<style>'+
|
| 817 |
+
'html {'+
|
| 818 |
+
'background: transparent;'+
|
| 819 |
+
'padding: 0;'+
|
| 820 |
+
'margin: 0;'+
|
| 821 |
+
'}'+
|
| 822 |
+
'body#wpview-iframe-sandbox {'+
|
| 823 |
+
'background: transparent;'+
|
| 824 |
+
'padding: 1px 0 !important;'+
|
| 825 |
+
'margin: -1px 0 0 !important;'+
|
| 826 |
+
'}'+
|
| 827 |
+
'body#wpview-iframe-sandbox:before,'+
|
| 828 |
+
'body#wpview-iframe-sandbox:after {'+
|
| 829 |
+
'display: none;'+
|
| 830 |
+
'content: "";'+
|
| 831 |
+
'}'+
|
| 832 |
+
'</style>'+
|
| 833 |
+
'</head>'+
|
| 834 |
+
'<body id="wpview-iframe-sandbox" class="'+ self.editor.getBody().className +'">'+
|
| 835 |
+
$content.html() +
|
| 836 |
+
'</body>'+
|
| 837 |
+
'</html>'
|
| 838 |
+
);
|
| 839 |
+
iframeDoc.close();
|
| 840 |
+
});
|
| 841 |
+
}, 50);
|
| 842 |
+
} else {
|
| 843 |
+
$wrapper.removeClass('embedpress_placeholder');
|
| 844 |
+
|
| 845 |
+
self.appendElementsIntoWrapper($content, $wrapper);
|
| 846 |
+
}
|
| 847 |
+
});
|
| 848 |
+
};
|
| 849 |
+
|
| 850 |
+
self.appendElementsIntoWrapper = function(elementsList, wrapper) {
|
| 851 |
+
if (elementsList.length > 0) {
|
| 852 |
+
$.each(elementsList, function appendElementIntoWrapper(elementIndex, element) {
|
| 853 |
// Check if the element is a script and do not add it now (if added here it wouldn't be executed)
|
| 854 |
if (element.tagName.toLowerCase() !== 'script') {
|
| 855 |
+
wrapper.append($(element));
|
| 856 |
|
| 857 |
if (element.tagName.toLowerCase() === 'iframe') {
|
| 858 |
$(element).ready(function() {
|
| 859 |
window.setTimeout(function() {
|
| 860 |
+
$.each(self.editor.dom.select('div.embedpress_wrapper iframe'), function(elementIndex, iframe) {
|
| 861 |
self.fixIframeSize(iframe);
|
| 862 |
});
|
| 863 |
}, 300);
|
| 864 |
});
|
| 865 |
} else if (element.tagName.toLowerCase() === "div") {
|
| 866 |
+
if ($('img', $(element)).length || $('blockquote', wrapper).length) {
|
| 867 |
// This ensures that the embed wrapper have the same width as its content
|
| 868 |
$($(element).parents('.embedpress_wrapper').get(0)).addClass('dynamic-width');
|
| 869 |
}
|
| 872 |
}
|
| 873 |
}
|
| 874 |
|
| 875 |
+
self.loadAsyncDynamicJsCodeFromElement(element, wrapper);
|
| 876 |
});
|
| 877 |
+
}
|
| 878 |
+
|
| 879 |
+
return wrapper;
|
| 880 |
};
|
| 881 |
|
| 882 |
self.encodeEmbedURLSpecialChars = function(content) {
|
| 980 |
self.JSON = tinymce.util.JSON;
|
| 981 |
self.Node = tinymce.html.Node;
|
| 982 |
|
| 983 |
+
function onFindEditorCallback() {
|
| 984 |
+
self.addStylesheet(PLG_SYSTEM_ASSETS_CSS_PATH + '/font.css?' + self.params.versionUID);
|
| 985 |
+
self.addStylesheet(PLG_SYSTEM_ASSETS_CSS_PATH + '/preview.css?' + self.params.versionUID);
|
| 986 |
+
self.addStylesheet(PLG_CONTENT_ASSETS_CSS_PATH + '/embedpress.css?' + self.params.versionUID);
|
| 987 |
+
self.addEvent('paste', self.editor, self.onPaste);
|
| 988 |
+
self.addEvent('nodechange', self.editor, self.onNodeChange);
|
| 989 |
+
self.addEvent('keydown', self.editor, self.onKeyDown);
|
| 990 |
+
|
| 991 |
+
self.addEvent('undo', self.editor, self.onUndo); // TinyMCE
|
| 992 |
+
self.addEvent('undo', self.editor.undoManager, self.onUndo); // JCE
|
| 993 |
+
|
| 994 |
+
// Add the node filter that will convert the url into the preview box for the embed code
|
| 995 |
+
// @todo: Recognize <a> tags as well
|
| 996 |
+
self.editor.parser.addNodeFilter('#text', function addNodeFilterIntoParser(nodes, arg) {
|
| 997 |
+
self.each(nodes, function eachNodeInParser(node) {
|
| 998 |
+
var subject = node.value;
|
| 999 |
+
if (!subject.isValidUrl()) {
|
| 1000 |
+
if (!subject.match(SHORTCODE_REGEXP)) {
|
| 1001 |
+
return;
|
| 1002 |
+
}
|
| 1003 |
}
|
|
|
|
| 1004 |
|
| 1005 |
+
subject = self.decodeEmbedURLSpecialChars(subject);
|
| 1006 |
+
if (!subject.isValidUrl()) {
|
| 1007 |
+
if (!subject.match(SHORTCODE_REGEXP)) {
|
| 1008 |
+
return;
|
| 1009 |
+
}
|
| 1010 |
}
|
|
|
|
| 1011 |
|
| 1012 |
+
subject = node.value.stripShortcode($data.EMBEDPRESS_SHORTCODE).trim();
|
| 1013 |
|
| 1014 |
+
// These patterns need to have groups for the pre and post texts
|
| 1015 |
+
var patterns = self.getProvidersURLPatterns();
|
| 1016 |
|
| 1017 |
+
self.each(patterns, function eachPatternForNodeFilterInParser(pattern) {
|
| 1018 |
+
var regex = new RegExp(pattern),
|
| 1019 |
+
matches,
|
| 1020 |
+
value;
|
| 1021 |
|
| 1022 |
+
value = self.decodeEmbedURLSpecialChars(subject).trim();
|
| 1023 |
|
| 1024 |
+
matches = value.match(regex);
|
| 1025 |
+
if (matches !== null && !!matches.length) {
|
| 1026 |
+
var preText = matches[1];
|
| 1027 |
+
var url = self.encodeEmbedURLSpecialChars(matches[2]);
|
| 1028 |
+
var postText = matches[3];
|
| 1029 |
+
var wrapper = self.addURLsPlaceholder(node, url);
|
| 1030 |
|
| 1031 |
+
// Add the pre text if exists
|
| 1032 |
+
var text;
|
| 1033 |
+
if (preText !== '') {
|
| 1034 |
+
text = new self.Node('#text', 3);
|
| 1035 |
+
text.value = preText.trim();
|
| 1036 |
|
| 1037 |
+
// Insert before
|
| 1038 |
+
wrapper.parent.insert(text, wrapper, true);
|
| 1039 |
+
}
|
| 1040 |
|
| 1041 |
+
// Add the post text if exists
|
| 1042 |
+
if (postText !== '') {
|
| 1043 |
+
text = new self.Node('#text', 3);
|
| 1044 |
+
text.value = postText.trim();
|
| 1045 |
|
| 1046 |
+
// Insert after
|
| 1047 |
+
wrapper.parent.insert(text, wrapper, false);
|
| 1048 |
+
}
|
| 1049 |
}
|
| 1050 |
+
});
|
| 1051 |
});
|
| 1052 |
});
|
|
|
|
| 1053 |
|
| 1054 |
+
// Add the filter that will convert the preview box/embed code back to the raw url
|
| 1055 |
+
self.editor.serializer.addNodeFilter('div', function addNodeFilterIntoSerializer(nodes, arg) {
|
| 1056 |
+
self.each(nodes, function eachNodeInSerializer(node) {
|
| 1057 |
+
var nodeClasses = (node.attributes.map.class || "").split(' ');
|
| 1058 |
+
var wrapperFactoryClasses = ["embedpress_wrapper", "embedpress_placeholder"];
|
| 1059 |
+
|
| 1060 |
+
var isWrapped = nodeClasses.filter(function(n) {
|
| 1061 |
+
return wrapperFactoryClasses.indexOf(n) != -1;
|
| 1062 |
+
}).length > 0;
|
| 1063 |
+
|
| 1064 |
+
if (isWrapped) {
|
| 1065 |
+
var factoryAttributes = ["id", "style", "data-loading-text", "data-uid", "data-url"];
|
| 1066 |
+
var customAttributes = {};
|
| 1067 |
+
var dataPrefix = "data-";
|
| 1068 |
+
for (var attr in node.attributes.map) {
|
| 1069 |
+
if (attr.toLowerCase() !== "class") {
|
| 1070 |
+
if (factoryAttributes.indexOf(attr) < 0) {
|
| 1071 |
+
// Remove the "data-" prefix for more readability
|
| 1072 |
+
customAttributes[attr.replace(dataPrefix, "")] = node.attributes.map[attr];
|
| 1073 |
+
}
|
| 1074 |
+
} else {
|
| 1075 |
+
var customClasses = [];
|
| 1076 |
+
for (var wrapperClassIndex in nodeClasses) {
|
| 1077 |
+
var wrapperClass = nodeClasses[wrapperClassIndex];
|
| 1078 |
+
if (wrapperFactoryClasses.indexOf(wrapperClass) === -1) {
|
| 1079 |
+
customClasses.push(wrapperClass);
|
| 1080 |
+
}
|
| 1081 |
}
|
|
|
|
| 1082 |
|
| 1083 |
+
if (!!customClasses.length) {
|
| 1084 |
+
customAttributes.class = customClasses.join(" ");
|
| 1085 |
+
}
|
| 1086 |
}
|
| 1087 |
}
|
|
|
|
| 1088 |
|
| 1089 |
+
var text = new self.Node('#text', 3);
|
| 1090 |
+
text.value = self.decodeEmbedURLSpecialChars(node.attributes.map['data-url'].trim(), true, customAttributes);
|
| 1091 |
|
| 1092 |
+
node.replace(text);
|
| 1093 |
|
| 1094 |
+
// @todo: Remove/avoid to add empty paragraphs before and after the text every time we run this
|
| 1095 |
+
}
|
| 1096 |
+
});
|
| 1097 |
});
|
|
|
|
| 1098 |
|
| 1099 |
+
// Add event to reconfigure wrappers every time the content is loaded
|
| 1100 |
+
tinymce.each(tinymce.editors, function onEachEditor(editor) {
|
| 1101 |
+
self.addEvent('loadContent', editor, function onInitEditor(ed) {
|
| 1102 |
+
self.configureWrappers();
|
| 1103 |
+
});
|
| 1104 |
});
|
|
|
|
| 1105 |
|
| 1106 |
+
// Add the edit form
|
| 1107 |
+
|
| 1108 |
+
// @todo: This is needed only for JCE, to fix the img placeholder. Try to find out a better approach to avoid the placeholder blink
|
| 1109 |
+
window.setTimeout(
|
| 1110 |
+
function afterTimeoutOnFindEditor() {
|
| 1111 |
+
/*
|
| 1112 |
+
* This is required because after load/refresh the page, the
|
| 1113 |
+
* onLoadContent is not being triggered automatically, so
|
| 1114 |
+
* we force the event
|
| 1115 |
+
*/
|
| 1116 |
+
self.editor.load();
|
| 1117 |
+
},
|
| 1118 |
+
// If in JCE the user see the placeholder (img) instead of the iframe after load/refresh the pagr, this time is too short
|
| 1119 |
+
500
|
| 1120 |
+
);
|
| 1121 |
+
}
|
| 1122 |
|
| 1123 |
+
// Let's make sure the inner doc has been fully loaded first.
|
| 1124 |
+
var checkTimesLimit = 100;
|
| 1125 |
+
var checkIndex = 0;
|
| 1126 |
+
var statusCheckerInterval = setInterval(function() {
|
| 1127 |
+
if (checkIndex === checkTimesLimit) {
|
| 1128 |
+
clearInterval(statusCheckerInterval);
|
| 1129 |
+
alert('For some reason TinyMCE was not fully loaded yet. Please, refresh the page and try again.');
|
| 1130 |
+
} else {
|
| 1131 |
+
var doc = self.editor.getDoc();
|
| 1132 |
+
if (doc) {
|
| 1133 |
+
clearInterval(statusCheckerInterval);
|
| 1134 |
+
onFindEditorCallback();
|
| 1135 |
+
} else {
|
| 1136 |
+
checkIndex++;
|
| 1137 |
+
}
|
| 1138 |
+
}
|
| 1139 |
+
}, 250);
|
| 1140 |
};
|
| 1141 |
|
| 1142 |
self.fixIframeSize = function(iframe) {
|
| 1274 |
|
| 1275 |
if (e.keyCode == 8 || e.keyCode == 46) {
|
| 1276 |
if (node.nodeName.toLowerCase() === 'p') {
|
| 1277 |
+
var children = $(node).children();
|
| 1278 |
if (children.length > 0) {
|
| 1279 |
$.each(children, function() {
|
| 1280 |
// On delete, make sure to remove the wrapper and children, not only the wrapper
|
| 1414 |
}
|
| 1415 |
|
| 1416 |
bootbox.dialog({
|
| 1417 |
+
className: "embedpress-modal",
|
| 1418 |
title: "Editing Embed properties",
|
| 1419 |
message: '<form id="form-'+ wrapperUid +'" embedpress>'+
|
| 1420 |
'<div class="row">'+
|
assets/js/vendor/bootbox.min.js
CHANGED
|
File without changes
|
assets/js/vendor/bootstrap/bootstrap.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
| 1 |
/*!
|
| 2 |
-
* Bootstrap v3.3.
|
| 3 |
* Copyright 2011-2016 Twitter, Inc.
|
| 4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 5 |
*/
|
| 6 |
|
| 7 |
/*!
|
| 8 |
-
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=
|
| 9 |
-
* Config saved to config.json and https://gist.github.com/
|
| 10 |
*/
|
| 11 |
if (typeof jQuery === 'undefined') {
|
| 12 |
throw new Error('Bootstrap\'s JavaScript requires jQuery')
|
|
@@ -14,16 +14,16 @@ if (typeof jQuery === 'undefined') {
|
|
| 14 |
+function ($) {
|
| 15 |
'use strict';
|
| 16 |
var version = $.fn.jquery.split(' ')[0].split('.')
|
| 17 |
-
if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] >
|
| 18 |
-
throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher, but lower than version
|
| 19 |
}
|
| 20 |
}(jQuery);
|
| 21 |
|
| 22 |
/* ========================================================================
|
| 23 |
-
* Bootstrap: modal.js v3.3.
|
| 24 |
* http://getbootstrap.com/javascript/#modals
|
| 25 |
* ========================================================================
|
| 26 |
-
* Copyright 2011-
|
| 27 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 28 |
* ======================================================================== */
|
| 29 |
|
|
@@ -54,7 +54,7 @@ if (typeof jQuery === 'undefined') {
|
|
| 54 |
}
|
| 55 |
}
|
| 56 |
|
| 57 |
-
Modal.VERSION = '3.3.
|
| 58 |
|
| 59 |
Modal.TRANSITION_DURATION = 300
|
| 60 |
Modal.BACKDROP_TRANSITION_DURATION = 150
|
|
@@ -161,7 +161,9 @@ if (typeof jQuery === 'undefined') {
|
|
| 161 |
$(document)
|
| 162 |
.off('focusin.bs.modal') // guard against infinite focus loop
|
| 163 |
.on('focusin.bs.modal', $.proxy(function (e) {
|
| 164 |
-
if (
|
|
|
|
|
|
|
| 165 |
this.$element.trigger('focus')
|
| 166 |
}
|
| 167 |
}, this))
|
|
@@ -358,10 +360,10 @@ if (typeof jQuery === 'undefined') {
|
|
| 358 |
}(jQuery);
|
| 359 |
|
| 360 |
/* ========================================================================
|
| 361 |
-
* Bootstrap: transition.js v3.3.
|
| 362 |
* http://getbootstrap.com/javascript/#transitions
|
| 363 |
* ========================================================================
|
| 364 |
-
* Copyright 2011-
|
| 365 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 366 |
* ======================================================================== */
|
| 367 |
|
| 1 |
/*!
|
| 2 |
+
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
| 3 |
* Copyright 2011-2016 Twitter, Inc.
|
| 4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 5 |
*/
|
| 6 |
|
| 7 |
/*!
|
| 8 |
+
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=3388789be7b7c807ff47acdc21b4ef8f)
|
| 9 |
+
* Config saved to config.json and https://gist.github.com/3388789be7b7c807ff47acdc21b4ef8f
|
| 10 |
*/
|
| 11 |
if (typeof jQuery === 'undefined') {
|
| 12 |
throw new Error('Bootstrap\'s JavaScript requires jQuery')
|
| 14 |
+function ($) {
|
| 15 |
'use strict';
|
| 16 |
var version = $.fn.jquery.split(' ')[0].split('.')
|
| 17 |
+
if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] > 3)) {
|
| 18 |
+
throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4')
|
| 19 |
}
|
| 20 |
}(jQuery);
|
| 21 |
|
| 22 |
/* ========================================================================
|
| 23 |
+
* Bootstrap: modal.js v3.3.7
|
| 24 |
* http://getbootstrap.com/javascript/#modals
|
| 25 |
* ========================================================================
|
| 26 |
+
* Copyright 2011-2016 Twitter, Inc.
|
| 27 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 28 |
* ======================================================================== */
|
| 29 |
|
| 54 |
}
|
| 55 |
}
|
| 56 |
|
| 57 |
+
Modal.VERSION = '3.3.7'
|
| 58 |
|
| 59 |
Modal.TRANSITION_DURATION = 300
|
| 60 |
Modal.BACKDROP_TRANSITION_DURATION = 150
|
| 161 |
$(document)
|
| 162 |
.off('focusin.bs.modal') // guard against infinite focus loop
|
| 163 |
.on('focusin.bs.modal', $.proxy(function (e) {
|
| 164 |
+
if (document !== e.target &&
|
| 165 |
+
this.$element[0] !== e.target &&
|
| 166 |
+
!this.$element.has(e.target).length) {
|
| 167 |
this.$element.trigger('focus')
|
| 168 |
}
|
| 169 |
}, this))
|
| 360 |
}(jQuery);
|
| 361 |
|
| 362 |
/* ========================================================================
|
| 363 |
+
* Bootstrap: transition.js v3.3.7
|
| 364 |
* http://getbootstrap.com/javascript/#transitions
|
| 365 |
* ========================================================================
|
| 366 |
+
* Copyright 2011-2016 Twitter, Inc.
|
| 367 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 368 |
* ======================================================================== */
|
| 369 |
|
assets/js/vendor/bootstrap/bootstrap.min.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
/*!
|
| 2 |
-
* Bootstrap v3.3.
|
| 3 |
* Copyright 2011-2016 Twitter, Inc.
|
| 4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 5 |
*/
|
| 6 |
|
| 7 |
/*!
|
| 8 |
-
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=
|
| 9 |
-
* Config saved to config.json and https://gist.github.com/
|
| 10 |
*/
|
| 11 |
-
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(t){"use strict";var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||e[0]>
|
| 1 |
/*!
|
| 2 |
+
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
| 3 |
* Copyright 2011-2016 Twitter, Inc.
|
| 4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 5 |
*/
|
| 6 |
|
| 7 |
/*!
|
| 8 |
+
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=3388789be7b7c807ff47acdc21b4ef8f)
|
| 9 |
+
* Config saved to config.json and https://gist.github.com/3388789be7b7c807ff47acdc21b4ef8f
|
| 10 |
*/
|
| 11 |
+
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(t){"use strict";var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||e[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(t){"use strict";function e(e,o){return this.each(function(){var s=t(this),n=s.data("bs.modal"),r=t.extend({},i.DEFAULTS,s.data(),"object"==typeof e&&e);n||s.data("bs.modal",n=new i(this,r)),"string"==typeof e?n[e](o):r.show&&n.show(o)})}var i=function(e,i){this.options=i,this.$body=t(document.body),this.$element=t(e),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,t.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};i.VERSION="3.3.7",i.TRANSITION_DURATION=300,i.BACKDROP_TRANSITION_DURATION=150,i.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},i.prototype.toggle=function(t){return this.isShown?this.hide():this.show(t)},i.prototype.show=function(e){var o=this,s=t.Event("show.bs.modal",{relatedTarget:e});this.$element.trigger(s),this.isShown||s.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',t.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){o.$element.one("mouseup.dismiss.bs.modal",function(e){t(e.target).is(o.$element)&&(o.ignoreBackdropClick=!0)})}),this.backdrop(function(){var s=t.support.transition&&o.$element.hasClass("fade");o.$element.parent().length||o.$element.appendTo(o.$body),o.$element.show().scrollTop(0),o.adjustDialog(),s&&o.$element[0].offsetWidth,o.$element.addClass("in"),o.enforceFocus();var n=t.Event("shown.bs.modal",{relatedTarget:e});s?o.$dialog.one("bsTransitionEnd",function(){o.$element.trigger("focus").trigger(n)}).emulateTransitionEnd(i.TRANSITION_DURATION):o.$element.trigger("focus").trigger(n)}))},i.prototype.hide=function(e){e&&e.preventDefault(),e=t.Event("hide.bs.modal"),this.$element.trigger(e),this.isShown&&!e.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),t(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),t.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",t.proxy(this.hideModal,this)).emulateTransitionEnd(i.TRANSITION_DURATION):this.hideModal())},i.prototype.enforceFocus=function(){t(document).off("focusin.bs.modal").on("focusin.bs.modal",t.proxy(function(t){document===t.target||this.$element[0]===t.target||this.$element.has(t.target).length||this.$element.trigger("focus")},this))},i.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",t.proxy(function(t){27==t.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},i.prototype.resize=function(){this.isShown?t(window).on("resize.bs.modal",t.proxy(this.handleUpdate,this)):t(window).off("resize.bs.modal")},i.prototype.hideModal=function(){var t=this;this.$element.hide(),this.backdrop(function(){t.$body.removeClass("modal-open"),t.resetAdjustments(),t.resetScrollbar(),t.$element.trigger("hidden.bs.modal")})},i.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},i.prototype.backdrop=function(e){var o=this,s=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var n=t.support.transition&&s;if(this.$backdrop=t(document.createElement("div")).addClass("modal-backdrop "+s).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",t.proxy(function(t){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(t.target===t.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),n&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!e)return;n?this.$backdrop.one("bsTransitionEnd",e).emulateTransitionEnd(i.BACKDROP_TRANSITION_DURATION):e()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var r=function(){o.removeBackdrop(),e&&e()};t.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",r).emulateTransitionEnd(i.BACKDROP_TRANSITION_DURATION):r()}else e&&e()},i.prototype.handleUpdate=function(){this.adjustDialog()},i.prototype.adjustDialog=function(){var t=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},i.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},i.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth<t,this.scrollbarWidth=this.measureScrollbar()},i.prototype.setScrollbar=function(){var t=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",t+this.scrollbarWidth)},i.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},i.prototype.measureScrollbar=function(){var t=document.createElement("div");t.className="modal-scrollbar-measure",this.$body.append(t);var e=t.offsetWidth-t.clientWidth;return this.$body[0].removeChild(t),e};var o=t.fn.modal;t.fn.modal=e,t.fn.modal.Constructor=i,t.fn.modal.noConflict=function(){return t.fn.modal=o,this},t(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(i){var o=t(this),s=o.attr("href"),n=t(o.attr("data-target")||s&&s.replace(/.*(?=#[^\s]+$)/,"")),r=n.data("bs.modal")?"toggle":t.extend({remote:!/#/.test(s)&&s},n.data(),o.data());o.is("a")&&i.preventDefault(),n.one("show.bs.modal",function(t){t.isDefaultPrevented()||n.one("hidden.bs.modal",function(){o.is(":visible")&&o.trigger("focus")})}),e.call(n,r,this)})}(jQuery),+function(t){"use strict";function e(){var t=document.createElement("bootstrap"),e={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var i in e)if(void 0!==t.style[i])return{end:e[i]};return!1}t.fn.emulateTransitionEnd=function(e){var i=!1,o=this;t(this).one("bsTransitionEnd",function(){i=!0});var s=function(){i||t(o).trigger(t.support.transition.end)};return setTimeout(s,e),this},t(function(){t.support.transition=e(),t.support.transition&&(t.event.special.bsTransitionEnd={bindType:t.support.transition.end,delegateType:t.support.transition.end,handle:function(e){return t(e.target).is(this)?e.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery);
|
autoloader.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
* @author PressShack <help@pressshack.com>
|
| 5 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 6 |
* @license GPLv2 or later
|
| 7 |
-
* @since 1.0
|
| 8 |
*/
|
| 9 |
|
| 10 |
use \EmbedPress\AutoLoader;
|
|
@@ -21,4 +21,4 @@ if (!defined('EMBEDPRESS_IS_LOADED') || !class_exists($autoLoaderFullClassName))
|
|
| 21 |
|
| 22 |
AutoLoader::register(str_replace('\\', "", EMBEDPRESS_NAMESPACE), EMBEDPRESS_PATH_CORE);
|
| 23 |
}
|
| 24 |
-
unset($autoLoaderFullClassName);
|
| 4 |
* @author PressShack <help@pressshack.com>
|
| 5 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 6 |
* @license GPLv2 or later
|
| 7 |
+
* @since 1.0.0
|
| 8 |
*/
|
| 9 |
|
| 10 |
use \EmbedPress\AutoLoader;
|
| 21 |
|
| 22 |
AutoLoader::register(str_replace('\\', "", EMBEDPRESS_NAMESPACE), EMBEDPRESS_PATH_CORE);
|
| 23 |
}
|
| 24 |
+
unset($autoLoaderFullClassName);
|
changelog.txt
CHANGED
|
@@ -1,5 +1,12 @@
|
|
| 1 |
== Changelog ==
|
| 2 |
-
= 1.0 =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
Release Date: 2016-07-27
|
| 4 |
|
| 5 |
* Initial release.
|
| 1 |
== Changelog ==
|
| 2 |
+
= 1.1.0 =
|
| 3 |
+
Release Date: 2016-09-14
|
| 4 |
+
|
| 5 |
+
* Added support to PollDaddy urls;
|
| 6 |
+
* Fixed uncommon bug that was breaking the plugin on some environments;
|
| 7 |
+
* A lot of other bug fixes and enhancements.
|
| 8 |
+
|
| 9 |
+
= 1.0.0 =
|
| 10 |
Release Date: 2016-07-27
|
| 11 |
|
| 12 |
* Initial release.
|
embedpress.php
CHANGED
|
@@ -7,13 +7,13 @@
|
|
| 7 |
* @author PressShack <help@pressshack.com>
|
| 8 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 9 |
* @license GPLv2 or later
|
| 10 |
-
* @since 1.0
|
| 11 |
*
|
| 12 |
* @embedpress
|
| 13 |
* Plugin Name: EmbedPress
|
| 14 |
* Plugin URI: http://pressshack.com/embedpress/
|
| 15 |
* Description: EmbedPress lets you embed anything in WordPress! Also, you can enhance their uniqueness by passing custom parameters to each one of them.
|
| 16 |
-
* Version: 1.0
|
| 17 |
* Author: PressShack
|
| 18 |
* Author URI: http://pressshack.com/
|
| 19 |
*/
|
| 7 |
* @author PressShack <help@pressshack.com>
|
| 8 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 9 |
* @license GPLv2 or later
|
| 10 |
+
* @since 1.0.0
|
| 11 |
*
|
| 12 |
* @embedpress
|
| 13 |
* Plugin Name: EmbedPress
|
| 14 |
* Plugin URI: http://pressshack.com/embedpress/
|
| 15 |
* Description: EmbedPress lets you embed anything in WordPress! Also, you can enhance their uniqueness by passing custom parameters to each one of them.
|
| 16 |
+
* Version: 1.1.0
|
| 17 |
* Author: PressShack
|
| 18 |
* Author URI: http://pressshack.com/
|
| 19 |
*/
|
includes.php
CHANGED
|
@@ -8,7 +8,7 @@ defined('ABSPATH') or die("No direct script access allowed.");
|
|
| 8 |
* @author PressShack <help@pressshack.com>
|
| 9 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 10 |
* @license GPLv2 or later
|
| 11 |
-
* @since 1.0
|
| 12 |
*/
|
| 13 |
|
| 14 |
if (!defined('EMBEDPRESS_PLG_NAME')) {
|
|
@@ -16,7 +16,7 @@ if (!defined('EMBEDPRESS_PLG_NAME')) {
|
|
| 16 |
}
|
| 17 |
|
| 18 |
if (!defined('EMBEDPRESS_PLG_VERSION')) {
|
| 19 |
-
define('EMBEDPRESS_PLG_VERSION', "1.0");
|
| 20 |
}
|
| 21 |
|
| 22 |
if (!defined('EMBEDPRESS_PATH_BASE')) {
|
|
@@ -51,4 +51,4 @@ if (!defined('EMBEDPRESS_SHORTCODE')) {
|
|
| 51 |
require_once EMBEDPRESS_PATH_LIBRARIES ."autoload.php";
|
| 52 |
// Run the plugin autoload script
|
| 53 |
require_once EMBEDPRESS_PATH_BASE ."autoloader.php";
|
| 54 |
-
?>
|
| 8 |
* @author PressShack <help@pressshack.com>
|
| 9 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 10 |
* @license GPLv2 or later
|
| 11 |
+
* @since 1.0.0
|
| 12 |
*/
|
| 13 |
|
| 14 |
if (!defined('EMBEDPRESS_PLG_NAME')) {
|
| 16 |
}
|
| 17 |
|
| 18 |
if (!defined('EMBEDPRESS_PLG_VERSION')) {
|
| 19 |
+
define('EMBEDPRESS_PLG_VERSION', "1.1.0");
|
| 20 |
}
|
| 21 |
|
| 22 |
if (!defined('EMBEDPRESS_PATH_BASE')) {
|
| 51 |
require_once EMBEDPRESS_PATH_LIBRARIES ."autoload.php";
|
| 52 |
// Run the plugin autoload script
|
| 53 |
require_once EMBEDPRESS_PATH_BASE ."autoloader.php";
|
| 54 |
+
?>
|
providers.php
CHANGED
|
@@ -11,7 +11,7 @@
|
|
| 11 |
* @author PressShack <help@pressshack.com>
|
| 12 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 13 |
* @license GPLv2 or later
|
| 14 |
-
* @since 1.0
|
| 15 |
*/
|
| 16 |
|
| 17 |
$additionalServiceProviders = array(
|
| 11 |
* @author PressShack <help@pressshack.com>
|
| 12 |
* @copyright Copyright (C) 2016 Open Source Training, LLC. All rights reserved.
|
| 13 |
* @license GPLv2 or later
|
| 14 |
+
* @since 1.0.0
|
| 15 |
*/
|
| 16 |
|
| 17 |
$additionalServiceProviders = array(
|
readme.txt
CHANGED
|
@@ -2,8 +2,8 @@
|
|
| 2 |
Contributors: PressShack
|
| 3 |
Tags: embed, embera, embedding, pressshack, ostraining
|
| 4 |
Requires at least: 4.0
|
| 5 |
-
Tested up to: 4.
|
| 6 |
-
Stable tag: 1.0
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
|
@@ -51,7 +51,14 @@ There're two ways to install EmbedPress plugin:
|
|
| 51 |
`
|
| 52 |
|
| 53 |
== Changelog ==
|
| 54 |
-
= 1.0 =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
Release Date: 2016-07-27
|
| 56 |
|
| 57 |
* Initial release.
|
| 2 |
Contributors: PressShack
|
| 3 |
Tags: embed, embera, embedding, pressshack, ostraining
|
| 4 |
Requires at least: 4.0
|
| 5 |
+
Tested up to: 4.6.1
|
| 6 |
+
Stable tag: 1.1.0
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
| 51 |
`
|
| 52 |
|
| 53 |
== Changelog ==
|
| 54 |
+
= 1.1.0 =
|
| 55 |
+
Release Date: 2016-09-14
|
| 56 |
+
|
| 57 |
+
* Fixed uncommon bug that was breaking the plugin on some environments;
|
| 58 |
+
* Fixed bugs with PollDaddy urls;
|
| 59 |
+
* A lot of other bug fixes.
|
| 60 |
+
|
| 61 |
+
= 1.0.0 =
|
| 62 |
Release Date: 2016-07-27
|
| 63 |
|
| 64 |
* Initial release.
|
