Version Notes
Added Social Share buttons, Gravatar profile images for comments and other UI improvements
Download this release
Release Info
| Developer | TechPrimeLab Software Pvt. Ltd |
| Extension | Tpl_EventsManager |
| Version | 1.0.4 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.3 to 1.0.4
- app/code/community/Tpl/EventsManager/Block/Adminhtml/Event/Edit/Tabs.php +79 -42
- app/code/community/Tpl/EventsManager/Block/Event/Widget/Banner.php +12 -10
- app/code/community/Tpl/EventsManager/Block/Event/Widget/View.php +12 -10
- app/code/community/Tpl/EventsManager/etc/widget.xml +6 -6
- app/design/adminhtml/default/default/template/tpl_eventsmanager/form/renderer/fieldset/element.phtml +42 -104
- app/design/frontend/base/default/layout/tpl_eventsmanager.xml +24 -6
- app/design/frontend/base/default/template/tpl_eventsmanager/event/comment/form.phtml +58 -38
- app/design/frontend/base/default/template/tpl_eventsmanager/event/comment/list.phtml +82 -27
- app/design/frontend/base/default/template/tpl_eventsmanager/event/eventseo.phtml +20 -0
- app/design/frontend/base/default/template/tpl_eventsmanager/event/list.phtml +47 -22
- app/design/frontend/base/default/template/tpl_eventsmanager/event/notification.phtml +41 -28
- app/design/frontend/base/default/template/tpl_eventsmanager/event/view.phtml +139 -96
- app/design/frontend/base/default/template/tpl_eventsmanager/event/viewright.phtml +9 -9
- app/design/frontend/base/default/template/tpl_eventsmanager/event/widget/banner.phtml +10 -10
- app/design/frontend/base/default/template/tpl_eventsmanager/event/widget/link.phtml +69 -92
- app/design/frontend/base/default/template/tpl_eventsmanager/event/widget/view.phtml +30 -31
- app/design/frontend/base/default/template/tpl_eventsmanager/invitationstatus/list.phtml +3 -0
- app/design/frontend/base/default/template/tpl_eventsmanager/invitationstatus/view.phtml +3 -0
- package.xml +7 -7
- skin/frontend/base/default/css/tpl_eventsmanager/bootstrap/css/bootstrap.css +647 -5622
- skin/frontend/base/default/images/tpl_eventsmanager/close-button.svg +4 -0
- skin/frontend/base/default/images/tpl_eventsmanager/no-image-available.png +0 -0
app/code/community/Tpl/EventsManager/Block/Adminhtml/Event/Edit/Tabs.php
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
<?php
|
|
|
|
| 2 |
/**
|
| 3 |
* Tpl_EventsManager extension
|
| 4 |
*
|
|
@@ -14,6 +15,7 @@
|
|
| 14 |
* @copyright Copyright (c) 2016
|
| 15 |
* @license http://opensource.org/licenses/mit-license.php MIT License
|
| 16 |
*/
|
|
|
|
| 17 |
/**
|
| 18 |
* Event admin edit tabs
|
| 19 |
*
|
|
@@ -21,16 +23,15 @@
|
|
| 21 |
* @package Tpl_EventsManager
|
| 22 |
* @author TPL
|
| 23 |
*/
|
| 24 |
-
class Tpl_EventsManager_Block_Adminhtml_Event_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
|
| 25 |
-
|
| 26 |
/**
|
| 27 |
* Initialize Tabs
|
| 28 |
*
|
| 29 |
* @access public
|
| 30 |
* @author TPL
|
| 31 |
*/
|
| 32 |
-
public function __construct()
|
| 33 |
-
{
|
| 34 |
parent::__construct();
|
| 35 |
$this->setId('event_info_tabs');
|
| 36 |
$this->setDestElementId('edit_form');
|
|
@@ -44,61 +45,97 @@ class Tpl_EventsManager_Block_Adminhtml_Event_Edit_Tabs extends Mage_Adminhtml_B
|
|
| 44 |
* @return Tpl_EventsManager_Block_Adminhtml_Event_Edit_Tabs
|
| 45 |
* @author TPL
|
| 46 |
*/
|
| 47 |
-
protected function _prepareLayout()
|
| 48 |
-
{
|
| 49 |
$event = $this->getEvent();
|
| 50 |
$entity = Mage::getModel('eav/entity_type')
|
| 51 |
-
|
| 52 |
$attributes = Mage::getResourceModel('eav/entity_attribute_collection')
|
| 53 |
->setEntityTypeFilter($entity->getEntityTypeId());
|
| 54 |
$attributes->addFieldToFilter(
|
| 55 |
-
|
| 56 |
-
array(
|
| 57 |
-
|
| 58 |
-
)
|
| 59 |
);
|
| 60 |
$attributes->getSelect()->order('additional_table.position', 'ASC');
|
| 61 |
|
| 62 |
$this->addTab(
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
|
|
|
|
|
|
| 68 |
)
|
| 69 |
-
->setAttributes($attributes)
|
| 70 |
-
->toHtml(),
|
| 71 |
-
)
|
| 72 |
);
|
| 73 |
$seoAttributes = Mage::getResourceModel('eav/entity_attribute_collection')
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
'attribute_code',
|
| 77 |
-
|
| 78 |
-
'in' => array('meta_title', 'meta_description', 'meta_keywords')
|
| 79 |
)
|
| 80 |
-
|
| 81 |
$seoAttributes->getSelect()->order('additional_table.position', 'ASC');
|
| 82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 83 |
$this->addTab(
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 90 |
)
|
| 91 |
-
->setAttributes($seoAttributes)
|
| 92 |
-
->toHtml(),
|
| 93 |
-
)
|
| 94 |
);
|
| 95 |
$this->addTab(
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
);
|
| 103 |
return parent::_beforeToHtml();
|
| 104 |
}
|
|
@@ -110,8 +147,8 @@ class Tpl_EventsManager_Block_Adminhtml_Event_Edit_Tabs extends Mage_Adminhtml_B
|
|
| 110 |
* @return Tpl_EventsManager_Model_Event
|
| 111 |
* @author TPL
|
| 112 |
*/
|
| 113 |
-
public function getEvent()
|
| 114 |
-
{
|
| 115 |
return Mage::registry('current_event');
|
| 116 |
}
|
|
|
|
| 117 |
}
|
| 1 |
<?php
|
| 2 |
+
|
| 3 |
/**
|
| 4 |
* Tpl_EventsManager extension
|
| 5 |
*
|
| 15 |
* @copyright Copyright (c) 2016
|
| 16 |
* @license http://opensource.org/licenses/mit-license.php MIT License
|
| 17 |
*/
|
| 18 |
+
|
| 19 |
/**
|
| 20 |
* Event admin edit tabs
|
| 21 |
*
|
| 23 |
* @package Tpl_EventsManager
|
| 24 |
* @author TPL
|
| 25 |
*/
|
| 26 |
+
class Tpl_EventsManager_Block_Adminhtml_Event_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs {
|
| 27 |
+
|
| 28 |
/**
|
| 29 |
* Initialize Tabs
|
| 30 |
*
|
| 31 |
* @access public
|
| 32 |
* @author TPL
|
| 33 |
*/
|
| 34 |
+
public function __construct() {
|
|
|
|
| 35 |
parent::__construct();
|
| 36 |
$this->setId('event_info_tabs');
|
| 37 |
$this->setDestElementId('edit_form');
|
| 45 |
* @return Tpl_EventsManager_Block_Adminhtml_Event_Edit_Tabs
|
| 46 |
* @author TPL
|
| 47 |
*/
|
| 48 |
+
protected function _prepareLayout() {
|
|
|
|
| 49 |
$event = $this->getEvent();
|
| 50 |
$entity = Mage::getModel('eav/entity_type')
|
| 51 |
+
->load('tpl_eventsmanager_event', 'entity_type_code');
|
| 52 |
$attributes = Mage::getResourceModel('eav/entity_attribute_collection')
|
| 53 |
->setEntityTypeFilter($entity->getEntityTypeId());
|
| 54 |
$attributes->addFieldToFilter(
|
| 55 |
+
'attribute_code', array(
|
| 56 |
+
'nin' => array('meta_title', 'meta_description', 'meta_keywords', 'product_launch_date', 'product_launch_time', 'address', 'city', 'state', 'country', 'contact_number', 'contact_email', 'pin_code')
|
| 57 |
+
)
|
|
|
|
| 58 |
);
|
| 59 |
$attributes->getSelect()->order('additional_table.position', 'ASC');
|
| 60 |
|
| 61 |
$this->addTab(
|
| 62 |
+
'info', array(
|
| 63 |
+
'label' => Mage::helper('tpl_eventsmanager')->__('Event Information'),
|
| 64 |
+
'content' => $this->getLayout()->createBlock(
|
| 65 |
+
'tpl_eventsmanager/adminhtml_event_edit_tab_attributes'
|
| 66 |
+
)
|
| 67 |
+
->setAttributes($attributes)
|
| 68 |
+
->toHtml(),
|
| 69 |
)
|
|
|
|
|
|
|
|
|
|
| 70 |
);
|
| 71 |
$seoAttributes = Mage::getResourceModel('eav/entity_attribute_collection')
|
| 72 |
+
->setEntityTypeFilter($entity->getEntityTypeId())
|
| 73 |
+
->addFieldToFilter(
|
| 74 |
+
'attribute_code', array(
|
| 75 |
+
'in' => array('meta_title', 'meta_description', 'meta_keywords')
|
|
|
|
| 76 |
)
|
| 77 |
+
);
|
| 78 |
$seoAttributes->getSelect()->order('additional_table.position', 'ASC');
|
| 79 |
|
| 80 |
+
/* START: By Pooja Gujarathi
|
| 81 |
+
To add tabbed layout according selected type wise */
|
| 82 |
+
$productLaunchAttributes = Mage::getResourceModel('eav/entity_attribute_collection')
|
| 83 |
+
->setEntityTypeFilter($entity->getEntityTypeId())
|
| 84 |
+
->addFieldToFilter(
|
| 85 |
+
'attribute_code', array(
|
| 86 |
+
'in' => array('product_launch_date', 'product_launch_time')
|
| 87 |
+
)
|
| 88 |
+
);
|
| 89 |
$this->addTab(
|
| 90 |
+
'product-launch-events', array(
|
| 91 |
+
'label' => Mage::helper('tpl_eventsmanager')->__('Product Launch Events'),
|
| 92 |
+
'title' => Mage::helper('tpl_eventsmanager')->__('Product Launch Events'),
|
| 93 |
+
'content' => $this->getLayout()->createBlock(
|
| 94 |
+
'tpl_eventsmanager/adminhtml_event_edit_tab_attributes'
|
| 95 |
+
)
|
| 96 |
+
->setAttributes($productLaunchAttributes)
|
| 97 |
+
->toHtml(),
|
| 98 |
+
)
|
| 99 |
+
);
|
| 100 |
+
|
| 101 |
+
$localExhibitionAttributes = Mage::getResourceModel('eav/entity_attribute_collection')
|
| 102 |
+
->setEntityTypeFilter($entity->getEntityTypeId())
|
| 103 |
+
->addFieldToFilter(
|
| 104 |
+
'attribute_code', array(
|
| 105 |
+
'in' => array('address', 'city', 'state', 'country', 'contact_number', 'contact_email', 'pin_code')
|
| 106 |
)
|
|
|
|
|
|
|
|
|
|
| 107 |
);
|
| 108 |
$this->addTab(
|
| 109 |
+
'local-exhibition-events', array(
|
| 110 |
+
'label' => Mage::helper('tpl_eventsmanager')->__('Local Exhibition Events'),
|
| 111 |
+
'title' => Mage::helper('tpl_eventsmanager')->__('Local Exhibition Events'),
|
| 112 |
+
'content' => $this->getLayout()->createBlock(
|
| 113 |
+
'tpl_eventsmanager/adminhtml_event_edit_tab_attributes'
|
| 114 |
+
)
|
| 115 |
+
->setAttributes($localExhibitionAttributes)
|
| 116 |
+
->toHtml(),
|
| 117 |
+
)
|
| 118 |
+
);
|
| 119 |
+
/* END: By Pooja Gujarathi
|
| 120 |
+
To add tabbed layout according selected type wise */
|
| 121 |
+
|
| 122 |
+
$this->addTab(
|
| 123 |
+
'meta', array(
|
| 124 |
+
'label' => Mage::helper('tpl_eventsmanager')->__('Meta'),
|
| 125 |
+
'title' => Mage::helper('tpl_eventsmanager')->__('Meta'),
|
| 126 |
+
'content' => $this->getLayout()->createBlock(
|
| 127 |
+
'tpl_eventsmanager/adminhtml_event_edit_tab_attributes'
|
| 128 |
+
)
|
| 129 |
+
->setAttributes($seoAttributes)
|
| 130 |
+
->toHtml(),
|
| 131 |
+
)
|
| 132 |
+
);
|
| 133 |
+
$this->addTab(
|
| 134 |
+
'products', array(
|
| 135 |
+
'label' => Mage::helper('tpl_eventsmanager')->__('Associated products'),
|
| 136 |
+
'url' => $this->getUrl('*/*/products', array('_current' => true)),
|
| 137 |
+
'class' => 'ajax'
|
| 138 |
+
)
|
| 139 |
);
|
| 140 |
return parent::_beforeToHtml();
|
| 141 |
}
|
| 147 |
* @return Tpl_EventsManager_Model_Event
|
| 148 |
* @author TPL
|
| 149 |
*/
|
| 150 |
+
public function getEvent() {
|
|
|
|
| 151 |
return Mage::registry('current_event');
|
| 152 |
}
|
| 153 |
+
|
| 154 |
}
|
app/code/community/Tpl/EventsManager/Block/Event/Widget/Banner.php
CHANGED
|
@@ -36,16 +36,18 @@ class Tpl_EventsManager_Block_Event_Widget_Banner extends Mage_Core_Block_Templa
|
|
| 36 |
protected function _beforeToHtml()
|
| 37 |
{
|
| 38 |
parent::_beforeToHtml();
|
| 39 |
-
$eventId = $this->getData('event_id');
|
| 40 |
-
if ($eventId) {
|
| 41 |
-
$event = Mage::getModel('tpl_eventsmanager/event')
|
| 42 |
-
->setStoreId(Mage::app()->getStore()->getId())
|
| 43 |
-
->load($eventId);
|
| 44 |
-
if ($event->getStatus()) {
|
| 45 |
-
$this->setCurrentEvent($event);
|
| 46 |
-
$this->setTemplate($this->_htmlTemplate);
|
| 47 |
-
}
|
| 48 |
-
}
|
|
|
|
|
|
|
| 49 |
return $this;
|
| 50 |
}
|
| 51 |
}
|
| 36 |
protected function _beforeToHtml()
|
| 37 |
{
|
| 38 |
parent::_beforeToHtml();
|
| 39 |
+
// $eventId = $this->getData('event_id');
|
| 40 |
+
// if ($eventId) {
|
| 41 |
+
// $event = Mage::getModel('tpl_eventsmanager/event')
|
| 42 |
+
// ->setStoreId(Mage::app()->getStore()->getId())
|
| 43 |
+
// ->load($eventId);
|
| 44 |
+
// if ($event->getStatus()) {
|
| 45 |
+
// $this->setCurrentEvent($event);
|
| 46 |
+
// $this->setTemplate($this->_htmlTemplate);
|
| 47 |
+
// }
|
| 48 |
+
// }
|
| 49 |
+
|
| 50 |
+
$this->setTemplate($this->_htmlTemplate);
|
| 51 |
return $this;
|
| 52 |
}
|
| 53 |
}
|
app/code/community/Tpl/EventsManager/Block/Event/Widget/View.php
CHANGED
|
@@ -36,16 +36,18 @@ class Tpl_EventsManager_Block_Event_Widget_View extends Mage_Core_Block_Template
|
|
| 36 |
protected function _beforeToHtml()
|
| 37 |
{
|
| 38 |
parent::_beforeToHtml();
|
| 39 |
-
$eventId = $this->getData('event_id');
|
| 40 |
-
if ($eventId) {
|
| 41 |
-
$event = Mage::getModel('tpl_eventsmanager/event')
|
| 42 |
-
->setStoreId(Mage::app()->getStore()->getId())
|
| 43 |
-
->load($eventId);
|
| 44 |
-
if ($event->getStatus()) {
|
| 45 |
-
$this->setCurrentEvent($event);
|
| 46 |
-
$this->setTemplate($this->_htmlTemplate);
|
| 47 |
-
}
|
| 48 |
-
}
|
|
|
|
|
|
|
| 49 |
return $this;
|
| 50 |
}
|
| 51 |
}
|
| 36 |
protected function _beforeToHtml()
|
| 37 |
{
|
| 38 |
parent::_beforeToHtml();
|
| 39 |
+
// $eventId = $this->getData('event_id');
|
| 40 |
+
// if ($eventId) {
|
| 41 |
+
// $event = Mage::getModel('tpl_eventsmanager/event')
|
| 42 |
+
// ->setStoreId(Mage::app()->getStore()->getId())
|
| 43 |
+
// ->load($eventId);
|
| 44 |
+
// if ($event->getStatus()) {
|
| 45 |
+
// $this->setCurrentEvent($event);
|
| 46 |
+
// $this->setTemplate($this->_htmlTemplate);
|
| 47 |
+
// }
|
| 48 |
+
// }
|
| 49 |
+
|
| 50 |
+
$this->setTemplate($this->_htmlTemplate);
|
| 51 |
return $this;
|
| 52 |
}
|
| 53 |
}
|
app/code/community/Tpl/EventsManager/etc/widget.xml
CHANGED
|
@@ -21,7 +21,7 @@
|
|
| 21 |
<name>Event Calendar</name>
|
| 22 |
<description>Event Calendar widget</description>
|
| 23 |
<is_email_compatible>0</is_email_compatible>
|
| 24 |
-
<parameters>
|
| 25 |
<event_id type="complex" translate="label">
|
| 26 |
<visible>1</visible>
|
| 27 |
<required>1</required>
|
|
@@ -37,13 +37,13 @@
|
|
| 37 |
</helper_block>
|
| 38 |
<sort_order>120</sort_order>
|
| 39 |
</event_id>
|
| 40 |
-
</parameters
|
| 41 |
</eventsmanager_event_view>
|
| 42 |
<eventsmanager_event_link type="tpl_eventsmanager/event_widget_link" translate="name description" module="tpl_eventsmanager">
|
| 43 |
<name>Events Listing</name>
|
| 44 |
<description>Events Listing widget</description>
|
| 45 |
<is_email_compatible>0</is_email_compatible>
|
| 46 |
-
<parameters>
|
| 47 |
<event_id type="complex" translate="label">
|
| 48 |
<visible>1</visible>
|
| 49 |
<required>1</required>
|
|
@@ -59,13 +59,13 @@
|
|
| 59 |
</helper_block>
|
| 60 |
<sort_order>130</sort_order>
|
| 61 |
</event_id>
|
| 62 |
-
</parameters
|
| 63 |
</eventsmanager_event_link>
|
| 64 |
<eventsmanager_event_banner type="tpl_eventsmanager/event_widget_banner" translate="name description" module="tpl_eventsmanager">
|
| 65 |
<name>Events Banner</name>
|
| 66 |
<description>Events Banner widget</description>
|
| 67 |
<is_email_compatible>0</is_email_compatible>
|
| 68 |
-
<parameters>
|
| 69 |
<event_id type="complex" translate="label">
|
| 70 |
<visible>1</visible>
|
| 71 |
<required>1</required>
|
|
@@ -81,6 +81,6 @@
|
|
| 81 |
</helper_block>
|
| 82 |
<sort_order>140</sort_order>
|
| 83 |
</event_id>
|
| 84 |
-
</parameters
|
| 85 |
</eventsmanager_event_banner>
|
| 86 |
</widgets>
|
| 21 |
<name>Event Calendar</name>
|
| 22 |
<description>Event Calendar widget</description>
|
| 23 |
<is_email_compatible>0</is_email_compatible>
|
| 24 |
+
<!-- <parameters>
|
| 25 |
<event_id type="complex" translate="label">
|
| 26 |
<visible>1</visible>
|
| 27 |
<required>1</required>
|
| 37 |
</helper_block>
|
| 38 |
<sort_order>120</sort_order>
|
| 39 |
</event_id>
|
| 40 |
+
</parameters>-->
|
| 41 |
</eventsmanager_event_view>
|
| 42 |
<eventsmanager_event_link type="tpl_eventsmanager/event_widget_link" translate="name description" module="tpl_eventsmanager">
|
| 43 |
<name>Events Listing</name>
|
| 44 |
<description>Events Listing widget</description>
|
| 45 |
<is_email_compatible>0</is_email_compatible>
|
| 46 |
+
<!-- <parameters>
|
| 47 |
<event_id type="complex" translate="label">
|
| 48 |
<visible>1</visible>
|
| 49 |
<required>1</required>
|
| 59 |
</helper_block>
|
| 60 |
<sort_order>130</sort_order>
|
| 61 |
</event_id>
|
| 62 |
+
</parameters>-->
|
| 63 |
</eventsmanager_event_link>
|
| 64 |
<eventsmanager_event_banner type="tpl_eventsmanager/event_widget_banner" translate="name description" module="tpl_eventsmanager">
|
| 65 |
<name>Events Banner</name>
|
| 66 |
<description>Events Banner widget</description>
|
| 67 |
<is_email_compatible>0</is_email_compatible>
|
| 68 |
+
<!-- <parameters>
|
| 69 |
<event_id type="complex" translate="label">
|
| 70 |
<visible>1</visible>
|
| 71 |
<required>1</required>
|
| 81 |
</helper_block>
|
| 82 |
<sort_order>140</sort_order>
|
| 83 |
</event_id>
|
| 84 |
+
</parameters>-->
|
| 85 |
</eventsmanager_event_banner>
|
| 86 |
</widgets>
|
app/design/adminhtml/default/default/template/tpl_eventsmanager/form/renderer/fieldset/element.phtml
CHANGED
|
@@ -54,63 +54,62 @@ $event_types = $event_model->getResource()->getAttribute("event_type");
|
|
| 54 |
var group_id_object;
|
| 55 |
var user_email_object;
|
| 56 |
|
| 57 |
-
|
| 58 |
-
var event_type_object;
|
| 59 |
-
var thumbnail_object;
|
| 60 |
-
var banner_object;
|
| 61 |
-
var product_launch_date_object;
|
| 62 |
var product_launch_time_object;
|
| 63 |
-
var address_object;
|
| 64 |
-
var city_object;
|
| 65 |
-
var state_object;
|
| 66 |
-
var country_object;
|
| 67 |
-
var contact_number_object;
|
| 68 |
-
var contact_email_object;
|
| 69 |
-
var pin_code_object;
|
| 70 |
-
var product_launch_date_trig_object;
|
| 71 |
var from_time_object;
|
| 72 |
var end_time_objetct;
|
| 73 |
-
|
| 74 |
var color_object;
|
| 75 |
|
| 76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
var all_input_fields_in_body;
|
| 78 |
|
| 79 |
window.onload = function () {
|
| 80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
// validation for time fields
|
| 82 |
from_time_object = document.getElementById('from_time');
|
| 83 |
end_time_objetct = document.getElementById('end_time');
|
| 84 |
product_launch_time_object = document.getElementById('product_launch_time');
|
| 85 |
color_object = document.getElementById('color');
|
| 86 |
-
color_object.type='color';
|
| 87 |
-
|
| 88 |
// dosent work so trying cssText
|
| 89 |
//color_object.style.width='100px !important';
|
| 90 |
-
color_object.style.cssText ="width: 120px !important;";
|
| 91 |
-
|
| 92 |
-
//from_time_object.pattern = end_time_objetct.pattern = '([01]?[0-9]|2[0-3]):[0-5][0-9]';
|
| 93 |
-
from_time_object.type = end_time_objetct.type = product_launch_time_object.type = 'time';
|
| 94 |
-
from_time_object.placeholder = end_time_objetct.placeholder = product_launch_time_object.placeholder = 'Eg: 01:00 AM';
|
| 95 |
-
// oninvalid="setCustomValidity('Plz enter on Alphabets ')"
|
| 96 |
-
// onchange=
|
| 97 |
-
// from_time_object.oninvalid = end_time_objetct.oninvalid = 'Plz enter on Alphabets ';
|
| 98 |
-
// from_time_object.onchange = end_time_objetct.onchange = "try{setCustomValidity('')}catch(e){}";
|
| 99 |
|
| 100 |
|
|
|
|
|
|
|
| 101 |
|
| 102 |
// Event Level related variables initialization
|
| 103 |
event_level_object = document.getElementById('event_level');
|
| 104 |
group_id_object = document.getElementById('group_id');
|
| 105 |
var old_group_value = group_id_object.value;
|
| 106 |
|
| 107 |
-
<?php
|
|
|
|
| 108 |
$groups = Mage::getModel('customer/group')->getCollection();
|
| 109 |
?>
|
| 110 |
|
| 111 |
group_id_object_parent = group_id_object.parentElement;
|
| 112 |
|
| 113 |
-
//<input id="group_id" name="event[group_id]" value="asdf" class="input-text" type="text" disabled="" style="background: none 0% 0% repeat scroll rgb(234, 231, 231);">
|
| 114 |
// remove existing group input element
|
| 115 |
group_id_object_parent.removeChild(group_id_object);
|
| 116 |
|
|
@@ -137,27 +136,11 @@ $groups = Mage::getModel('customer/group')->getCollection();
|
|
| 137 |
|
| 138 |
group_id_object = document.getElementById('group_id');
|
| 139 |
user_email_object = document.getElementById('user_email');
|
| 140 |
-
|
| 141 |
-
// Event Type related variables initialization
|
| 142 |
event_type_object = document.getElementById('event_type');
|
| 143 |
-
thumbnail_object = document.getElementById('thumbnail');
|
| 144 |
-
banner_object = document.getElementById('banner');
|
| 145 |
-
product_launch_date_object = document.getElementById('product_launch_date');
|
| 146 |
-
|
| 147 |
-
address_object = document.getElementById('address');
|
| 148 |
-
city_object = document.getElementById('city');
|
| 149 |
-
state_object = document.getElementById('state');
|
| 150 |
-
country_object = document.getElementById('country');
|
| 151 |
-
contact_number_object = document.getElementById('contact_number');
|
| 152 |
-
contact_email_object = document.getElementById('contact_email');
|
| 153 |
-
pin_code_object = document.getElementById('pin_code');
|
| 154 |
-
product_launch_date_trig_object = document.getElementById('product_launch_date_trig');
|
| 155 |
-
|
| 156 |
all_input_fields_in_body = document.getElementsByTagName("input");
|
| 157 |
|
| 158 |
-
// trigger both on page load
|
| 159 |
-
|
| 160 |
|
|
|
|
| 161 |
on_event_level_select();
|
| 162 |
on_event_type_select();
|
| 163 |
|
|
@@ -170,7 +153,6 @@ $groups = Mage::getModel('customer/group')->getCollection();
|
|
| 170 |
on_event_type_select();
|
| 171 |
};
|
| 172 |
|
| 173 |
-
//console.log(event_level_object);
|
| 174 |
|
| 175 |
};
|
| 176 |
|
|
@@ -203,7 +185,7 @@ $groups = Mage::getModel('customer/group')->getCollection();
|
|
| 203 |
|
| 204 |
}
|
| 205 |
|
| 206 |
-
|
| 207 |
}
|
| 208 |
|
| 209 |
// Event Level Handles
|
|
@@ -285,76 +267,32 @@ $groups = Mage::getModel('customer/group')->getCollection();
|
|
| 285 |
// Event Type Handels
|
| 286 |
function handlesalesevent()
|
| 287 |
{
|
| 288 |
-
|
| 289 |
-
|
| 290 |
-
|
| 291 |
-
product_launch_date_object.disabled = 'disabled';
|
| 292 |
-
product_launch_date_trig_object.style.visibility = 'hidden';
|
| 293 |
-
product_launch_time_object.disabled = 'disabled';
|
| 294 |
-
address_object.disabled = 'disabled';
|
| 295 |
-
city_object.disabled = 'disabled';
|
| 296 |
-
state_object.disabled = 'disabled';
|
| 297 |
-
country_object.disabled = 'disabled';
|
| 298 |
-
contact_number_object.disabled = 'disabled';
|
| 299 |
-
contact_email_object.disabled = 'disabled';
|
| 300 |
-
pin_code_object.disabled = 'disabled';
|
| 301 |
-
//console.log('19');
|
| 302 |
-
togglecolors();
|
| 303 |
}
|
| 304 |
|
| 305 |
function handleproductlaunchevent()
|
| 306 |
{
|
| 307 |
-
|
| 308 |
-
|
| 309 |
-
|
| 310 |
-
|
| 311 |
-
banner_object.removeAttribute("disabled");
|
| 312 |
-
|
| 313 |
-
address_object.disabled = 'disabled';
|
| 314 |
-
city_object.disabled = 'disabled';
|
| 315 |
-
state_object.disabled = 'disabled';
|
| 316 |
-
country_object.disabled = 'disabled';
|
| 317 |
-
contact_number_object.disabled = 'disabled';
|
| 318 |
-
contact_email_object.disabled = 'disabled';
|
| 319 |
-
pin_code_object.disabled = 'disabled';
|
| 320 |
-
//console.log('20');
|
| 321 |
-
togglecolors();
|
| 322 |
}
|
| 323 |
|
| 324 |
function handlelocalexibitionevent()
|
| 325 |
{
|
| 326 |
-
|
| 327 |
-
|
| 328 |
-
|
| 329 |
-
|
| 330 |
-
|
| 331 |
-
country_object.removeAttribute("disabled");
|
| 332 |
-
contact_number_object.removeAttribute("disabled");
|
| 333 |
-
contact_email_object.removeAttribute("disabled");
|
| 334 |
-
pin_code_object.removeAttribute("disabled");
|
| 335 |
-
|
| 336 |
-
product_launch_date_object.disabled = 'disabled';
|
| 337 |
-
//product_launch_date_object.style.background = "rgb(234, 231, 231) none repeat scroll 0% 0%";
|
| 338 |
-
product_launch_date_trig_object.style.visibility = 'initial';
|
| 339 |
-
product_launch_time_object.disabled = 'disabled';
|
| 340 |
-
// product_launch_time_object.style.background = "rgb(234, 231, 231) none repeat scroll 0% 0%";
|
| 341 |
-
//console.log('21');
|
| 342 |
-
togglecolors();
|
| 343 |
}
|
| 344 |
|
| 345 |
function handlenotificationevent()
|
| 346 |
{
|
| 347 |
-
|
| 348 |
-
|
| 349 |
-
address_object.disabled = 'disabled';
|
| 350 |
-
city_object.disabled = 'disabled';
|
| 351 |
-
state_object.disabled = 'disabled';
|
| 352 |
-
country_object.disabled = 'disabled';
|
| 353 |
-
contact_number_object.disabled = 'disabled';
|
| 354 |
-
contact_email_object.disabled = 'disabled';
|
| 355 |
-
pin_code_object.disabled = 'disabled';
|
| 356 |
-
togglecolors();
|
| 357 |
-
//console.log('22');
|
| 358 |
}
|
| 359 |
|
| 360 |
|
| 54 |
var group_id_object;
|
| 55 |
var user_email_object;
|
| 56 |
|
| 57 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
var product_launch_time_object;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
var from_time_object;
|
| 60 |
var end_time_objetct;
|
|
|
|
| 61 |
var color_object;
|
| 62 |
|
| 63 |
|
| 64 |
+
//tab objects
|
| 65 |
+
var product_launch_events_object;
|
| 66 |
+
var local_exhibition_events_object;
|
| 67 |
+
|
| 68 |
+
|
| 69 |
+
|
| 70 |
+
|
| 71 |
var all_input_fields_in_body;
|
| 72 |
|
| 73 |
window.onload = function () {
|
| 74 |
|
| 75 |
+
//intialize tab objects
|
| 76 |
+
product_launch_events_object = document.getElementById('event_info_tabs_product-launch-events');
|
| 77 |
+
|
| 78 |
+
local_exhibition_events_object = document.getElementById('event_info_tabs_local-exhibition-events');
|
| 79 |
+
|
| 80 |
+
// hide both tabs onload
|
| 81 |
+
product_launch_events_object.style.display = 'none';
|
| 82 |
+
local_exhibition_events_object.style.display = 'none';
|
| 83 |
+
|
| 84 |
+
|
| 85 |
+
|
| 86 |
// validation for time fields
|
| 87 |
from_time_object = document.getElementById('from_time');
|
| 88 |
end_time_objetct = document.getElementById('end_time');
|
| 89 |
product_launch_time_object = document.getElementById('product_launch_time');
|
| 90 |
color_object = document.getElementById('color');
|
| 91 |
+
color_object.type = 'color';
|
| 92 |
+
|
| 93 |
// dosent work so trying cssText
|
| 94 |
//color_object.style.width='100px !important';
|
| 95 |
+
color_object.style.cssText = "width: 120px !important;";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
|
| 97 |
|
| 98 |
+
from_time_object.type = end_time_objetct.type = product_launch_time_object.type = 'time';
|
| 99 |
+
from_time_object.placeholder = end_time_objetct.placeholder = product_launch_time_object.placeholder = 'Eg: 01:00 AM';
|
| 100 |
|
| 101 |
// Event Level related variables initialization
|
| 102 |
event_level_object = document.getElementById('event_level');
|
| 103 |
group_id_object = document.getElementById('group_id');
|
| 104 |
var old_group_value = group_id_object.value;
|
| 105 |
|
| 106 |
+
<?php
|
| 107 |
+
// get all groups
|
| 108 |
$groups = Mage::getModel('customer/group')->getCollection();
|
| 109 |
?>
|
| 110 |
|
| 111 |
group_id_object_parent = group_id_object.parentElement;
|
| 112 |
|
|
|
|
| 113 |
// remove existing group input element
|
| 114 |
group_id_object_parent.removeChild(group_id_object);
|
| 115 |
|
| 136 |
|
| 137 |
group_id_object = document.getElementById('group_id');
|
| 138 |
user_email_object = document.getElementById('user_email');
|
|
|
|
|
|
|
| 139 |
event_type_object = document.getElementById('event_type');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 140 |
all_input_fields_in_body = document.getElementsByTagName("input");
|
| 141 |
|
|
|
|
|
|
|
| 142 |
|
| 143 |
+
// trigger both on page load
|
| 144 |
on_event_level_select();
|
| 145 |
on_event_type_select();
|
| 146 |
|
| 153 |
on_event_type_select();
|
| 154 |
};
|
| 155 |
|
|
|
|
| 156 |
|
| 157 |
};
|
| 158 |
|
| 185 |
|
| 186 |
}
|
| 187 |
|
| 188 |
+
|
| 189 |
}
|
| 190 |
|
| 191 |
// Event Level Handles
|
| 267 |
// Event Type Handels
|
| 268 |
function handlesalesevent()
|
| 269 |
{
|
| 270 |
+
product_launch_events_object.style.display = 'none';
|
| 271 |
+
local_exhibition_events_object.style.display = 'none';
|
| 272 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 273 |
}
|
| 274 |
|
| 275 |
function handleproductlaunchevent()
|
| 276 |
{
|
| 277 |
+
|
| 278 |
+
product_launch_events_object.style.display = 'block';
|
| 279 |
+
local_exhibition_events_object.style.display = 'none';
|
| 280 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 281 |
}
|
| 282 |
|
| 283 |
function handlelocalexibitionevent()
|
| 284 |
{
|
| 285 |
+
|
| 286 |
+
//show tab as per event type
|
| 287 |
+
product_launch_events_object.style.display = 'none';
|
| 288 |
+
local_exhibition_events_object.style.display = 'block';
|
| 289 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 290 |
}
|
| 291 |
|
| 292 |
function handlenotificationevent()
|
| 293 |
{
|
| 294 |
+
product_launch_events_object.style.display = 'none';
|
| 295 |
+
local_exhibition_events_object.style.display = 'none';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 296 |
}
|
| 297 |
|
| 298 |
|
app/design/frontend/base/default/layout/tpl_eventsmanager.xml
CHANGED
|
@@ -22,12 +22,7 @@
|
|
| 22 |
<action method="addCss">
|
| 23 |
<stylesheet>css/tpl_eventsmanager/monthly.css</stylesheet>
|
| 24 |
</action>
|
| 25 |
-
|
| 26 |
-
<action method="addCss">
|
| 27 |
-
<file helper="tpl_eventsmanager/data/checkBootstrapExist" />
|
| 28 |
-
<!-- i.e. Mage::helper('module/helper')->getJsBasedOnConfig() -->
|
| 29 |
-
</action>
|
| 30 |
-
<!-- bootstrap block -->
|
| 31 |
|
| 32 |
<action method="addJs">
|
| 33 |
<script>tpl_eventmanager/jquery.js</script>
|
|
@@ -57,6 +52,14 @@
|
|
| 57 |
</customer_account>
|
| 58 |
<tpl_eventsmanager_event_index translate="label" module="tpl_eventsmanager">
|
| 59 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
<label>Events list</label>
|
| 61 |
<reference name="root">
|
| 62 |
<action method="setTemplate">
|
|
@@ -70,6 +73,12 @@
|
|
| 70 |
</reference>
|
| 71 |
</tpl_eventsmanager_event_index>
|
| 72 |
<tpl_eventsmanager_invitationstatus_index translate="label" module="tpl_eventsmanager">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
<label>Invitations Status list</label>
|
| 74 |
<update handle="page_two_columns_left" />
|
| 75 |
<reference name="content">
|
|
@@ -77,6 +86,15 @@
|
|
| 77 |
</reference>
|
| 78 |
</tpl_eventsmanager_invitationstatus_index>
|
| 79 |
<tpl_eventsmanager_event_view translate="label" module="tpl_eventsmanager">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
<label>Event view page</label>
|
| 81 |
<reference name="root">
|
| 82 |
<action method="setTemplate">
|
| 22 |
<action method="addCss">
|
| 23 |
<stylesheet>css/tpl_eventsmanager/monthly.css</stylesheet>
|
| 24 |
</action>
|
| 25 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
<action method="addJs">
|
| 28 |
<script>tpl_eventmanager/jquery.js</script>
|
| 52 |
</customer_account>
|
| 53 |
<tpl_eventsmanager_event_index translate="label" module="tpl_eventsmanager">
|
| 54 |
|
| 55 |
+
<!-- bootstrap block First check if there exist bootstrap -->
|
| 56 |
+
<reference name="head">
|
| 57 |
+
<action method="addCss">
|
| 58 |
+
<file helper="tpl_eventsmanager/data/checkBootstrapExist" />
|
| 59 |
+
<!-- i.e. Mage::helper('module/helper')->getJsBasedOnConfig() -->
|
| 60 |
+
</action>
|
| 61 |
+
</reference>
|
| 62 |
+
<!-- bootstrap block -->
|
| 63 |
<label>Events list</label>
|
| 64 |
<reference name="root">
|
| 65 |
<action method="setTemplate">
|
| 73 |
</reference>
|
| 74 |
</tpl_eventsmanager_event_index>
|
| 75 |
<tpl_eventsmanager_invitationstatus_index translate="label" module="tpl_eventsmanager">
|
| 76 |
+
<!-- bootstrap block First check if there exist bootstrap -->
|
| 77 |
+
<action method="addCss">
|
| 78 |
+
<file helper="tpl_eventsmanager/data/checkBootstrapExist" />
|
| 79 |
+
<!-- i.e. Mage::helper('module/helper')->getJsBasedOnConfig() -->
|
| 80 |
+
</action>
|
| 81 |
+
<!-- bootstrap block -->
|
| 82 |
<label>Invitations Status list</label>
|
| 83 |
<update handle="page_two_columns_left" />
|
| 84 |
<reference name="content">
|
| 86 |
</reference>
|
| 87 |
</tpl_eventsmanager_invitationstatus_index>
|
| 88 |
<tpl_eventsmanager_event_view translate="label" module="tpl_eventsmanager">
|
| 89 |
+
<!-- bootstrap block First check if there exist bootstrap -->
|
| 90 |
+
<reference name="head">
|
| 91 |
+
<action method="addCss">
|
| 92 |
+
<file helper="tpl_eventsmanager/data/checkBootstrapExist" />
|
| 93 |
+
<!-- i.e. Mage::helper('module/helper')->getJsBasedOnConfig() -->
|
| 94 |
+
</action>
|
| 95 |
+
<block type="tpl_eventsmanager/event_view" name="eventseo" template="tpl_eventsmanager/event/eventseo.phtml" />
|
| 96 |
+
</reference>
|
| 97 |
+
<!-- bootstrap block -->
|
| 98 |
<label>Event view page</label>
|
| 99 |
<reference name="root">
|
| 100 |
<action method="setTemplate">
|
app/design/frontend/base/default/template/tpl_eventsmanager/event/comment/form.phtml
CHANGED
|
@@ -22,19 +22,30 @@
|
|
| 22 |
* @author TPL
|
| 23 |
*/
|
| 24 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
<?php
|
| 26 |
$data = $this->getCommentData();
|
| 27 |
if ($this->getEvent()) {
|
| 28 |
?>
|
| 29 |
-
<br/>
|
| 30 |
-
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 form-add
|
| 31 |
-
<h2><?php echo $this->__('
|
| 32 |
<?php if ($this->getAllowWriteCommentFlag()): ?>
|
| 33 |
<form action="<?php echo $this->getAction() ?>" method="post" id="comment-form">
|
| 34 |
<fieldset >
|
| 35 |
-
<
|
| 36 |
<?php if (Mage::getSingleton('customer/session')->isLoggedIn()): ?>
|
| 37 |
-
<
|
| 38 |
<input type="hidden" name="name" id="name_field" class="input-text required-entry" value="<?php
|
| 39 |
if ($this->escapeHtml($data->getName()) == "") {
|
| 40 |
echo 'Anonymous';
|
|
@@ -42,57 +53,64 @@ if ($this->getEvent()) {
|
|
| 42 |
echo $this->escapeHtml($data->getName());
|
| 43 |
}
|
| 44 |
?>" />
|
| 45 |
-
</
|
| 46 |
-
<
|
| 47 |
<input type="hidden" name="email" id="email_field" class="input-text required-entry validate-email" value="<?php echo $this->escapeHtml($data->getEmail()) ?>" />
|
| 48 |
-
</
|
| 49 |
<?php else: ?>
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
<
|
| 53 |
-
|
|
|
|
| 54 |
</div>
|
| 55 |
-
</
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
<
|
| 59 |
-
|
|
|
|
| 60 |
</div>
|
| 61 |
-
</
|
|
|
|
| 62 |
<?php endif; ?>
|
| 63 |
|
| 64 |
-
<
|
| 65 |
-
<label for="title_field" class="required"><em>*</em><?php echo $this->__('Comment title') ?></label>
|
| 66 |
-
<div class="
|
| 67 |
-
<input type="text" name="title" id="title_field" class=" required-entry" value="<?php echo $this->escapeHtml($data->getTitle()) ?>" required/>
|
| 68 |
</div>
|
| 69 |
-
</
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
<
|
| 73 |
-
|
|
|
|
| 74 |
</div>
|
| 75 |
-
</
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
|
|
|
|
|
|
| 84 |
</fieldset>
|
| 85 |
<div class="buttons-set">
|
| 86 |
<button type="submit" title="<?php echo $this->__('Submit Comment') ?>" class="button"><span><span><?php echo $this->__('Submit Comment') ?></span></span></button>
|
| 87 |
</div>
|
| 88 |
</form>
|
|
|
|
| 89 |
<script type="text/javascript">var commentForm = new VarienForm('comment-form');</script>
|
| 90 |
<?php else: ?>
|
| 91 |
<p class="review-nologged" id="comment-form">
|
| 92 |
<?php echo $this->__('Only registered users can write comments. Please, <a href="%s">log in</a> or <a href="%s">register</a>', $this->getLoginLink(), Mage::helper('customer')->getRegisterUrl()) ?>
|
| 93 |
</p>
|
| 94 |
<?php endif ?>
|
| 95 |
-
|
| 96 |
<?php if (Mage::getSingleton('customer/session')->isLoggedIn()): ?>
|
| 97 |
<script>
|
| 98 |
var original_name;
|
|
@@ -115,5 +133,7 @@ if ($this->getEvent()) {
|
|
| 115 |
}
|
| 116 |
</script>
|
| 117 |
<?php endif; ?>
|
|
|
|
| 118 |
<?php
|
| 119 |
-
}
|
|
|
| 22 |
* @author TPL
|
| 23 |
*/
|
| 24 |
?>
|
| 25 |
+
<style>
|
| 26 |
+
/* .comments-tile{
|
| 27 |
+
border: 1px solid rgb(247, 247, 247);
|
| 28 |
+
}*/
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
input[type="text"] {
|
| 32 |
+
width: 100%;
|
| 33 |
+
}
|
| 34 |
+
</style>
|
| 35 |
+
<div class="cms-page-view row" itemscope itemtype="http://schema.org/Event">
|
| 36 |
<?php
|
| 37 |
$data = $this->getCommentData();
|
| 38 |
if ($this->getEvent()) {
|
| 39 |
?>
|
| 40 |
+
<br/>
|
| 41 |
+
<div class="comments-tile col-xs-12 col-sm-12 col-md-12 col-lg-12 form-add " style=" padding: 25px;margin-top: 10px;">
|
| 42 |
+
<h2><?php echo $this->__('Your Comment') ?></h2>
|
| 43 |
<?php if ($this->getAllowWriteCommentFlag()): ?>
|
| 44 |
<form action="<?php echo $this->getAction() ?>" method="post" id="comment-form">
|
| 45 |
<fieldset >
|
| 46 |
+
<div class="form-list">
|
| 47 |
<?php if (Mage::getSingleton('customer/session')->isLoggedIn()): ?>
|
| 48 |
+
<div>
|
| 49 |
<input type="hidden" name="name" id="name_field" class="input-text required-entry" value="<?php
|
| 50 |
if ($this->escapeHtml($data->getName()) == "") {
|
| 51 |
echo 'Anonymous';
|
| 53 |
echo $this->escapeHtml($data->getName());
|
| 54 |
}
|
| 55 |
?>" />
|
| 56 |
+
</div>
|
| 57 |
+
<div>
|
| 58 |
<input type="hidden" name="email" id="email_field" class="input-text required-entry validate-email" value="<?php echo $this->escapeHtml($data->getEmail()) ?>" />
|
| 59 |
+
</div>
|
| 60 |
<?php else: ?>
|
| 61 |
+
|
| 62 |
+
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 ">
|
| 63 |
+
<label for="nickname_field" class="required col-xs-12"><em>*</em><?php echo $this->__('Nickname') ?></label>
|
| 64 |
+
<div class="col-xs-12 col-lg-7">
|
| 65 |
+
<input type="text" name="name" id="name_field" class="form-control required-entry" value="<?php echo 'Anonymous'; ?>" required/>
|
| 66 |
</div>
|
| 67 |
+
</div>
|
| 68 |
+
|
| 69 |
+
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 ">
|
| 70 |
+
<label for="email_field" class="required col-xs-12"><em>*</em><?php echo $this->__('E-mail') ?></label>
|
| 71 |
+
<div class="col-xs-12 col-lg-7">
|
| 72 |
+
<input type="text" name="email" id="email_field" class="required-entry form-control validate-email" value="<?php echo $this->escapeHtml($data->getEmail()) ?>" required/>
|
| 73 |
</div>
|
| 74 |
+
</div>
|
| 75 |
+
|
| 76 |
<?php endif; ?>
|
| 77 |
|
| 78 |
+
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 ">
|
| 79 |
+
<label for="title_field" class="required col-xs-12"><em>*</em><?php echo $this->__('Comment title') ?></label>
|
| 80 |
+
<div class="col-xs-12 col-lg-7">
|
| 81 |
+
<input type="text" name="title" id="title_field" class=" required-entry form-control" value="<?php echo $this->escapeHtml($data->getTitle()) ?>" required/>
|
| 82 |
</div>
|
| 83 |
+
</div>
|
| 84 |
+
|
| 85 |
+
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 ">
|
| 86 |
+
<label for="review_field" class="required col-xs-12"><em>*</em><?php echo $this->__('Comment') ?></label>
|
| 87 |
+
<div class="col-xs-12 col-lg-7">
|
| 88 |
+
<textarea name="comment" id="comment_field" class="required-entry" required><?php echo $this->escapeHtml($data->getComment()) ?></textarea>
|
| 89 |
</div>
|
| 90 |
+
</div>
|
| 91 |
+
|
| 92 |
+
</div>
|
| 93 |
+
<?php if (Mage::getSingleton('customer/session')->isLoggedIn() && Mage::getStoreConfig('tpl_eventsmanager/customsettings/anonymous_comments', Mage::app()->getStore())): ?>
|
| 94 |
+
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 ">
|
| 95 |
+
<div class="input-box col-xs-12">
|
| 96 |
+
<input type="checkbox" name="anonymous" id="anonymous_field" class="required-entry" onchange="anonymous_comment(event)" > Comment as Anonymous</input>
|
| 97 |
+
</div>
|
| 98 |
+
</div>
|
| 99 |
+
<?php endif; ?>
|
| 100 |
+
|
| 101 |
</fieldset>
|
| 102 |
<div class="buttons-set">
|
| 103 |
<button type="submit" title="<?php echo $this->__('Submit Comment') ?>" class="button"><span><span><?php echo $this->__('Submit Comment') ?></span></span></button>
|
| 104 |
</div>
|
| 105 |
</form>
|
| 106 |
+
|
| 107 |
<script type="text/javascript">var commentForm = new VarienForm('comment-form');</script>
|
| 108 |
<?php else: ?>
|
| 109 |
<p class="review-nologged" id="comment-form">
|
| 110 |
<?php echo $this->__('Only registered users can write comments. Please, <a href="%s">log in</a> or <a href="%s">register</a>', $this->getLoginLink(), Mage::helper('customer')->getRegisterUrl()) ?>
|
| 111 |
</p>
|
| 112 |
<?php endif ?>
|
| 113 |
+
|
| 114 |
<?php if (Mage::getSingleton('customer/session')->isLoggedIn()): ?>
|
| 115 |
<script>
|
| 116 |
var original_name;
|
| 133 |
}
|
| 134 |
</script>
|
| 135 |
<?php endif; ?>
|
| 136 |
+
</div>
|
| 137 |
<?php
|
| 138 |
+
}?>
|
| 139 |
+
</div>
|
app/design/frontend/base/default/template/tpl_eventsmanager/event/comment/list.phtml
CHANGED
|
@@ -22,30 +22,85 @@
|
|
| 22 |
* @author TPL
|
| 23 |
*/
|
| 24 |
?>
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
* @author TPL
|
| 23 |
*/
|
| 24 |
?>
|
| 25 |
+
<style>
|
| 26 |
+
.author{
|
| 27 |
+
font-style: italic;
|
| 28 |
+
color: #9B9B9B;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.comment-title{
|
| 32 |
+
/* font-style: italic; */
|
| 33 |
+
|
| 34 |
+
}
|
| 35 |
+
.content-tile{
|
| 36 |
+
border: 1px solid rgb(247, 247, 247);
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
.comments{
|
| 40 |
+
padding-left: 30px;
|
| 41 |
+
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
.img-gravatar{
|
| 45 |
+
text-align: -moz-center;
|
| 46 |
+
text-align: -webkit-center;
|
| 47 |
+
padding: 3px;
|
| 48 |
+
word-wrap: break-word;
|
| 49 |
+
/* border: 1px solid rgb(247, 247, 247);*/
|
| 50 |
+
}
|
| 51 |
+
.no-padding{
|
| 52 |
+
padding: 0px;
|
| 53 |
+
}
|
| 54 |
+
.event-review{
|
| 55 |
+
padding-top: 10px;
|
| 56 |
+
}
|
| 57 |
+
.pager-no-toolbar{
|
| 58 |
+
margin: 0px;
|
| 59 |
+
}
|
| 60 |
+
</style>
|
| 61 |
+
<div class="cms-page-view row" itemscope itemtype="http://schema.org/Event">
|
| 62 |
+
<div class="std col-xs-12 col-sm-12 col-md-12 col-lg-12 ">
|
| 63 |
+
<?php
|
| 64 |
+
$_event = Mage::helper('tpl_eventsmanager/event')->validateCurrentEvent();
|
| 65 |
+
if ($_event) {
|
| 66 |
+
?>
|
| 67 |
+
<?php if ($_event->getAllowComments()) : ?>
|
| 68 |
+
<?php $_comments = $this->getComments(); ?>
|
| 69 |
+
<?php if (count($_comments)) : ?>
|
| 70 |
+
<div class="event-review content-tile box-collateral box-reviews col-xs-12 col-sm-12 col-md-12 col-lg-12" id="event-reviews">
|
| 71 |
+
<h2><?php echo $this->__('Comments') ?></h2>
|
| 72 |
+
<?php echo $this->getPagerHtml() ?>
|
| 73 |
+
<br/>
|
| 74 |
+
|
| 75 |
+
<?php foreach ($_comments as $_comment): ?>
|
| 76 |
+
|
| 77 |
+
|
| 78 |
+
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12" style=" padding: 5px; border-bottom: 1px solid rgb(227, 225, 225);">
|
| 79 |
+
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2 img-gravatar">
|
| 80 |
+
<img src="http://www.gravatar.com/avatar/<?php echo md5($_comment->getEmail()); ?>" />
|
| 81 |
+
<div><?php echo $this->escapeHtml($_comment->getName()) ?></div>
|
| 82 |
+
<br/>
|
| 83 |
+
</div>
|
| 84 |
+
|
| 85 |
+
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10 no-padding" >
|
| 86 |
+
<div class="comment-title">
|
| 87 |
+
|
| 88 |
+
<strong><?php echo $this->escapeHtml($_comment->getTitle()); ?></strong>
|
| 89 |
+
<div class="pull-right"><?php echo $this->__('%s ', $this->formatDate($_comment->getCreatedAt(), 'long')) ?></div>
|
| 90 |
+
</div>
|
| 91 |
+
<div class="comments"><?php echo nl2br($this->escapeHtml($_comment->getComment())) ?></div>
|
| 92 |
+
|
| 93 |
+
</div>
|
| 94 |
+
</div>
|
| 95 |
+
<?php endforeach; ?>
|
| 96 |
+
|
| 97 |
+
<?php echo $this->getPagerHtml() ?>
|
| 98 |
+
</div>
|
| 99 |
+
<?php endif; ?>
|
| 100 |
+
<?php echo $this->getChildHtml('comment_form') ?>
|
| 101 |
+
<?php
|
| 102 |
+
endif;
|
| 103 |
+
}
|
| 104 |
+
?>
|
| 105 |
+
</div>
|
| 106 |
+
</div>
|
app/design/frontend/base/default/template/tpl_eventsmanager/event/eventseo.phtml
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
$_event = $this->getCurrentEvent();
|
| 3 |
+
$current_page_url = Mage::helper('core/url')->getCurrentUrl();
|
| 4 |
+
if($_event){
|
| 5 |
+
?>
|
| 6 |
+
<!-- Facebook meta tags -->
|
| 7 |
+
<meta property="og:url" content="<?php echo $current_page_url?>" />
|
| 8 |
+
<meta property="og:type" content="article" />
|
| 9 |
+
<meta property="og:title" content="<?php echo $_event->getEventName(); ?>" />
|
| 10 |
+
<meta property="og:description" content="<?php echo strip_tags(substr($_event->getDescription(), 0, 200)); ?>" />
|
| 11 |
+
<meta property="og:image" content="<?php if ($_event->getBanner()) : echo Mage::helper('tpl_eventsmanager/event_image')->init($_event, 'banner'); else: echo Mage::helper('tpl_eventsmanager/event_image')->init($_event, 'thumbnail'); endif; ?>" />
|
| 12 |
+
<!-- Facebook meta tags end -->
|
| 13 |
+
<!-- Twitter meta tags-->
|
| 14 |
+
<meta name="twitter:card" content="summary_large_image" />
|
| 15 |
+
<meta name="twitter:description" content="<?php echo strip_tags(substr($_event->getDescription(), 0, 200)); ?>" />
|
| 16 |
+
<meta name="twitter:title" content="<?php echo $_event->getEventName(); ?>" />
|
| 17 |
+
<meta name="twitter:image" content="<?php if ($_event->getBanner()) : echo Mage::helper('tpl_eventsmanager/event_image')->init($_event, 'banner'); else: echo Mage::helper('tpl_eventsmanager/event_image')->init($_event, 'thumbnail'); endif; ?>" />
|
| 18 |
+
<!-- Twitter meta tags end -->
|
| 19 |
+
<?php
|
| 20 |
+
}
|
app/design/frontend/base/default/template/tpl_eventsmanager/event/list.phtml
CHANGED
|
@@ -23,7 +23,24 @@
|
|
| 23 |
*/
|
| 24 |
?>
|
| 25 |
|
| 26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
<?php $_events = $this->getEvents(); ?>
|
| 28 |
<div class="page-title event-title">
|
| 29 |
<?php if (Mage::helper('tpl_eventsmanager/event')->isRssEnabled()) : ?>
|
|
@@ -36,50 +53,58 @@
|
|
| 36 |
|
| 37 |
<div class="row">
|
| 38 |
<?php foreach ($_events as $_event) : ?>
|
| 39 |
-
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12" style="padding-bottom:
|
| 40 |
|
| 41 |
-
<div class="col-xs-5 col-sm-3 col-md-2 col-lg-2">
|
| 42 |
<a href="<?php echo $_event->getEventUrl() ?>">
|
| 43 |
<?php if ($_event->getThumbnail() == "") { ?>
|
| 44 |
-
<
|
|
|
|
| 45 |
<?php } else { ?>
|
| 46 |
-
<
|
|
|
|
| 47 |
<?php } ?>
|
| 48 |
-
|
| 49 |
</div>
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
$_event->
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
</
|
| 59 |
-
|
| 60 |
-
<div class=" col-xs-12 col-sm-12 col-md-
|
| 61 |
<img style="float: left; margin-right: 8px; margin-top:3px; " height="15" width="15" src="<?php echo Mage::getBaseUrl('skin') . 'frontend/base/default/images/tpl_eventsmanager/calendar-icon.png'; ?> " />
|
| 62 |
<?php echo date('d F Y', strtotime($_event->getFromDate())) . ' (' . $_event->getFromTime() . ')'; ?> - <?php echo date('d F Y', strtotime($_event->getEndDate())) . ' (' . $_event->getEndTime() . ')'; ?>
|
| 63 |
|
| 64 |
</div>
|
| 65 |
-
<!-- <span>( <?php //echo $_event->getAttributeText('event_type');
|
| 66 |
|
| 67 |
-
<div class=" hidden-xs col-sm-12 col-md-
|
| 68 |
-
<div class="event-list-event-short-desc" style="text-align:justify;"
|
|
|
|
| 69 |
<?php echo strip_tags(substr($_event->getDescription(), 0, 200)); ?>...
|
|
|
|
|
|
|
|
|
|
| 70 |
</p>
|
| 71 |
</div>
|
| 72 |
</div>
|
| 73 |
|
| 74 |
|
| 75 |
-
|
| 76 |
|
| 77 |
<a href="<?php echo $_event->getEventUrl() ?>"><button class="button">
|
| 78 |
<span>View Detail</span></button></a>
|
| 79 |
|
| 80 |
-
</div>
|
| 81 |
</div>
|
|
|
|
| 82 |
</div>
|
|
|
|
| 83 |
<?php endforeach; ?>
|
| 84 |
</div>
|
| 85 |
<?php echo $this->getPagerHtml(); ?>
|
| 23 |
*/
|
| 24 |
?>
|
| 25 |
|
| 26 |
+
<style>
|
| 27 |
+
.no-padding{
|
| 28 |
+
padding: 0px;
|
| 29 |
+
}
|
| 30 |
+
.event-thumbnail{
|
| 31 |
+
border: 1px solid;
|
| 32 |
+
border-color: #eee;
|
| 33 |
+
}
|
| 34 |
+
</style>
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
<?php
|
| 38 |
+
if (Mage::getSingleton('core/design_package')->getPackageName() == "default" && (Mage::getSingleton('core/design_package')->getTheme('frontend') == "default")) {
|
| 39 |
+
echo "<style>.main { -moz-box-sizing: content-box; box-sizing: content-box; -webkit-box-sizing: content-box;} button.button span { -moz-box-sizing: content-box; box-sizing: content-box; -webkit-box-sizing: content-box;}</style>";
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
echo $this->getMessagesBlock()->getGroupedHtml()
|
| 43 |
+
?>
|
| 44 |
<?php $_events = $this->getEvents(); ?>
|
| 45 |
<div class="page-title event-title">
|
| 46 |
<?php if (Mage::helper('tpl_eventsmanager/event')->isRssEnabled()) : ?>
|
| 53 |
|
| 54 |
<div class="row">
|
| 55 |
<?php foreach ($_events as $_event) : ?>
|
| 56 |
+
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12" style="padding-bottom: 10px; width:100%;">
|
| 57 |
|
| 58 |
+
<div class="col-xs-5 col-sm-3 col-md-2 col-lg-2 no-padding">
|
| 59 |
<a href="<?php echo $_event->getEventUrl() ?>">
|
| 60 |
<?php if ($_event->getThumbnail() == "") { ?>
|
| 61 |
+
<div class="event-thumbnail" style="background: url(<?php echo Mage::getBaseUrl('skin') . "frontend/base/default/images/tpl_eventsmanager/no-image-available.png"; ?>) no-repeat center center; padding-bottom:100%; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;" alt="<?php echo $this->escapeHtml($_event->getEventName()); ?>" >
|
| 62 |
+
</div>
|
| 63 |
<?php } else { ?>
|
| 64 |
+
<div class="event-thumbnail" style="background: url(<?php echo Mage::helper('tpl_eventsmanager/event_image')->init($_event, 'thumbnail'); ?>) no-repeat center center; padding-bottom:100%; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;" alt="<?php echo $this->escapeHtml($_event->getEventName()); ?>">
|
| 65 |
+
</div>
|
| 66 |
<?php } ?>
|
| 67 |
+
</a>
|
| 68 |
</div>
|
| 69 |
+
<div class="col-xs-7 col-sm-8 col-md-10 col-lg-10 no-padding">
|
| 70 |
+
|
| 71 |
+
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12" style="margin: 2px auto;">
|
| 72 |
+
<div style="height:15px; width: 15px; border-radius: 2px; margin: 3px; background: <?php echo $_event->getColor(); ?>;float:right;" title="Event Color Code">
|
| 73 |
+
</div>
|
| 74 |
+
<a href="<?php echo $_event->getEventUrl() ?>">
|
| 75 |
+
<strong><?php echo $_event->getEventName(); ?></strong>
|
| 76 |
+
</a>
|
| 77 |
+
</div>
|
| 78 |
+
|
| 79 |
+
<div class=" col-xs-12 col-sm-12 col-md-12 col-lg-12 " style="margin: 2px auto;">
|
| 80 |
<img style="float: left; margin-right: 8px; margin-top:3px; " height="15" width="15" src="<?php echo Mage::getBaseUrl('skin') . 'frontend/base/default/images/tpl_eventsmanager/calendar-icon.png'; ?> " />
|
| 81 |
<?php echo date('d F Y', strtotime($_event->getFromDate())) . ' (' . $_event->getFromTime() . ')'; ?> - <?php echo date('d F Y', strtotime($_event->getEndDate())) . ' (' . $_event->getEndTime() . ')'; ?>
|
| 82 |
|
| 83 |
</div>
|
| 84 |
+
<!-- <span>( <?php //echo $_event->getAttributeText('event_type'); ?> )</span>-->
|
| 85 |
|
| 86 |
+
<div class=" hidden-xs col-sm-12 col-md-12 col-lg-12 ">
|
| 87 |
+
<div class="event-list-event-short-desc" style="text-align:justify;">
|
| 88 |
+
<p>
|
| 89 |
<?php echo strip_tags(substr($_event->getDescription(), 0, 200)); ?>...
|
| 90 |
+
<a href="<?php echo $_event->getEventUrl() ?>">
|
| 91 |
+
<span>More</span>
|
| 92 |
+
</a>
|
| 93 |
</p>
|
| 94 |
</div>
|
| 95 |
</div>
|
| 96 |
|
| 97 |
|
| 98 |
+
<?php /* <div class="col-xs-12 col-sm-12 col-md-2 col-lg-2" style="padding: 5px;">
|
| 99 |
|
| 100 |
<a href="<?php echo $_event->getEventUrl() ?>"><button class="button">
|
| 101 |
<span>View Detail</span></button></a>
|
| 102 |
|
| 103 |
+
</div> */?>
|
| 104 |
</div>
|
| 105 |
+
|
| 106 |
</div>
|
| 107 |
+
<hr class="divider" style="display: flex; width: 97%; margin: 10px auto; " />
|
| 108 |
<?php endforeach; ?>
|
| 109 |
</div>
|
| 110 |
<?php echo $this->getPagerHtml(); ?>
|
app/design/frontend/base/default/template/tpl_eventsmanager/event/notification.phtml
CHANGED
|
@@ -22,34 +22,47 @@
|
|
| 22 |
* @author TPL
|
| 23 |
*/
|
| 24 |
?>
|
| 25 |
-
<?php
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
<?php
|
| 32 |
-
foreach ($_notification_events as $event) {
|
| 33 |
-
$temp = array();
|
| 34 |
-
if (!empty(Mage::getSingleton('core/session')->getData('closedevents'))) {
|
| 35 |
-
$temp = Mage::getSingleton('core/session')->getData('closedevents');
|
| 36 |
-
}
|
| 37 |
-
// not in
|
| 38 |
-
if (!in_array($event->getEntityId(), $temp)) {
|
| 39 |
-
?>
|
| 40 |
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
|
| 51 |
-
|
|
|
|
|
|
|
| 52 |
</ul>
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
* @author TPL
|
| 23 |
*/
|
| 24 |
?>
|
| 25 |
+
<?php
|
| 26 |
+
$_notification_events = $this->getEvents();
|
| 27 |
+
if (count($_notification_events) && count(Mage::getSingleton('core/session')->getData('closedevents')) != count($_notification_events)):
|
| 28 |
+
|
| 29 |
+
foreach ($_notification_events as $event) {
|
| 30 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
|
| 32 |
+
<?php
|
| 33 |
+
$temp = array();
|
| 34 |
+
if (!empty(Mage::getSingleton('core/session')->getData('closedevents'))) {
|
| 35 |
+
$temp = Mage::getSingleton('core/session')->getData('closedevents');
|
| 36 |
+
}
|
| 37 |
+
// not in
|
| 38 |
+
if (!in_array($event->getEntityId(), $temp)) {
|
| 39 |
+
?>
|
| 40 |
+
<ul class="messages">
|
| 41 |
+
<li class="notice-msg" >
|
| 42 |
+
<ul>
|
| 43 |
+
<li style="overflow: auto;">
|
| 44 |
+
<a style="text-decoration: none;" href="<?php echo $event->getEventUrl() ?>">
|
| 45 |
+
<span style=" display: inline-block;"><?php
|
| 46 |
+
echo $event->getEventName();
|
| 47 |
+
?></span></a>
|
| 48 |
+
<span class="actions" style="float: right; display: inline-block; top: 0px; position: inherit;" ><a id="notification-button" href="<?php echo $event->getEventUrl() ?>"><button style="padding: 1px 15px;" class="button"><span><span>View Detail</span></span></button></a>
|
| 49 |
+
<a href="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB); ?>index.php/tpl_eventsmanager/event/closenotification?eventid=<?php echo $event->getEntityId(); ?>"><img style="float: right; margin-top: 3px;" height="15" width="15" src="<?php echo Mage::getBaseUrl('skin') . 'frontend/base/default/images/tpl_eventsmanager/close-button.svg'; ?> " /></a>
|
| 50 |
+
</span>
|
| 51 |
+
</li>
|
| 52 |
+
<?php } ?>
|
| 53 |
|
| 54 |
+
<?php ?>
|
| 55 |
+
</ul>
|
| 56 |
+
</li>
|
| 57 |
</ul>
|
| 58 |
+
<?php }
|
| 59 |
+
|
| 60 |
+
endif;
|
| 61 |
+
?>
|
| 62 |
+
<!--<style>
|
| 63 |
+
@media only screen and (max-width: 1000px) {
|
| 64 |
+
#notification-button {
|
| 65 |
+
display: none;
|
| 66 |
+
}
|
| 67 |
+
}
|
| 68 |
+
</style>-->
|
app/design/frontend/base/default/template/tpl_eventsmanager/event/view.phtml
CHANGED
|
@@ -21,30 +21,27 @@
|
|
| 21 |
* @package Tpl_EventsManager
|
| 22 |
* @author TPL
|
| 23 |
*/
|
| 24 |
-
error_reporting(-1);
|
| 25 |
-
ini_set('display_errors', 'On');
|
| 26 |
-
?>
|
| 27 |
-
|
| 28 |
|
| 29 |
-
<style>
|
| 30 |
|
| 31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
.event-view-event-desc{
|
| 33 |
margin-top: 20px;
|
| 34 |
word-break: normal;
|
| 35 |
word-wrap: break-word;
|
| 36 |
margin-bottom: 20px;
|
|
|
|
| 37 |
}
|
| 38 |
.event-view-tile {
|
| 39 |
-
background: #
|
| 40 |
-
border: solid;
|
| 41 |
-
border-width: 1px;
|
| 42 |
-
border-color: #D4D4D4;
|
| 43 |
-
padding-top: 10px;
|
| 44 |
-
padding-bottom: 10px;
|
| 45 |
-
border: 1px solid #ebebeb;
|
| 46 |
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.098);
|
| 47 |
-
padding:
|
| 48 |
}
|
| 49 |
|
| 50 |
.event-view-color-bar {
|
|
@@ -59,9 +56,12 @@ ini_set('display_errors', 'On');
|
|
| 59 |
.event-title {
|
| 60 |
margin-bottom: 3px !important;
|
| 61 |
}
|
| 62 |
-
|
|
|
|
|
|
|
|
|
|
| 63 |
</style>
|
| 64 |
-
<div class="cms-page-view row">
|
| 65 |
<?php
|
| 66 |
$_event = $this->getCurrentEvent();
|
| 67 |
if ($this->getCurrentEvent()) {
|
|
@@ -70,50 +70,45 @@ ini_set('display_errors', 'On');
|
|
| 70 |
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
| 71 |
|
| 72 |
<div class="std col-xs-12 col-sm-12 col-md-12 col-lg-12 ">
|
| 73 |
-
|
| 74 |
-
<div class="std col-xs-12 col-sm-12 col-md-12 col-lg-12 ">
|
| 75 |
-
<div class="page-title ">
|
| 76 |
-
<div style="height:28px; width: 28px; background: <?php echo $_event->getColor(); ?>;float:right;" title="Event Color Code"></div>
|
| 77 |
-
<h1 class="event-title"><?php echo $_event->getEventName(); ?></h1>
|
| 78 |
-
|
| 79 |
-
</div>
|
| 80 |
-
|
| 81 |
-
<img style="float: left; margin-right: 8px; margin-top:3px; " height="15" width="15" src="<?php echo Mage::getBaseUrl('skin') . 'frontend/base/default/images/tpl_eventsmanager/calendar-icon.png'; ?> " />
|
| 82 |
-
<?php echo date('d F Y', strtotime($_event->getFromDate())) . ' (' . $_event->getFromTime() . ')'; ?> - <?php echo date('d F Y', strtotime($_event->getEndDate())) . ' (' . $_event->getEndTime() . ')'; ?>
|
| 83 |
-
|
| 84 |
-
</div>
|
| 85 |
-
<hr/>
|
| 86 |
-
<div class="std col-xs-12 col-sm-12 col-md-12 col-lg-12 ">
|
| 87 |
-
<div class="event-view-color-bar"></div>
|
| 88 |
-
</div>
|
| 89 |
-
|
| 90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 92 |
|
| 93 |
<?php if ($_event->getBanner()) : ?>
|
| 94 |
-
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 img-responsive">
|
| 95 |
-
<
|
|
|
|
| 96 |
</div>
|
| 97 |
<?php endif; ?>
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
<!-- Event Description Tile start -->
|
| 103 |
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 " >
|
| 104 |
<div class="event-view-event-desc event-view-tile">
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
?>
|
| 117 |
</div>
|
| 118 |
</div>
|
| 119 |
<!-- Event Description Tile End -->
|
|
@@ -126,55 +121,103 @@ ini_set('display_errors', 'On');
|
|
| 126 |
if ($_productCollection->count()):
|
| 127 |
?>
|
| 128 |
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 event-view-products-grid " >
|
| 129 |
-
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
|
| 148 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 149 |
|
| 150 |
-
<?php
|
| 151 |
-
$currency_code = Mage::app()->getStore()->getCurrentCurrencyCode();
|
| 152 |
-
$currency_symbol = Mage::app()->getLocale()->currency( $currency_code )->getSymbol();
|
| 153 |
-
echo $currency_symbol.' '.$_product->getPrice(); ?>
|
| 154 |
-
<br/>
|
| 155 |
-
<?php if ($_product->isSaleable()): ?>
|
| 156 |
-
<a href="<?php echo Mage::helper('checkout/cart')->getAddUrl($_product); ?>">
|
| 157 |
-
<button type="button" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Add to Cart')) ?>" class="button btn-cart" ><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></a>
|
| 158 |
-
<?php else: ?>
|
| 159 |
-
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
| 160 |
-
<?php endif; ?>
|
| 161 |
|
|
|
|
|
|
|
| 162 |
|
| 163 |
-
|
| 164 |
-
<?php
|
| 165 |
-
|
| 166 |
-
|
| 167 |
-
|
| 168 |
-
<script type="text/javascript">decorateGeneric($$('ul.products-grid'), ['odd', 'even', 'first', 'last'])</script></div>
|
| 169 |
-
</div>
|
| 170 |
-
</div>
|
| 171 |
<?php endif; ?>
|
| 172 |
-
|
| 173 |
<!-- Event Associated Products Tile End -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 174 |
</div>
|
| 175 |
-
|
| 176 |
-
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
|
| 180 |
</div>
|
| 21 |
* @package Tpl_EventsManager
|
| 22 |
* @author TPL
|
| 23 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
|
|
|
|
| 25 |
|
| 26 |
|
| 27 |
+
$current_page_url = Mage::helper('core/url')->getCurrentUrl();
|
| 28 |
+
if (Mage::getSingleton('core/design_package')->getPackageName() == "default" && (Mage::getSingleton('core/design_package')->getTheme('frontend') == "default")) {
|
| 29 |
+
echo "<style>.main { -moz-box-sizing: content-box; box-sizing: content-box; -webkit-box-sizing: content-box;} button.button span { -moz-box-sizing: content-box; box-sizing: content-box; -webkit-box-sizing: content-box;}</style>";
|
| 30 |
+
}
|
| 31 |
+
?>
|
| 32 |
+
<style>
|
| 33 |
.event-view-event-desc{
|
| 34 |
margin-top: 20px;
|
| 35 |
word-break: normal;
|
| 36 |
word-wrap: break-word;
|
| 37 |
margin-bottom: 20px;
|
| 38 |
+
overflow: hidden;
|
| 39 |
}
|
| 40 |
.event-view-tile {
|
| 41 |
+
background: #F7F7F7;
|
| 42 |
+
border: 1px solid #f0f0f0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.098);
|
| 44 |
+
padding: 8px;
|
| 45 |
}
|
| 46 |
|
| 47 |
.event-view-color-bar {
|
| 56 |
.event-title {
|
| 57 |
margin-bottom: 3px !important;
|
| 58 |
}
|
| 59 |
+
|
| 60 |
+
.social-sharing {
|
| 61 |
+
padding: 0 5px;
|
| 62 |
+
}
|
| 63 |
</style>
|
| 64 |
+
<div class="cms-page-view row" itemscope itemtype="http://schema.org/Event">
|
| 65 |
<?php
|
| 66 |
$_event = $this->getCurrentEvent();
|
| 67 |
if ($this->getCurrentEvent()) {
|
| 70 |
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
| 71 |
|
| 72 |
<div class="std col-xs-12 col-sm-12 col-md-12 col-lg-12 ">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
|
| 74 |
+
<div class="std col-xs-12 col-sm-12 col-md-12 col-lg-12 ">
|
| 75 |
+
<div class="page-title ">
|
| 76 |
+
<div style="border-radius: 5px; height:25px; width: 25px; background: <?php echo $_event->getColor(); ?>;float:right; margin:3px;" title="Event Color Code"></div>
|
| 77 |
+
<a itemprop="url" href="<?php echo $current_page_url;?>"></a>
|
| 78 |
+
<h1 itemprop="name" class="event-title"><?php echo $_event->getEventName(); ?></h1>
|
| 79 |
|
| 80 |
+
</div>
|
| 81 |
+
<div style="margin-bottom: 5px;">
|
| 82 |
+
<img style="float: left; margin-right: 8px; margin-top:3px; " height="15" width="15" src="<?php echo Mage::getBaseUrl('skin') . 'frontend/base/default/images/tpl_eventsmanager/calendar-icon.png'; ?> " />
|
| 83 |
+
<meta itemprop="startDate" content="<?php echo $_event->getFromDate().$_event->getFromTime() ?>">
|
| 84 |
+
<?php echo date('d F Y', strtotime($_event->getFromDate())) . ' (' . $_event->getFromTime() . ')'; ?> - <?php echo date('d F Y', strtotime($_event->getEndDate())) . ' (' . $_event->getEndTime() . ')'; ?>
|
| 85 |
+
</div>
|
| 86 |
+
</div>
|
| 87 |
+
<hr class="divider" style="display: flex; width: 97%; margin: 5px auto;">
|
| 88 |
+
<!-- <div class="std col-xs-12 col-sm-12 col-md-12 col-lg-12 ">
|
| 89 |
+
<div class="event-view-color-bar"></div>
|
| 90 |
+
</div>-->
|
| 91 |
|
| 92 |
<?php if ($_event->getBanner()) : ?>
|
| 93 |
+
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 img-responsive" style="width:100%;">
|
| 94 |
+
<div style="background: url(<?php echo Mage::helper('tpl_eventsmanager/event_image')->init($_event, 'banner'); ?>) no-repeat center center; padding-bottom:20%; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; border: 1px solid rgb(247, 247, 247);" alt="<?php echo $this->escapeHtml($_event->getEventName()); ?>" >
|
| 95 |
+
</div>
|
| 96 |
</div>
|
| 97 |
<?php endif; ?>
|
| 98 |
+
<!-- Event Description Tile start -->
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 " >
|
| 100 |
<div class="event-view-event-desc event-view-tile">
|
| 101 |
+
<!-- <h3>Description :</h3> -->
|
| 102 |
+
<?php echo $_event->getDescription(); ?>
|
| 103 |
+
|
| 104 |
+
<?php if ($_event_type == 'Product Launch Event') { ?>
|
| 105 |
+
Launch Date:
|
| 106 |
+
<?php echo date('l, d F Y', strtotime($_event->getProductLaunchDate())); ?><br/>
|
| 107 |
+
Launch Time:
|
| 108 |
+
<?php
|
| 109 |
+
echo $_event->getProductLaunchTime();
|
| 110 |
+
}
|
| 111 |
+
?>
|
|
|
|
| 112 |
</div>
|
| 113 |
</div>
|
| 114 |
<!-- Event Description Tile End -->
|
| 121 |
if ($_productCollection->count()):
|
| 122 |
?>
|
| 123 |
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 event-view-products-grid " >
|
| 124 |
+
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 event-view-tile">
|
| 125 |
+
<h3>Associated Products</h3>
|
| 126 |
+
<div class="category-products">
|
| 127 |
+
|
| 128 |
+
<?php $_collectionSize = $_productCollection->count() ?>
|
| 129 |
+
<?php $_columnCount = 3; ?>
|
| 130 |
+
<?php
|
| 131 |
+
$i = 0;
|
| 132 |
+
foreach ($_productCollection as $_product):
|
| 133 |
+
$_product = Mage::getModel('catalog/product')->load($_product->getEntityId());
|
| 134 |
+
?>
|
| 135 |
+
<?php if ($i++ % $_columnCount == 0): ?>
|
| 136 |
+
|
| 137 |
+
<?php endif ?>
|
| 138 |
+
<div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer" style=" margin-bottom: 15px; text-align: center;" class="col-xs-12 col-sm-6 col-md-3 col-lg-3 item<?php if (($i - 1) % $_columnCount == 0): ?> first<?php elseif ($i % $_columnCount == 0): ?> last<?php endif; ?>">
|
| 139 |
+
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12" >
|
| 140 |
+
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class=""><img style="width:100%" src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize('140', '140'); ?>" class="img-responsive product-image"/></a>
|
| 141 |
+
</div>
|
| 142 |
+
|
| 143 |
+
<h2 class="product-name"><a itemprop="url" href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></a></h2>
|
| 144 |
+
<span itemprop="lowPrice">
|
| 145 |
+
<?php
|
| 146 |
+
$currency_code = Mage::app()->getStore()->getCurrentCurrencyCode();
|
| 147 |
+
$currency_symbol = Mage::app()->getLocale()->currency($currency_code)->getSymbol();
|
| 148 |
+
echo $currency_symbol . ' ' . $_product->getPrice();
|
| 149 |
+
?>
|
| 150 |
+
</span>
|
| 151 |
+
<br/>
|
| 152 |
+
<?php if ($_product->isSaleable()): ?>
|
| 153 |
+
<a href="<?php echo Mage::helper('checkout/cart')->getAddUrl($_product); ?>">
|
| 154 |
+
<button type="button" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Add to Cart')) ?>" class="button btn-cart" ><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></a>
|
| 155 |
+
<?php else: ?>
|
| 156 |
+
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
| 157 |
+
<?php endif; ?>
|
| 158 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 159 |
|
| 160 |
+
</div>
|
| 161 |
+
<?php if ($i % $_columnCount == 0 || $i == $_collectionSize): ?>
|
| 162 |
|
| 163 |
+
<?php endif ?>
|
| 164 |
+
<?php endforeach ?>
|
| 165 |
+
<script type="text/javascript">decorateGeneric($$('ul.products-grid'), ['odd', 'even', 'first', 'last'])</script></div>
|
| 166 |
+
</div>
|
| 167 |
+
</div>
|
|
|
|
|
|
|
|
|
|
| 168 |
<?php endif; ?>
|
| 169 |
+
|
| 170 |
<!-- Event Associated Products Tile End -->
|
| 171 |
+
|
| 172 |
+
<!-- Social share buttons -->
|
| 173 |
+
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 " style="padding-bottom:20px;">
|
| 174 |
+
|
| 175 |
+
<!-- Facebook Share -->
|
| 176 |
+
<span class="social-sharing">
|
| 177 |
+
<iframe style="border: none; overflow: hidden;" src="https://www.facebook.com/plugins/share_button.php?href=<?php echo $current_page_url; ?>&layout=button_count&width=95&height=20" height="20" width="95">
|
| 178 |
+
</iframe>
|
| 179 |
+
</span>
|
| 180 |
+
|
| 181 |
+
<!-- Twitter Share -->
|
| 182 |
+
<span class="social-sharing">
|
| 183 |
+
<a class="twitter-share-button" href="https://twitter.com/share" data-url="<?php echo $current_page_url; ?>" data-text="<?php echo $_event->getEventName(); ?>" data-hashtags="tpleventmanager">
|
| 184 |
+
Tweet
|
| 185 |
+
</a>
|
| 186 |
+
|
| 187 |
+
<script type="text/javascript">
|
| 188 |
+
// <![CDATA[
|
| 189 |
+
!function (d, s, id) {
|
| 190 |
+
var js, fjs = d.getElementsByTagName(s)[0], p = /^http:/.test(d.location) ? 'http' : 'https';
|
| 191 |
+
if (!d.getElementById(id)) {
|
| 192 |
+
js = d.createElement(s);
|
| 193 |
+
js.id = id;
|
| 194 |
+
js.src = p + '://platform.twitter.com/widgets.js';
|
| 195 |
+
fjs.parentNode.insertBefore(js, fjs);
|
| 196 |
+
}
|
| 197 |
+
}(document, 'script', 'twitter-wjs');
|
| 198 |
+
// ]]>
|
| 199 |
+
</script>
|
| 200 |
+
</span>
|
| 201 |
+
|
| 202 |
+
<!-- Google Plus Share -->
|
| 203 |
+
<span class="social-sharing">
|
| 204 |
+
<!-- Place this tag in your head or just before your close body tag. -->
|
| 205 |
+
<script type="text/javascript" src="https://apis.google.com/js/platform.js" defer="defer" async=""></script>
|
| 206 |
+
<!-- Place this tag where you want the share button to render. -->
|
| 207 |
+
<div class="g-plus" data-action="share" data-annotation="bubble" data-href="<?php echo $current_page_url; ?>"></div>
|
| 208 |
+
</span>
|
| 209 |
+
|
| 210 |
+
<!-- LinkedIn Share -->
|
| 211 |
+
<span class="social-sharing">
|
| 212 |
+
<script src="//platform.linkedin.com/in.js" type="text/javascript"> lang: en_US</script>
|
| 213 |
+
<script type="IN/Share" data-url="<?php echo $current_page_url; ?>" data-counter="right"></script>
|
| 214 |
+
</span>
|
| 215 |
+
</div>
|
| 216 |
+
|
| 217 |
</div>
|
| 218 |
+
<?php
|
| 219 |
+
} else {
|
| 220 |
+
echo "<span>You do not have permission to view this event</span>";
|
| 221 |
+
}
|
| 222 |
+
?>
|
| 223 |
</div>
|
app/design/frontend/base/default/template/tpl_eventsmanager/event/viewright.phtml
CHANGED
|
@@ -68,13 +68,13 @@ if ($this->getCurrentEvent()) {
|
|
| 68 |
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2" style="padding-top: 10px;">
|
| 69 |
<img src="<?php echo Mage::getBaseUrl('skin') . 'frontend/base/default/images/tpl_eventsmanager/location-marker.png'; ?>"/>
|
| 70 |
</div>
|
| 71 |
-
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
|
| 72 |
<ul>
|
| 73 |
-
<li><?php echo $_event->getAddress(); ?></li>
|
| 74 |
-
<li><?php echo $_event->getCity(); ?></li>
|
| 75 |
-
<li><?php echo $_event->getState(); ?></li>
|
| 76 |
-
<li><?php echo $_event->getCountry(); ?></li>
|
| 77 |
-
<li><?php echo $_event->getPinCode(); ?></li>
|
| 78 |
</ul>
|
| 79 |
</div>
|
| 80 |
|
|
@@ -90,7 +90,7 @@ if ($this->getCurrentEvent()) {
|
|
| 90 |
</div>
|
| 91 |
|
| 92 |
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 " style="padding-top:10px;padding-bottom: 10px;">
|
| 93 |
-
<a href="https://www.google.com/maps/place/<?php echo $_event->getAddress() . '+' . $_event->getCity() . '+' . $_event->getCountry(); ?>" target="new"><img class="tpl-event-map" src="https://maps.googleapis.com/maps/api/staticmap?center=<?php echo $_event->getAddress() . '+' . $_event->getCity() . '+' . $_event->getCountry(); ?>&zoom=13&size=250x250&maptype=roadmap&markers=color:red|<?php echo $_event->getAddress() . '+' . $_event->getCity() . '+' . $_event->getCountry(); ?>&key=<?php echo Mage::getStoreConfig('tpl_eventsmanager/customsettings/google_maps_api_key', Mage::app()->getStore()); ?>"/></a>
|
| 94 |
</div>
|
| 95 |
|
| 96 |
</div>
|
|
@@ -138,10 +138,10 @@ if ($this->getCurrentEvent()) {
|
|
| 138 |
<div style="text-align: right;">
|
| 139 |
<button class="button btn-cart" onclick="accept_invitation();"<?php if ($prev_status == "Accepted") {
|
| 140 |
echo 'disabled';
|
| 141 |
-
|
| 142 |
<button class="button btn-cart" onclick="reject_invitation();" <?php if ($prev_status == "Rejected") {
|
| 143 |
echo 'disabled';
|
| 144 |
-
|
| 145 |
</div>
|
| 146 |
</div>
|
| 147 |
</div>
|
| 68 |
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2" style="padding-top: 10px;">
|
| 69 |
<img src="<?php echo Mage::getBaseUrl('skin') . 'frontend/base/default/images/tpl_eventsmanager/location-marker.png'; ?>"/>
|
| 70 |
</div>
|
| 71 |
+
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress" >
|
| 72 |
<ul>
|
| 73 |
+
<li itemprop="streetAddress" ><?php echo $_event->getAddress(); ?></li>
|
| 74 |
+
<li itemprop="addressLocality" ><?php echo $_event->getCity(); ?></li>
|
| 75 |
+
<li itemprop="addressRegion"><?php echo $_event->getState(); ?></li>
|
| 76 |
+
<li itemprop="addressCountry"><?php echo $_event->getCountry(); ?></li>
|
| 77 |
+
<li itemprop="postalCode"><?php echo $_event->getPinCode(); ?></li>
|
| 78 |
</ul>
|
| 79 |
</div>
|
| 80 |
|
| 90 |
</div>
|
| 91 |
|
| 92 |
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 " style="padding-top:10px;padding-bottom: 10px;">
|
| 93 |
+
<a href="https://www.google.com/maps/place/<?php echo $_event->getAddress() . '+' . $_event->getCity() . '+' . $_event->getCountry(); ?>" target="new"><img class="tpl-event-map img-responsive" src="https://maps.googleapis.com/maps/api/staticmap?center=<?php echo $_event->getAddress() . '+' . $_event->getCity() . '+' . $_event->getCountry(); ?>&zoom=13&size=250x250&maptype=roadmap&markers=color:red|<?php echo $_event->getAddress() . '+' . $_event->getCity() . '+' . $_event->getCountry(); ?>&key=<?php echo Mage::getStoreConfig('tpl_eventsmanager/customsettings/google_maps_api_key', Mage::app()->getStore()); ?>"/></a>
|
| 94 |
</div>
|
| 95 |
|
| 96 |
</div>
|
| 138 |
<div style="text-align: right;">
|
| 139 |
<button class="button btn-cart" onclick="accept_invitation();"<?php if ($prev_status == "Accepted") {
|
| 140 |
echo 'disabled';
|
| 141 |
+
} ?> ><span><span>Accept</span></span></button>
|
| 142 |
<button class="button btn-cart" onclick="reject_invitation();" <?php if ($prev_status == "Rejected") {
|
| 143 |
echo 'disabled';
|
| 144 |
+
} ?> ><span><span>Reject</span></span></button>
|
| 145 |
</div>
|
| 146 |
</div>
|
| 147 |
</div>
|
app/design/frontend/base/default/template/tpl_eventsmanager/event/widget/banner.phtml
CHANGED
|
@@ -27,12 +27,11 @@ $_events = Mage::getModel('tpl_eventsmanager/event')->getAllEvents();
|
|
| 27 |
$time = microtime();
|
| 28 |
$time = str_replace(' ', '', $time);
|
| 29 |
?>
|
| 30 |
-
<div class="banner-slider-tile" id="events-banner-slider_<?php echo $time; ?>"
|
| 31 |
<?php
|
| 32 |
$flag = 0;
|
| 33 |
foreach ($_events as $_event) :
|
| 34 |
?>
|
| 35 |
-
|
| 36 |
<?php
|
| 37 |
$curdate = strtotime(date('Y-m-d 00:00:00'));
|
| 38 |
$end_date = strtotime($_event->getEndDate());
|
|
@@ -40,20 +39,21 @@ $time = str_replace(' ', '', $time);
|
|
| 40 |
<?php if (($curdate <= $end_date) && (!empty($_event->getBanner()))): ?>
|
| 41 |
|
| 42 |
<a href="<?php echo $_event->getEventUrl() ?>">
|
| 43 |
-
<
|
| 44 |
if ($flag == 0) {
|
| 45 |
-
echo '
|
| 46 |
} else {
|
| 47 |
echo 'none';
|
| 48 |
}
|
| 49 |
-
|
| 50 |
-
|
|
|
|
| 51 |
<?php
|
| 52 |
$flag = 1;
|
| 53 |
endif;
|
| 54 |
?>
|
| 55 |
|
| 56 |
-
<?php endforeach; ?>
|
| 57 |
</div>
|
| 58 |
|
| 59 |
<script>
|
|
@@ -61,7 +61,7 @@ $time = str_replace(' ', '', $time);
|
|
| 61 |
|
| 62 |
function shuffle_banners() {
|
| 63 |
var banner_div = document.getElementById('events-banner-slider_<?php echo $time; ?>');
|
| 64 |
-
var all_images = banner_div.getElementsByTagName("
|
| 65 |
|
| 66 |
var len = all_images.length;
|
| 67 |
console.log(all_images);
|
|
@@ -75,7 +75,7 @@ $time = str_replace(' ', '', $time);
|
|
| 75 |
{
|
| 76 |
index = 0;
|
| 77 |
}
|
| 78 |
-
all_images[index].style.display = "
|
| 79 |
|
| 80 |
index++;
|
| 81 |
}, 2000);
|
|
@@ -87,7 +87,7 @@ $time = str_replace(' ', '', $time);
|
|
| 87 |
.banner-slider-tile {
|
| 88 |
margin-top: 20px;
|
| 89 |
margin-bottom: 10px;
|
| 90 |
-
padding: 10px
|
| 91 |
display: block;
|
| 92 |
background: #F3F3F3;
|
| 93 |
border: solid;
|
| 27 |
$time = microtime();
|
| 28 |
$time = str_replace(' ', '', $time);
|
| 29 |
?>
|
| 30 |
+
<div class="banner-slider-tile" id="events-banner-slider_<?php echo $time; ?>" >
|
| 31 |
<?php
|
| 32 |
$flag = 0;
|
| 33 |
foreach ($_events as $_event) :
|
| 34 |
?>
|
|
|
|
| 35 |
<?php
|
| 36 |
$curdate = strtotime(date('Y-m-d 00:00:00'));
|
| 37 |
$end_date = strtotime($_event->getEndDate());
|
| 39 |
<?php if (($curdate <= $end_date) && (!empty($_event->getBanner()))): ?>
|
| 40 |
|
| 41 |
<a href="<?php echo $_event->getEventUrl() ?>">
|
| 42 |
+
<div alt="<?php echo $_event->getEventName(); ?>" title="<?php echo $_event->getEventName(); ?>" style="display:<?php
|
| 43 |
if ($flag == 0) {
|
| 44 |
+
echo 'block';
|
| 45 |
} else {
|
| 46 |
echo 'none';
|
| 47 |
}
|
| 48 |
+
?> ; background: url(<?php echo Mage::helper('tpl_eventsmanager/event_image')->init($_event, 'banner'); ?>) no-repeat center center; padding-bottom:20%; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;" class="event-thumbnail" >
|
| 49 |
+
</div>
|
| 50 |
+
</a>
|
| 51 |
<?php
|
| 52 |
$flag = 1;
|
| 53 |
endif;
|
| 54 |
?>
|
| 55 |
|
| 56 |
+
<?php endforeach; ?>
|
| 57 |
</div>
|
| 58 |
|
| 59 |
<script>
|
| 61 |
|
| 62 |
function shuffle_banners() {
|
| 63 |
var banner_div = document.getElementById('events-banner-slider_<?php echo $time; ?>');
|
| 64 |
+
var all_images = banner_div.getElementsByTagName("div");
|
| 65 |
|
| 66 |
var len = all_images.length;
|
| 67 |
console.log(all_images);
|
| 75 |
{
|
| 76 |
index = 0;
|
| 77 |
}
|
| 78 |
+
all_images[index].style.display = "block";
|
| 79 |
|
| 80 |
index++;
|
| 81 |
}, 2000);
|
| 87 |
.banner-slider-tile {
|
| 88 |
margin-top: 20px;
|
| 89 |
margin-bottom: 10px;
|
| 90 |
+
/* padding: 10px;*/
|
| 91 |
display: block;
|
| 92 |
background: #F3F3F3;
|
| 93 |
border: solid;
|
app/design/frontend/base/default/template/tpl_eventsmanager/event/widget/link.phtml
CHANGED
|
@@ -22,114 +22,91 @@
|
|
| 22 |
* @author TPL
|
| 23 |
*/
|
| 24 |
?>
|
| 25 |
-
|
| 26 |
-
?>
|
| 27 |
-
<?php //if ($_event) :
|
| 28 |
-
?>
|
| 29 |
-
<!-- <div class="event-widget-link">
|
| 30 |
-
<a href="<?php //echo $_event->getEventUrl() ?>"><?php //echo $_event->getEventName() ?></a>
|
| 31 |
-
</div>-->
|
| 32 |
<?php // widget displays upcomming and not expired events ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
<div class="block">
|
| 34 |
<div class="block-title">
|
| 35 |
<strong><span> Upcoming Events</span></strong>
|
| 36 |
</div>
|
| 37 |
-
<div class=" block-content
|
| 38 |
<?php $_events = $this->getEvents(); ?>
|
| 39 |
<?php if ($_events->getSize() > 0) : ?>
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
<?php echo strip_tags(substr($_event->getDescription(), 0, 50)); ?>...
|
| 60 |
</p>
|
|
|
|
| 61 |
</div>
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
endforeach;
|
| 67 |
-
?>
|
| 68 |
-
<!-- </div>-->
|
| 69 |
|
|
|
|
| 70 |
<?php else : ?>
|
| 71 |
<?php echo Mage::helper('tpl_eventsmanager')->__('There are no events at this moment'); ?>
|
| 72 |
<?php endif; ?>
|
| 73 |
</div>
|
| 74 |
</div>
|
| 75 |
-
<style>
|
| 76 |
-
.widget-event-list-container{
|
| 77 |
-
margin-top: 10px;
|
| 78 |
-
padding: 10px;
|
| 79 |
-
|
| 80 |
-
height: 300px;
|
| 81 |
-
overflow-x: scroll;
|
| 82 |
-
overflow-x: auto;
|
| 83 |
-
}
|
| 84 |
-
.widget-event-list-item{
|
| 85 |
-
|
| 86 |
-
padding-bottom: 12px;
|
| 87 |
-
|
| 88 |
-
overflow: hidden;
|
| 89 |
-
}
|
| 90 |
-
.event-thumbnail{
|
| 91 |
-
padding-left: 0px;
|
| 92 |
-
/* position: absolute;*/
|
| 93 |
-
}
|
| 94 |
-
.widget-event-list-event-type{
|
| 95 |
-
float: right;
|
| 96 |
-
|
| 97 |
-
right: 0;
|
| 98 |
-
/* margin-top: -24px; */
|
| 99 |
-
position: relative;
|
| 100 |
-
}
|
| 101 |
-
.widget-event-list-text{
|
| 102 |
-
|
| 103 |
-
/* margin-left: 65px;*/
|
| 104 |
-
text-overflow: ellipsis;
|
| 105 |
-
padding-left: 0px;
|
| 106 |
-
|
| 107 |
-
}
|
| 108 |
-
@media (max-width: 900px) {
|
| 109 |
-
|
| 110 |
-
.widget-event-list-event-type {
|
| 111 |
-
|
| 112 |
-
bottom: 0;
|
| 113 |
-
}
|
| 114 |
-
}
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
@media (max-width: 400px) {
|
| 118 |
-
.widget-event-list-event-type{
|
| 119 |
-
display: none;
|
| 120 |
-
}
|
| 121 |
-
}
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
.widget-event-list-event-short-desc{
|
| 125 |
-
|
| 126 |
-
overflow: hidden;
|
| 127 |
-
width: 80%;
|
| 128 |
-
height: 39px;
|
| 129 |
-
/* white-space: nowrap;*/
|
| 130 |
-
text-align: justify;
|
| 131 |
-
}
|
| 132 |
-
</style>
|
| 133 |
|
| 134 |
|
| 135 |
|
| 22 |
* @author TPL
|
| 23 |
*/
|
| 24 |
?>
|
| 25 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
<?php // widget displays upcomming and not expired events ?>
|
| 27 |
+
<style>
|
| 28 |
+
.upcomming-event-list{
|
| 29 |
+
margin-top: 10px;
|
| 30 |
+
max-height: 300px;
|
| 31 |
+
overflow-x: scroll;
|
| 32 |
+
overflow-x: auto;
|
| 33 |
+
}
|
| 34 |
+
.upcomming-event-thumbnail {
|
| 35 |
+
float: left;
|
| 36 |
+
width: 100%;
|
| 37 |
+
margin-right: 6px;
|
| 38 |
+
margin-bottom: 2px;
|
| 39 |
+
|
| 40 |
+
}
|
| 41 |
+
.upcomming-event-list img{
|
| 42 |
+
max-width: 85px;
|
| 43 |
+
min-width: 5px;
|
| 44 |
+
/* padding: 5px;*/
|
| 45 |
+
margin: 5px;
|
| 46 |
+
}
|
| 47 |
+
.upcomming-event-list-item{
|
| 48 |
+
width: 100%;
|
| 49 |
+
padding-bottom: 12px;
|
| 50 |
+
overflow: hidden;
|
| 51 |
+
padding-left: 5px;
|
| 52 |
+
padding-right: 2px;
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
</style>
|
| 56 |
+
|
| 57 |
<div class="block">
|
| 58 |
<div class="block-title">
|
| 59 |
<strong><span> Upcoming Events</span></strong>
|
| 60 |
</div>
|
| 61 |
+
<div class=" block-content " style="padding: 1px;">
|
| 62 |
<?php $_events = $this->getEvents(); ?>
|
| 63 |
<?php if ($_events->getSize() > 0) : ?>
|
| 64 |
+
<div class="upcomming-event-list">
|
| 65 |
+
<?php $curdate = strtotime(date('Y-m-d 00:00:00')); ?>
|
| 66 |
+
<?php
|
| 67 |
+
foreach ($_events as $_event) :
|
| 68 |
+
$end_date = strtotime($_event->getEndDate());
|
| 69 |
+
if (($curdate <= $end_date)) {
|
| 70 |
+
?>
|
| 71 |
+
|
| 72 |
+
<div class="upcomming-event-list-item">
|
| 73 |
+
<div style="width:60px;">
|
| 74 |
+
<div class="upcomming-event-thumbnail">
|
| 75 |
+
<a href="<?php echo $_event->getEventUrl() ?>">
|
| 76 |
+
<?php if ($_event->getThumbnail() == "") { ?>
|
| 77 |
+
|
| 78 |
+
<div class="event-thumbnail img-responsive" style="background: url(<?php echo Mage::getBaseUrl('skin') . "frontend/base/default/images/tpl_eventsmanager/no-image-available.png"; ?>) no-repeat center center; padding-bottom:100%; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;" alt="<?php echo $this->escapeHtml($_event->getEventName()); ?>" >
|
| 79 |
+
</div>
|
| 80 |
+
|
| 81 |
+
<?php } else { ?>
|
| 82 |
+
<div title="<?php echo $_event->getEventName(); ?>" class="event-thumbnail img-responsive" style="background: url(<?php echo Mage::helper('tpl_eventsmanager/event_image')->init($_event, 'thumbnail');?>) no-repeat center center; padding-bottom:100%; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;" alt="<?php echo $this->escapeHtml($_event->getEventName()); ?>" >
|
| 83 |
+
</div>
|
| 84 |
+
<?php } ?>
|
| 85 |
+
</a>
|
| 86 |
+
</div>
|
| 87 |
+
</div>
|
| 88 |
+
<a style="text-decoration: none;"href="<?php echo $_event->getEventUrl() ?>">
|
| 89 |
+
<div style="height:15px; width: 15px; border-radius: 2px; background: <?php echo $_event->getColor(); ?>;float:right; margin:2px;" title="Event Color Code"></div>
|
| 90 |
+
<strong><?php echo $_event->getEventName(); ?></strong>
|
| 91 |
+
</a>
|
| 92 |
+
|
| 93 |
+
|
| 94 |
+
<p>
|
| 95 |
<?php echo strip_tags(substr($_event->getDescription(), 0, 50)); ?>...
|
| 96 |
</p>
|
| 97 |
+
|
| 98 |
</div>
|
| 99 |
+
<?php
|
| 100 |
+
}
|
| 101 |
+
endforeach;
|
| 102 |
+
?>
|
|
|
|
|
|
|
|
|
|
| 103 |
|
| 104 |
+
</div>
|
| 105 |
<?php else : ?>
|
| 106 |
<?php echo Mage::helper('tpl_eventsmanager')->__('There are no events at this moment'); ?>
|
| 107 |
<?php endif; ?>
|
| 108 |
</div>
|
| 109 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
|
| 111 |
|
| 112 |
|
app/design/frontend/base/default/template/tpl_eventsmanager/event/widget/view.phtml
CHANGED
|
@@ -23,91 +23,90 @@
|
|
| 23 |
*/
|
| 24 |
?>
|
| 25 |
|
| 26 |
-
<!-- <?php
|
| 27 |
<?php ?>
|
| 28 |
<div class="event-widget-view">
|
| 29 |
-
<h3><?php echo $_event->getEventName() ?></h3>
|
| 30 |
<div>
|
| 31 |
<div class="event_name-widget">
|
| 32 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('Event Name'); ?>:<?php echo $_event->getEventName(); ?>
|
| 33 |
</div>
|
| 34 |
<div class="from_date-widget">
|
| 35 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__("From Date"); ?>: <?php echo Mage::helper('core')->formatDate($_event->getFromDate(), 'full'); ?>
|
| 36 |
</div>
|
| 37 |
<div class="from_time-widget">
|
| 38 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('From Time'); ?>:<?php echo $_event->getFromTime(); ?>
|
| 39 |
</div>
|
| 40 |
<div class="end_date-widget">
|
| 41 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__("End Date"); ?>: <?php echo Mage::helper('core')->formatDate($_event->getEndDate(), 'full'); ?>
|
| 42 |
</div>
|
| 43 |
<div class="end_time-widget">
|
| 44 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('End Time'); ?>:<?php echo $_event->getEndTime(); ?>
|
| 45 |
</div>
|
| 46 |
<div class="description-widget">
|
| 47 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('Description'); ?>:<?php echo $_event->getDescription(); ?>
|
| 48 |
</div>
|
| 49 |
<div class="thumbnail-widget">
|
| 50 |
-
<?php if ($_event->getThumbnail()) : ?>
|
| 51 |
-
<img src="<?php echo Mage::helper('tpl_eventsmanager/event_image')->init($_event, 'thumbnail')->resize(75); ?>" alt="<?php echo $this->escapeHtml($_event->getEventName()); ?>" />
|
| 52 |
-
<?php endif; ?>
|
| 53 |
</div>
|
| 54 |
<div class="banner-widget">
|
| 55 |
-
<?php if ($_event->getBanner()) : ?>
|
| 56 |
-
<img src="<?php echo Mage::helper('tpl_eventsmanager/event_image')->init($_event, 'banner')->resize(75); ?>" alt="<?php echo $this->escapeHtml($_event->getEventName()); ?>" />
|
| 57 |
-
<?php endif; ?>
|
| 58 |
</div>
|
| 59 |
<div class="color-widget">
|
| 60 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('Color'); ?>:<?php echo $_event->getColor(); ?>
|
| 61 |
</div>
|
| 62 |
<div class="event_level-widget">
|
| 63 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__("Event Level"); ?>:<?php echo $_event->getAttributeText('event_level'); ?>
|
| 64 |
</div>
|
| 65 |
<div class="event_type-widget">
|
| 66 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__("Event Type"); ?>:<?php echo $_event->getAttributeText('event_type'); ?>
|
| 67 |
</div>
|
| 68 |
<div class="group_id-widget">
|
| 69 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('Select Group'); ?>:<?php echo $_event->getGroupId(); ?>
|
| 70 |
</div>
|
| 71 |
<div class="user_email-widget">
|
| 72 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('User Email'); ?>:<?php echo $_event->getUserEmail(); ?>
|
| 73 |
</div>
|
| 74 |
<div class="is_invitable-widget">
|
| 75 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__("Is Invitable"); ?>:<?php echo ($_event->getIsInvitable() == 1) ? Mage::helper('tpl_eventsmanager')->__('Yes') : Mage::helper('tpl_eventsmanager')->__('No') ?>
|
| 76 |
</div>
|
| 77 |
<div class="product_launch_date-widget">
|
| 78 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__("Product Launch Date"); ?>: <?php echo Mage::helper('core')->formatDate($_event->getProductLaunchDate(), 'full'); ?>
|
| 79 |
</div>
|
| 80 |
<div class="product_launch_time-widget">
|
| 81 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('Product Launch Time'); ?>:<?php echo $_event->getProductLaunchTime(); ?>
|
| 82 |
</div>
|
| 83 |
<div class="address-widget">
|
| 84 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('Address '); ?>:<?php echo $_event->getAddress(); ?>
|
| 85 |
</div>
|
| 86 |
<div class="city-widget">
|
| 87 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('City'); ?>:<?php echo $_event->getCity(); ?>
|
| 88 |
</div>
|
| 89 |
<div class="state-widget">
|
| 90 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('State'); ?>:<?php echo $_event->getState(); ?>
|
| 91 |
</div>
|
| 92 |
<div class="country-widget">
|
| 93 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('Country'); ?>:<?php echo $_event->getCountry(); ?>
|
| 94 |
</div>
|
| 95 |
<div class="contact_number-widget">
|
| 96 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('Contact Number'); ?>:<?php echo $_event->getContactNumber(); ?>
|
| 97 |
</div>
|
| 98 |
<div class="contact_email-widget">
|
| 99 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('Contact Email'); ?>:<?php echo $_event->getContactEmail(); ?>
|
| 100 |
</div>
|
| 101 |
<div class="pin_code-widget">
|
| 102 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__('Postal Code / PIN / Area Code'); ?>:<?php echo $_event->getPinCode(); ?>
|
| 103 |
</div>
|
| 104 |
<div class="cancel_event-widget">
|
| 105 |
-
<?php echo Mage::helper('tpl_eventsmanager')->__("Cancel Event"); ?>:<?php echo ($_event->getCancelEvent() == 1) ? Mage::helper('tpl_eventsmanager')->__('Yes') : Mage::helper('tpl_eventsmanager')->__('No') ?>
|
| 106 |
</div>
|
| 107 |
|
| 108 |
</div>
|
| 109 |
</div>
|
| 110 |
-
<?php ?>
|
| 111 |
-->
|
| 112 |
<?php
|
| 113 |
$time = microtime();
|
| 23 |
*/
|
| 24 |
?>
|
| 25 |
|
| 26 |
+
<!-- <?php //$_event = $this->getCurrentEvent(); ?>
|
| 27 |
<?php ?>
|
| 28 |
<div class="event-widget-view">
|
| 29 |
+
<h3><?php //echo $_event->getEventName() ?></h3>
|
| 30 |
<div>
|
| 31 |
<div class="event_name-widget">
|
| 32 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('Event Name'); ?>:<?php //echo $_event->getEventName(); ?>
|
| 33 |
</div>
|
| 34 |
<div class="from_date-widget">
|
| 35 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__("From Date"); ?>: <?php //echo Mage::helper('core')->formatDate($_event->getFromDate(), 'full'); ?>
|
| 36 |
</div>
|
| 37 |
<div class="from_time-widget">
|
| 38 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('From Time'); ?>:<?php //echo $_event->getFromTime(); ?>
|
| 39 |
</div>
|
| 40 |
<div class="end_date-widget">
|
| 41 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__("End Date"); ?>: <?php //echo Mage::helper('core')->formatDate($_event->getEndDate(), 'full'); ?>
|
| 42 |
</div>
|
| 43 |
<div class="end_time-widget">
|
| 44 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('End Time'); ?>:<?php //echo $_event->getEndTime(); ?>
|
| 45 |
</div>
|
| 46 |
<div class="description-widget">
|
| 47 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('Description'); ?>:<?php //echo $_event->getDescription(); ?>
|
| 48 |
</div>
|
| 49 |
<div class="thumbnail-widget">
|
| 50 |
+
<?php //if ($_event->getThumbnail()) : ?>
|
| 51 |
+
<img src="<?php //echo Mage::helper('tpl_eventsmanager/event_image')->init($_event, 'thumbnail')->resize(75); ?>" alt="<?php //echo $this->escapeHtml($_event->getEventName()); ?>" />
|
| 52 |
+
<?php //endif; ?>
|
| 53 |
</div>
|
| 54 |
<div class="banner-widget">
|
| 55 |
+
<?php //if ($_event->getBanner()) : ?>
|
| 56 |
+
<img src="<?php //echo Mage::helper('tpl_eventsmanager/event_image')->init($_event, 'banner')->resize(75); ?>" alt="<?php //echo $this->escapeHtml($_event->getEventName()); ?>" />
|
| 57 |
+
<?php// endif; ?>
|
| 58 |
</div>
|
| 59 |
<div class="color-widget">
|
| 60 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('Color'); ?>:<?php //echo $_event->getColor(); ?>
|
| 61 |
</div>
|
| 62 |
<div class="event_level-widget">
|
| 63 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__("Event Level"); ?>:<?php //echo $_event->getAttributeText('event_level'); ?>
|
| 64 |
</div>
|
| 65 |
<div class="event_type-widget">
|
| 66 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__("Event Type"); ?>:<?php //echo $_event->getAttributeText('event_type'); ?>
|
| 67 |
</div>
|
| 68 |
<div class="group_id-widget">
|
| 69 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('Select Group'); ?>:<?php //echo $_event->getGroupId(); ?>
|
| 70 |
</div>
|
| 71 |
<div class="user_email-widget">
|
| 72 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('User Email'); ?>:<?php //echo $_event->getUserEmail(); ?>
|
| 73 |
</div>
|
| 74 |
<div class="is_invitable-widget">
|
| 75 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__("Is Invitable"); ?>:<?php //echo ($_event->getIsInvitable() == 1) ? Mage::helper('tpl_eventsmanager')->__('Yes') : Mage::helper('tpl_eventsmanager')->__('No') ?>
|
| 76 |
</div>
|
| 77 |
<div class="product_launch_date-widget">
|
| 78 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__("Product Launch Date"); ?>: <?php //echo Mage::helper('core')->formatDate($_event->getProductLaunchDate(), 'full'); ?>
|
| 79 |
</div>
|
| 80 |
<div class="product_launch_time-widget">
|
| 81 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('Product Launch Time'); ?>:<?php //echo $_event->getProductLaunchTime(); ?>
|
| 82 |
</div>
|
| 83 |
<div class="address-widget">
|
| 84 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('Address '); ?>:<?php //echo $_event->getAddress(); ?>
|
| 85 |
</div>
|
| 86 |
<div class="city-widget">
|
| 87 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('City'); ?>:<?php //echo $_event->getCity(); ?>
|
| 88 |
</div>
|
| 89 |
<div class="state-widget">
|
| 90 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('State'); ?>:<?php //echo $_event->getState(); ?>
|
| 91 |
</div>
|
| 92 |
<div class="country-widget">
|
| 93 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('Country'); ?>:<?php //echo $_event->getCountry(); ?>
|
| 94 |
</div>
|
| 95 |
<div class="contact_number-widget">
|
| 96 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('Contact Number'); ?>:<?php //echo $_event->getContactNumber(); ?>
|
| 97 |
</div>
|
| 98 |
<div class="contact_email-widget">
|
| 99 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('Contact Email'); ?>:<?php //echo $_event->getContactEmail(); ?>
|
| 100 |
</div>
|
| 101 |
<div class="pin_code-widget">
|
| 102 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__('Postal Code / PIN / Area Code'); ?>:<?php// echo $_event->getPinCode(); ?>
|
| 103 |
</div>
|
| 104 |
<div class="cancel_event-widget">
|
| 105 |
+
<?php //echo Mage::helper('tpl_eventsmanager')->__("Cancel Event"); ?>:<?php //echo ($_event->getCancelEvent() == 1) ? Mage::helper('tpl_eventsmanager')->__('Yes') : Mage::helper('tpl_eventsmanager')->__('No') ?>
|
| 106 |
</div>
|
| 107 |
|
| 108 |
</div>
|
| 109 |
</div>
|
|
|
|
| 110 |
-->
|
| 111 |
<?php
|
| 112 |
$time = microtime();
|
app/design/frontend/base/default/template/tpl_eventsmanager/invitationstatus/list.phtml
CHANGED
|
@@ -21,6 +21,9 @@
|
|
| 21 |
* @package Tpl_EventsManager
|
| 22 |
* @author TPL
|
| 23 |
*/
|
|
|
|
|
|
|
|
|
|
| 24 |
?>
|
| 25 |
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
| 26 |
<?php $_invitationsstatus = $this->getInvitationsstatus(); ?>
|
| 21 |
* @package Tpl_EventsManager
|
| 22 |
* @author TPL
|
| 23 |
*/
|
| 24 |
+
if ( Mage::getSingleton('core/design_package')->getPackageName() == "default" && (Mage::getSingleton('core/design_package')->getTheme('frontend')=="default") ){
|
| 25 |
+
echo "<style>.main { width: 915px; padding: 25px 12px 80px;}</style>";
|
| 26 |
+
}
|
| 27 |
?>
|
| 28 |
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
| 29 |
<?php $_invitationsstatus = $this->getInvitationsstatus(); ?>
|
app/design/frontend/base/default/template/tpl_eventsmanager/invitationstatus/view.phtml
CHANGED
|
@@ -21,6 +21,9 @@
|
|
| 21 |
* @package Tpl_EventsManager
|
| 22 |
* @author TPL
|
| 23 |
*/
|
|
|
|
|
|
|
|
|
|
| 24 |
?>
|
| 25 |
<?php $_invitationstatus = $this->getCurrentInvitationstatus(); ?>
|
| 26 |
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
| 21 |
* @package Tpl_EventsManager
|
| 22 |
* @author TPL
|
| 23 |
*/
|
| 24 |
+
if ( Mage::getSingleton('core/design_package')->getPackageName() == "default" && (Mage::getSingleton('core/design_package')->getTheme('frontend')=="default") ){
|
| 25 |
+
echo "<style>.main { width: 915px; padding: 25px 12px 80px;}</style>";
|
| 26 |
+
}
|
| 27 |
?>
|
| 28 |
<?php $_invitationstatus = $this->getCurrentInvitationstatus(); ?>
|
| 29 |
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
package.xml
CHANGED
|
@@ -1,19 +1,19 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Tpl_EventsManager</name>
|
| 4 |
-
<version>1.0.
|
| 5 |
-
<stability>
|
| 6 |
<license uri="https://opensource.org/licenses/mit-license.php">The MIT License (MIT)</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>Simple and handy Magento Extension for creating and managing events.</summary>
|
| 10 |
<description>TPL Events Manager extension provides an easy and handy way of creating and managing various types of events with various permissions across your Magento store. These events can be made visible on frontend of store through event listing, event detail page and widgets. Events can be created and managed from the admin panel. 
|
| 11 |
</description>
|
| 12 |
-
<notes>
|
| 13 |
-
<authors><author><name>
|
| 14 |
-
<date>2016-04-
|
| 15 |
-
<time>
|
| 16 |
-
<contents><target name="magecommunity"><dir name="Tpl"><dir name="EventsManager"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><file name="Event.php" hash="cff3ffbd6034f22dc900ece155c8b15e"/></dir></dir></dir></dir><dir name="Event"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="29d854b4fd7ee4c28c60e9d2d9110bed"/><dir name="Tab"><file name="Main.php" hash="32146139b91c199a3143738ce5b528a5"/><file name="Options.php" hash="fb95f887d87d03e721f2ff5e15818579"/></dir><file name="Tabs.php" hash="560d5e04c05038ec3859a4442fcefa2c"/></dir><file name="Edit.php" hash="4012e540aef249f395f6984b70b05831"/><file name="Grid.php" hash="c28bf1c9409c52f4664b1ade0fe18107"/></dir><file name="Attribute.php" hash="ed425e04ec92ee77615bd6c1593934b6"/><dir name="Comment"><dir name="Edit"><file name="Form.php" hash="08bd9c7297c69f700d01f12e6003b295"/><dir name="Tab"><file name="Form.php" hash="d4d8ec6a405e5467452a4353687a498a"/><file name="Stores.php" hash="000593ad3d36740fabe19a3d047dfb72"/></dir><file name="Tabs.php" hash="5fe3797142bd8e32d4b5966b2ee5ef63"/></dir><file name="Edit.php" hash="4d6e5621542b90dd4fa58ad4feb4e73a"/><file name="Grid.php" hash="06a3bcb290af5993206503721b226aa5"/></dir><file name="Comment.php" hash="9169614cd9c0389b8d87b71b20919291"/><dir name="Edit"><file name="Form.php" hash="cd5b024f1562796914c1144cc7f9df12"/><dir name="Tab"><file name="Attributes.php" hash="df666fee01f94a32a0a1c96843dd000e"/><file name="Product.php" hash="7ed01208dc8122cf20ade85c88cd68a2"/></dir><file name="Tabs.php" hash="4699029a193a56980e74860d7dd87a81"/></dir><file name="Edit.php" hash="c8218c242fce23dc3532fecd2b5ec9de"/><file name="Grid.php" hash="551769267de460a2c8ed23664648a796"/><dir name="Helper"><file name="File.php" hash="699eb91d21590e52a856fabecd40e05c"/><file name="Image.php" hash="c2584fdfe506c95d1fa29d02b35b8ca4"/></dir><dir name="Widget"><file name="Chooser.php" hash="dc5bc4a2c3aea8d5795e54877cbfd508"/></dir></dir><file name="Event.php" hash="f2e871d6ddf45e6ddc79a238c3dce470"/><dir name="Eventsmanager"><dir name="Helper"><dir name="Form"><dir name="Wysiwyg"><file name="Content.php" hash="b2cd6558db09e625a2353de302d16761"/></dir></dir></dir><dir name="Renderer"><dir name="Fieldset"><file name="Element.php" hash="629dab209f968f69a00b4e648bf7f83d"/></dir></dir></dir><dir name="Helper"><dir name="Column"><dir name="Renderer"><file name="Relation.php" hash="7037254e396a6f66f5d3764163aa22e5"/></dir></dir></dir><dir name="Invitationstatus"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="671034d8e53e7c639a1d8c1a6a01c8ba"/><dir name="Tab"><file name="Main.php" hash="8c58f6ff6f3c1f347b303815ca00b749"/><file name="Options.php" hash="b9a97bac817041ca94a17bdbcfb9a37a"/></dir><file name="Tabs.php" hash="21a234922eda3623cbace8504132fd5f"/></dir><file name="Edit.php" hash="8ea85b4168e4a4e6e9a2edd1abd5eb2a"/><file name="Grid.php" hash="f132b87730c38c66fa3b93e82822eb9a"/></dir><file name="Attribute.php" hash="75f79c3ec06954b024886d514380f4ba"/><dir name="Comment"><dir name="Edit"><file name="Form.php" hash="a4464dd3c35d826e40c7fa96b9d3333e"/><dir name="Tab"><file name="Form.php" hash="48ec720703d7044c976077243f5fe90b"/><file name="Stores.php" hash="6b6cc9b86a25a3868689c365189a8749"/></dir><file name="Tabs.php" hash="2b665926bd8a161c294f41a8a1386718"/></dir><file name="Edit.php" hash="f9ac8ec21724f2a9d96eca469064e333"/><file name="Grid.php" hash="7d1faea6fd5ce850420b94b9ff6b4f89"/></dir><file name="Comment.php" hash="87dc1a297965f367c29ad0795649aa11"/><dir name="Edit"><file name="Form.php" hash="530e6f3d098094540fa39a140bab607a"/><dir name="Tab"><file name="Attributes.php" hash="c68f5f9eb05944a3ce0a151021131b91"/></dir><file name="Tabs.php" hash="d99f0a11160be411dbba3d0a3f941226"/></dir><file name="Edit.php" hash="7da24dd25ca094020f5b960b6e808094"/><file name="Grid.php" hash="93bd16dd3d6cebc3ea28229fa4e1a497"/><dir name="Helper"><file name="File.php" hash="9d5c9065eecc41546991b050240ba595"/><file name="Image.php" hash="ebafec139642c314e58caf468f9de183"/></dir></dir><file name="Invitationstatus.php" hash="31fbe242a50a34542025973e063372af"/></dir><dir name="Catalog"><dir name="Product"><dir name="List"><file name="Event.php" hash="62802d8685af2b5314db900cc15cdaeb"/></dir></dir></dir><dir name="Event"><dir name="Catalog"><dir name="Product"><file name="List.php" hash="26c97a0d72bf32a284ff77fc8962a6ab"/></dir></dir><dir name="Comment"><file name="Form.php" hash="3b124410b7735ab6d6675b923d17681b"/><file name="List.php" hash="b20cf8969e2dbb985eeb7fca5a88f1e5"/></dir><dir name="Customer"><dir name="Comment"><file name="List.php" hash="e8fc53074ad309a8e6340e427bf84692"/><file name="View.php" hash="214bab3e64f6aeff5b961706da242505"/></dir></dir><file name="List.php" hash="eb3a9614e535805cf4e9be1d7f593ddf"/><file name="Notification.php" hash="71001772542df0c18bb27fc3d511433e"/><file name="Rss.php" hash="0681ac5666ba362583acc439e95ad34a"/><file name="View.php" hash="b01118270ded765c34f573299316f023"/><dir name="Widget"><file name="Banner.php" hash="caf8bdc2d4596a60ddd280de7e9f2f63"/><file name="Link.php" hash="54eca3c218c2c96a06551d33a55663c8"/><file name="View.php" hash="fc7b1b85c269a7946cc035ff6d64475d"/></dir></dir><dir name="Invitationstatus"><dir name="Comment"><file name="Form.php" hash="c6c128a8eeeea65c99ddbd0ac31e1ad0"/><file name="List.php" hash="68b2961104638628ac36c6e6ba51360a"/></dir><dir name="Customer"><dir name="Comment"><file name="List.php" hash="0122a070f363508334ad60ac0ceb043b"/><file name="View.php" hash="23e01f642cf4645cf2c7e4a31b81cc39"/></dir></dir><file name="List.php" hash="3dbb9dbf8a4a80b8a834bc53b3dd8346"/><file name="Rss.php" hash="f10d7de5d9d82912d33aa83ecdaed137"/><file name="View.php" hash="aa87af42ee7e22157f19071219f4b84e"/></dir><file name="Rss.php" hash="4eccf803704a1a4e220901a15fde685e"/></dir><dir name="Controller"><file name="Router.php" hash="85c5fe42f6b486b08f5eaa190c8ab721"/></dir><dir name="Helper"><file name="Data.php" hash="16ebe7d9e91631a03557703952f93c65"/><dir name="Event"><file name="Image.php" hash="f502fcdb1cea90218179406d2e014ad6"/></dir><file name="Event.php" hash="bfa4353a6cee63dff5ac3346d0b3c808"/><dir name="Image"><file name="Abstract.php" hash="aa6f51a9414794d2e7ed22b32ef51d80"/></dir><dir name="Invitationstatus"><file name="Image.php" hash="8da3dbad04cf32fbf0161ff1904a1622"/></dir><file name="Invitationstatus.php" hash="55e41e362f239fb802d1777f888dc98e"/><file name="Product.php" hash="d799a63a2aea4ab43d98b252a475a605"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Observer.php" hash="e8fa9962948028ab9f707317cb76398e"/><dir name="Search"><file name="Event.php" hash="d516392d54961ac8241cef9f9b951a34"/><file name="Invitationstatus.php" hash="7d27528b51b27f49264bb7c1c1d57699"/></dir><dir name="Source"><file name="Yesnodefault.php" hash="26edc4fd48aa8393218aa44ead769bfe"/></dir></dir><file name="Attribute.php" hash="4768bf7e380e142e9a103b8425604dda"/><dir name="Event"><dir name="Attribute"><dir name="Backend"><file name="File.php" hash="c0347c727bb2acb19a6c0337feb37d1b"/><file name="Image.php" hash="e4965b1a81711203dae33b7da781ec82"/><file name="Urlkey.php" hash="14701ee693d5a1b6bfc138f1b9c8a5b9"/></dir></dir><file name="Comment.php" hash="4e3870dfdeba568a5186260c533aa4f5"/><file name="Product.php" hash="aa84e75391bdaa78b79af1e986ebe2d7"/><file name="Source.php" hash="0248a1deee8f05ebdbd95f063efc6b23"/></dir><file name="Event.php" hash="7d51d5a6a4b1eb5d5f5af2c564f0cf5c"/><dir name="Invitationstatus"><dir name="Attribute"><dir name="Backend"><file name="File.php" hash="fdbab0df610b7f3af59c75ab815cfc3d"/><file name="Image.php" hash="1c3fed8eaa859409107d1abbcbf9eeb8"/><file name="Urlkey.php" hash="884963e1319b86773bf1e52eb16fdc0b"/></dir></dir><file name="Comment.php" hash="478f6686759f19a94a47d1a22f56e165"/></dir><file name="Invitationstatus.php" hash="74f9d92a9eea770e722d8c219a44bba9"/><file name="Observer.php" hash="40cf63d06d3a595fff4efdbaecd1f863"/><dir name="Resource"><file name="Attribute.php" hash="4d8dfebd6e67fdff9662b3e555c47aaa"/><dir name="Eav"><file name="Attribute.php" hash="ba432f7ad402294a26d88d98315c4f34"/></dir><dir name="Event"><dir name="Attribute"><file name="Collection.php" hash="e3f971aee6d0d11bab3e6f097773f3cb"/></dir><file name="Collection.php" hash="70dd5f00dc0ead7caf945452b72a4628"/><dir name="Comment"><file name="Collection.php" hash="02f15b3921f66dee6f01bcb4294094ad"/><dir name="Event"><file name="Collection.php" hash="367e1ac367e90c0938ae4d2d23f9ecfd"/></dir></dir><file name="Comment.php" hash="c49d516faa8de6b22e36af50b3546d71"/><dir name="Product"><file name="Collection.php" hash="a1de9e36077090671ab837ae513562f4"/></dir><file name="Product.php" hash="63a997811867abdb9f92f63c6290eda3"/></dir><file name="Event.php" hash="cae2aa7d5838af95bf9c5b5c9d13abec"/><dir name="Invitationstatus"><dir name="Attribute"><file name="Collection.php" hash="67fb57d09b2c65eb03988095c4210c7a"/></dir><file name="Collection.php" hash="fef5488455af980d5b244faeec366203"/><dir name="Comment"><file name="Collection.php" hash="45fe20de97f7af680f1be9d23c7ef724"/><dir name="Invitationstatus"><file name="Collection.php" hash="ad13c2d07048f62402ec0e26afbd3c43"/></dir></dir><file name="Comment.php" hash="5582c69eb50bee2ad8c4a38d3c543b47"/></dir><file name="Invitationstatus.php" hash="327ae665855a4c99ab503fe7ca8aa203"/><file name="Setup.php" hash="d7c7d7779290719841ab5657c22b3b25"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Eventsmanager"><dir name="Event"><file name="AttributeController.php" hash="0e19f1c9698f738a6e897df48d41514b"/><dir name="Catalog"><file name="ProductController.php" hash="bbe886df7d2a25776acd7d9693758de1"/></dir><file name="CommentController.php" hash="ebf4836fb14b85ca739d45d9ea7f1e95"/><file name="WidgetController.php" hash="ebd92ef9c22c9f15cb91184a74da4ebb"/></dir><file name="EventController.php" hash="aa85796dc9d76b4320c0763b1b54de1e"/><dir name="Invitationstatus"><file name="AttributeController.php" hash="711e6bc7a8e1bbcef0d21e6fbd2befb3"/><file name="CommentController.php" hash="ff52db18aa1a3ff47604790dee3cd7cb"/></dir><file name="InvitationstatusController.php" hash="6bf952fd40f938d3930d73147e00010d"/></dir></dir><dir name="Event"><dir name="Customer"><file name="CommentController.php" hash="cf6e279738ac74f643646da292e923bc"/></dir></dir><file name="EventController.php" hash="ee972e7fab13a0e3c5b8019b6c5a8cba"/><dir name="Invitationstatus"><dir name="Customer"><file name="CommentController.php" hash="55ab09d31d065bf2c6ab4d4830daf336"/></dir></dir><file name="InvitationstatusController.php" hash="fda729a439ab349b50ee3e16c1f4cc5b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3fc97572df7d9998b8582fd2f12d1bd7"/><file name="config.xml" hash="37eb208bababbdf25d0d2a7ef0dc20ed"/><file name="system.xml" hash="534e73840d0a7d5e4d14d3906f9d38c9"/><file name="widget.xml" hash="270dea388f1f54d7b6c8caea9814806f"/></dir><dir name="sql"><dir name="tpl_eventsmanager_setup"><file name="install-1.0.0.php" hash="5e03d590d384b3a94663f8e03638e999"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="tpl_eventsmanager.xml" hash="58ac255c4960c4073ac615b97a69f82a"/></dir><dir name="template"><dir name="tpl_eventsmanager"><dir name="attribute"><file name="js.phtml" hash="4094bb37e9e66816d5da33617a120a50"/></dir><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="3e20b55a4f85b958eaf71d77f948fbc6"/></dir></dir></dir><file name="grid.phtml" hash="6b4ae7b9a4c420ce1b0c2e11597008ef"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="tpl_eventsmanager.xml" hash="a990f8975d827a2a1507998c5b30181c"/></dir><dir name="template"><dir name="tpl_eventsmanager"><dir name="catalog"><dir name="product"><dir name="list"><file name="event.phtml" hash="6140cecae9cbcd23e9d0130a51f5b1f9"/></dir></dir></dir><dir name="event"><dir name="catalog"><dir name="product"><file name="list.phtml" hash="2df5dc6f69679baba4ae9cece5ae5036"/></dir></dir><dir name="comment"><file name="form.phtml" hash="992a211a11c651d858e36f0240ce670e"/><file name="list.phtml" hash="6bc1ab981db15b61005e48cfa432d474"/></dir><dir name="customer"><dir name="comment"><file name="list.phtml" hash="9c841e1f7d74b1841f32faafc53056b1"/><file name="view.phtml" hash="958aa3cf8b7ba38107baa7a33848fbed"/></dir></dir><file name="list.phtml" hash="f2ba0147096ea10f392c65b5944f789a"/><file name="notification.phtml" hash="34f2d0a139b1b6aab49a1fbb03b71c7d"/><file name="view.phtml" hash="170e208aacbdbd438cbb2633a2148fc3"/><file name="viewright.phtml" hash="f119c7f3db688ba555b53ccf32305965"/><dir name="widget"><file name="banner.phtml" hash="913e43afb3b30bdb083584251b68c0fe"/><file name="link.phtml" hash="dd75a0521120509ee125d9cfabb9752a"/><file name="view.phtml" hash="514b3048a2d595b24004feeec420ea3a"/></dir></dir><dir name="invitationstatus"><dir name="comment"><file name="form.phtml" hash="d0fb221544946387a218ca1ba047ae4d"/><file name="list.phtml" hash="99f964781b35b9de432a769caaecad69"/></dir><dir name="customer"><dir name="comment"><file name="list.phtml" hash="49ebf8090af1995d54eec823ef420721"/><file name="view.phtml" hash="9190f4ebc518ee1353c0f2190f8c467f"/></dir></dir><file name="list.phtml" hash="73d0e1d96399640abb845fc1724ce892"/><file name="view.phtml" hash="0746533642dc98ca39a3bbe40aa221c8"/></dir><file name="rss.phtml" hash="67ca1f2fd3259663f6f0c8dbaee09d36"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tpl_EventsManager.xml" hash="b1e8c92944d43a7506728d092d6c6f6e"/></dir></target><target name="mageweb"><dir name="js"><dir name="tpl_eventmanager"><file name="eventeditform.js" hash="52b4f2475ad8d7a21449adfcda2341b0"/><file name="jquery.js" hash="895323ed2f7258af4fae2c738c8aea49"/><file name="monthly.js" hash="b11258ebaf9f8ae9c6940999e5fa1915"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="tpl_eventsmanager"><dir name="bootstrap"><dir name="css"><file name="bootstrap-theme.css" hash="1e175b53796c46cb6835cbfb219fb248"/><file name="bootstrap-theme.css.map" hash="faebce397b393cd48125abdc529aa503"/><file name="bootstrap-theme.min.css" hash="ffb12f89f706291cb139b73c164a7722"/><file name="bootstrap.css" hash="e2958a4ebe9166dbaa6c59311b281021"/><file name="bootstrap.css.map" hash="3d2931e768a0bf96442072dcd0019aa6"/><file name="bootstrap.min.css" hash="385b964b68acb68d23cb43a5218fade9"/></dir><dir name="fonts"><file name="glyphicons-halflings-regular.eot" hash="7ad17c6085dee9a33787bac28fb23d46"/><file name="glyphicons-halflings-regular.svg" hash="32941d6330044744c02493835b799e90"/><file name="glyphicons-halflings-regular.ttf" hash="e49d52e74b7689a0727def99da31f3eb"/><file name="glyphicons-halflings-regular.woff" hash="68ed1dac06bf0409c18ae7bc62889170"/></dir></dir><file name="monthly.css" hash="6a43b23b7dafe258b388d5f8b91f42f6"/></dir></dir><dir name="js"><dir name="tpl_eventsmanager"><dir name="bootstrap"><dir name="js"><file name="bootstrap.js" hash="f91d38466de6410297c6dcd8287abbca"/><file name="bootstrap.min.js" hash="abda843684d022f3bc22bc83927fe05f"/></dir></dir></dir></dir><dir name="images"><dir name="tpl_eventsmanager"><file name="bg.jpg" hash="e4df7be76ac0496d24f44041302b1e75"/><file name="calendar-icon.png" hash="d78ff4410a3297a77804f2eaa8e11c1a"/><file name="clock.png" hash="6629a078dfacc2a8de4a90f0b9dbb3d5"/><file name="contact.png" hash="b04761748bd486bbe37a794c709836f5"/><file name="location-marker.png" hash="7eaa49fabb3fe03b980adc60028a599a"/><file name="no-image-available.png" hash="fd6fd9721b09b0cef5e23cffa0b22d75"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Tpl_EventsManager.csv" hash="a038ec3d1908a22509afe8b8a7a4f195"/><dir name="template"><dir name="email"><file name="tpl_eventmanager_customer_invitation_mail.html" hash="5fdffc3d090731c320337d20e04b8652"/><file name="tpl_eventmanager_event_cancel_mail.html" hash="9b7a098d2c278a7094ca67489625e004"/></dir></dir></dir></target></contents>
|
| 17 |
<compatible/>
|
| 18 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 19 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Tpl_EventsManager</name>
|
| 4 |
+
<version>1.0.4</version>
|
| 5 |
+
<stability>stable</stability>
|
| 6 |
<license uri="https://opensource.org/licenses/mit-license.php">The MIT License (MIT)</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>Simple and handy Magento Extension for creating and managing events.</summary>
|
| 10 |
<description>TPL Events Manager extension provides an easy and handy way of creating and managing various types of events with various permissions across your Magento store. These events can be made visible on frontend of store through event listing, event detail page and widgets. Events can be created and managed from the admin panel. 
|
| 11 |
</description>
|
| 12 |
+
<notes>Added Social Share buttons, Gravatar profile images for comments and other UI improvements</notes>
|
| 13 |
+
<authors><author><name>TechPrimeLab Software Pvt. Ltd</name><user>TPLIndia</user><email>ecommerce@techprimelab.com</email></author></authors>
|
| 14 |
+
<date>2016-04-20</date>
|
| 15 |
+
<time>10:23:03</time>
|
| 16 |
+
<contents><target name="magecommunity"><dir name="Tpl"><dir name="EventsManager"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><file name="Event.php" hash="cff3ffbd6034f22dc900ece155c8b15e"/></dir></dir></dir></dir><dir name="Event"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="29d854b4fd7ee4c28c60e9d2d9110bed"/><dir name="Tab"><file name="Main.php" hash="32146139b91c199a3143738ce5b528a5"/><file name="Options.php" hash="fb95f887d87d03e721f2ff5e15818579"/></dir><file name="Tabs.php" hash="560d5e04c05038ec3859a4442fcefa2c"/></dir><file name="Edit.php" hash="4012e540aef249f395f6984b70b05831"/><file name="Grid.php" hash="c28bf1c9409c52f4664b1ade0fe18107"/></dir><file name="Attribute.php" hash="ed425e04ec92ee77615bd6c1593934b6"/><dir name="Comment"><dir name="Edit"><file name="Form.php" hash="08bd9c7297c69f700d01f12e6003b295"/><dir name="Tab"><file name="Form.php" hash="d4d8ec6a405e5467452a4353687a498a"/><file name="Stores.php" hash="000593ad3d36740fabe19a3d047dfb72"/></dir><file name="Tabs.php" hash="5fe3797142bd8e32d4b5966b2ee5ef63"/></dir><file name="Edit.php" hash="4d6e5621542b90dd4fa58ad4feb4e73a"/><file name="Grid.php" hash="06a3bcb290af5993206503721b226aa5"/></dir><file name="Comment.php" hash="9169614cd9c0389b8d87b71b20919291"/><dir name="Edit"><file name="Form.php" hash="cd5b024f1562796914c1144cc7f9df12"/><dir name="Tab"><file name="Attributes.php" hash="df666fee01f94a32a0a1c96843dd000e"/><file name="Product.php" hash="7ed01208dc8122cf20ade85c88cd68a2"/></dir><file name="Tabs.php" hash="5813a0cd115eca3b0b613e37cb2f8068"/></dir><file name="Edit.php" hash="c8218c242fce23dc3532fecd2b5ec9de"/><file name="Grid.php" hash="551769267de460a2c8ed23664648a796"/><dir name="Helper"><file name="File.php" hash="699eb91d21590e52a856fabecd40e05c"/><file name="Image.php" hash="c2584fdfe506c95d1fa29d02b35b8ca4"/></dir><dir name="Widget"><file name="Chooser.php" hash="dc5bc4a2c3aea8d5795e54877cbfd508"/></dir></dir><file name="Event.php" hash="f2e871d6ddf45e6ddc79a238c3dce470"/><dir name="Eventsmanager"><dir name="Helper"><dir name="Form"><dir name="Wysiwyg"><file name="Content.php" hash="b2cd6558db09e625a2353de302d16761"/></dir></dir></dir><dir name="Renderer"><dir name="Fieldset"><file name="Element.php" hash="629dab209f968f69a00b4e648bf7f83d"/></dir></dir></dir><dir name="Helper"><dir name="Column"><dir name="Renderer"><file name="Relation.php" hash="7037254e396a6f66f5d3764163aa22e5"/></dir></dir></dir><dir name="Invitationstatus"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="671034d8e53e7c639a1d8c1a6a01c8ba"/><dir name="Tab"><file name="Main.php" hash="8c58f6ff6f3c1f347b303815ca00b749"/><file name="Options.php" hash="b9a97bac817041ca94a17bdbcfb9a37a"/></dir><file name="Tabs.php" hash="21a234922eda3623cbace8504132fd5f"/></dir><file name="Edit.php" hash="8ea85b4168e4a4e6e9a2edd1abd5eb2a"/><file name="Grid.php" hash="f132b87730c38c66fa3b93e82822eb9a"/></dir><file name="Attribute.php" hash="75f79c3ec06954b024886d514380f4ba"/><dir name="Comment"><dir name="Edit"><file name="Form.php" hash="a4464dd3c35d826e40c7fa96b9d3333e"/><dir name="Tab"><file name="Form.php" hash="48ec720703d7044c976077243f5fe90b"/><file name="Stores.php" hash="6b6cc9b86a25a3868689c365189a8749"/></dir><file name="Tabs.php" hash="2b665926bd8a161c294f41a8a1386718"/></dir><file name="Edit.php" hash="f9ac8ec21724f2a9d96eca469064e333"/><file name="Grid.php" hash="7d1faea6fd5ce850420b94b9ff6b4f89"/></dir><file name="Comment.php" hash="87dc1a297965f367c29ad0795649aa11"/><dir name="Edit"><file name="Form.php" hash="530e6f3d098094540fa39a140bab607a"/><dir name="Tab"><file name="Attributes.php" hash="c68f5f9eb05944a3ce0a151021131b91"/></dir><file name="Tabs.php" hash="d99f0a11160be411dbba3d0a3f941226"/></dir><file name="Edit.php" hash="7da24dd25ca094020f5b960b6e808094"/><file name="Grid.php" hash="93bd16dd3d6cebc3ea28229fa4e1a497"/><dir name="Helper"><file name="File.php" hash="9d5c9065eecc41546991b050240ba595"/><file name="Image.php" hash="ebafec139642c314e58caf468f9de183"/></dir></dir><file name="Invitationstatus.php" hash="31fbe242a50a34542025973e063372af"/></dir><dir name="Catalog"><dir name="Product"><dir name="List"><file name="Event.php" hash="62802d8685af2b5314db900cc15cdaeb"/></dir></dir></dir><dir name="Event"><dir name="Catalog"><dir name="Product"><file name="List.php" hash="26c97a0d72bf32a284ff77fc8962a6ab"/></dir></dir><dir name="Comment"><file name="Form.php" hash="3b124410b7735ab6d6675b923d17681b"/><file name="List.php" hash="b20cf8969e2dbb985eeb7fca5a88f1e5"/></dir><dir name="Customer"><dir name="Comment"><file name="List.php" hash="e8fc53074ad309a8e6340e427bf84692"/><file name="View.php" hash="214bab3e64f6aeff5b961706da242505"/></dir></dir><file name="List.php" hash="eb3a9614e535805cf4e9be1d7f593ddf"/><file name="Notification.php" hash="71001772542df0c18bb27fc3d511433e"/><file name="Rss.php" hash="0681ac5666ba362583acc439e95ad34a"/><file name="View.php" hash="b01118270ded765c34f573299316f023"/><dir name="Widget"><file name="Banner.php" hash="26ce1f3a97870230bc1b6f211684a71d"/><file name="Link.php" hash="54eca3c218c2c96a06551d33a55663c8"/><file name="View.php" hash="cd79e28f77778e13bdea4aa180ca925a"/></dir></dir><dir name="Invitationstatus"><dir name="Comment"><file name="Form.php" hash="c6c128a8eeeea65c99ddbd0ac31e1ad0"/><file name="List.php" hash="68b2961104638628ac36c6e6ba51360a"/></dir><dir name="Customer"><dir name="Comment"><file name="List.php" hash="0122a070f363508334ad60ac0ceb043b"/><file name="View.php" hash="23e01f642cf4645cf2c7e4a31b81cc39"/></dir></dir><file name="List.php" hash="3dbb9dbf8a4a80b8a834bc53b3dd8346"/><file name="Rss.php" hash="f10d7de5d9d82912d33aa83ecdaed137"/><file name="View.php" hash="aa87af42ee7e22157f19071219f4b84e"/></dir><file name="Rss.php" hash="4eccf803704a1a4e220901a15fde685e"/></dir><dir name="Controller"><file name="Router.php" hash="85c5fe42f6b486b08f5eaa190c8ab721"/></dir><dir name="Helper"><file name="Data.php" hash="16ebe7d9e91631a03557703952f93c65"/><dir name="Event"><file name="Image.php" hash="f502fcdb1cea90218179406d2e014ad6"/></dir><file name="Event.php" hash="bfa4353a6cee63dff5ac3346d0b3c808"/><dir name="Image"><file name="Abstract.php" hash="aa6f51a9414794d2e7ed22b32ef51d80"/></dir><dir name="Invitationstatus"><file name="Image.php" hash="8da3dbad04cf32fbf0161ff1904a1622"/></dir><file name="Invitationstatus.php" hash="55e41e362f239fb802d1777f888dc98e"/><file name="Product.php" hash="d799a63a2aea4ab43d98b252a475a605"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Observer.php" hash="e8fa9962948028ab9f707317cb76398e"/><dir name="Search"><file name="Event.php" hash="d516392d54961ac8241cef9f9b951a34"/><file name="Invitationstatus.php" hash="7d27528b51b27f49264bb7c1c1d57699"/></dir><dir name="Source"><file name="Yesnodefault.php" hash="26edc4fd48aa8393218aa44ead769bfe"/></dir></dir><file name="Attribute.php" hash="4768bf7e380e142e9a103b8425604dda"/><dir name="Event"><dir name="Attribute"><dir name="Backend"><file name="File.php" hash="c0347c727bb2acb19a6c0337feb37d1b"/><file name="Image.php" hash="e4965b1a81711203dae33b7da781ec82"/><file name="Urlkey.php" hash="14701ee693d5a1b6bfc138f1b9c8a5b9"/></dir></dir><file name="Comment.php" hash="4e3870dfdeba568a5186260c533aa4f5"/><file name="Product.php" hash="aa84e75391bdaa78b79af1e986ebe2d7"/><file name="Source.php" hash="0248a1deee8f05ebdbd95f063efc6b23"/></dir><file name="Event.php" hash="7d51d5a6a4b1eb5d5f5af2c564f0cf5c"/><dir name="Invitationstatus"><dir name="Attribute"><dir name="Backend"><file name="File.php" hash="fdbab0df610b7f3af59c75ab815cfc3d"/><file name="Image.php" hash="1c3fed8eaa859409107d1abbcbf9eeb8"/><file name="Urlkey.php" hash="884963e1319b86773bf1e52eb16fdc0b"/></dir></dir><file name="Comment.php" hash="478f6686759f19a94a47d1a22f56e165"/></dir><file name="Invitationstatus.php" hash="74f9d92a9eea770e722d8c219a44bba9"/><file name="Observer.php" hash="40cf63d06d3a595fff4efdbaecd1f863"/><dir name="Resource"><file name="Attribute.php" hash="4d8dfebd6e67fdff9662b3e555c47aaa"/><dir name="Eav"><file name="Attribute.php" hash="ba432f7ad402294a26d88d98315c4f34"/></dir><dir name="Event"><dir name="Attribute"><file name="Collection.php" hash="e3f971aee6d0d11bab3e6f097773f3cb"/></dir><file name="Collection.php" hash="70dd5f00dc0ead7caf945452b72a4628"/><dir name="Comment"><file name="Collection.php" hash="02f15b3921f66dee6f01bcb4294094ad"/><dir name="Event"><file name="Collection.php" hash="367e1ac367e90c0938ae4d2d23f9ecfd"/></dir></dir><file name="Comment.php" hash="c49d516faa8de6b22e36af50b3546d71"/><dir name="Product"><file name="Collection.php" hash="a1de9e36077090671ab837ae513562f4"/></dir><file name="Product.php" hash="63a997811867abdb9f92f63c6290eda3"/></dir><file name="Event.php" hash="cae2aa7d5838af95bf9c5b5c9d13abec"/><dir name="Invitationstatus"><dir name="Attribute"><file name="Collection.php" hash="67fb57d09b2c65eb03988095c4210c7a"/></dir><file name="Collection.php" hash="fef5488455af980d5b244faeec366203"/><dir name="Comment"><file name="Collection.php" hash="45fe20de97f7af680f1be9d23c7ef724"/><dir name="Invitationstatus"><file name="Collection.php" hash="ad13c2d07048f62402ec0e26afbd3c43"/></dir></dir><file name="Comment.php" hash="5582c69eb50bee2ad8c4a38d3c543b47"/></dir><file name="Invitationstatus.php" hash="327ae665855a4c99ab503fe7ca8aa203"/><file name="Setup.php" hash="d7c7d7779290719841ab5657c22b3b25"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Eventsmanager"><dir name="Event"><file name="AttributeController.php" hash="0e19f1c9698f738a6e897df48d41514b"/><dir name="Catalog"><file name="ProductController.php" hash="bbe886df7d2a25776acd7d9693758de1"/></dir><file name="CommentController.php" hash="ebf4836fb14b85ca739d45d9ea7f1e95"/><file name="WidgetController.php" hash="ebd92ef9c22c9f15cb91184a74da4ebb"/></dir><file name="EventController.php" hash="aa85796dc9d76b4320c0763b1b54de1e"/><dir name="Invitationstatus"><file name="AttributeController.php" hash="711e6bc7a8e1bbcef0d21e6fbd2befb3"/><file name="CommentController.php" hash="ff52db18aa1a3ff47604790dee3cd7cb"/></dir><file name="InvitationstatusController.php" hash="6bf952fd40f938d3930d73147e00010d"/></dir></dir><dir name="Event"><dir name="Customer"><file name="CommentController.php" hash="cf6e279738ac74f643646da292e923bc"/></dir></dir><file name="EventController.php" hash="ee972e7fab13a0e3c5b8019b6c5a8cba"/><dir name="Invitationstatus"><dir name="Customer"><file name="CommentController.php" hash="55ab09d31d065bf2c6ab4d4830daf336"/></dir></dir><file name="InvitationstatusController.php" hash="fda729a439ab349b50ee3e16c1f4cc5b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3fc97572df7d9998b8582fd2f12d1bd7"/><file name="config.xml" hash="37eb208bababbdf25d0d2a7ef0dc20ed"/><file name="system.xml" hash="534e73840d0a7d5e4d14d3906f9d38c9"/><file name="widget.xml" hash="c6d9611f1d949792cf4c3dfffba8d008"/></dir><dir name="sql"><dir name="tpl_eventsmanager_setup"><file name="install-1.0.0.php" hash="5e03d590d384b3a94663f8e03638e999"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="tpl_eventsmanager.xml" hash="58ac255c4960c4073ac615b97a69f82a"/></dir><dir name="template"><dir name="tpl_eventsmanager"><dir name="attribute"><file name="js.phtml" hash="4094bb37e9e66816d5da33617a120a50"/></dir><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="74e0430bfda3dfd2a0c212a090aaea56"/></dir></dir></dir><file name="grid.phtml" hash="6b4ae7b9a4c420ce1b0c2e11597008ef"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="tpl_eventsmanager.xml" hash="ec59ed37982eaaadc0ccb60508ec1eee"/></dir><dir name="template"><dir name="tpl_eventsmanager"><dir name="catalog"><dir name="product"><dir name="list"><file name="event.phtml" hash="6140cecae9cbcd23e9d0130a51f5b1f9"/></dir></dir></dir><dir name="event"><dir name="catalog"><dir name="product"><file name="list.phtml" hash="2df5dc6f69679baba4ae9cece5ae5036"/></dir></dir><dir name="comment"><file name="form.phtml" hash="5b104d9adc18d217493ea91cd64772a7"/><file name="list.phtml" hash="16468925d044ceaab1901cd30aa130e5"/></dir><dir name="customer"><dir name="comment"><file name="list.phtml" hash="9c841e1f7d74b1841f32faafc53056b1"/><file name="view.phtml" hash="958aa3cf8b7ba38107baa7a33848fbed"/></dir></dir><file name="eventseo.phtml" hash="3589b28f2d70c921316497618cb4b1bd"/><file name="list.phtml" hash="f66fb860fdbfff3440fe797ed6920f2f"/><file name="notification.phtml" hash="e47d972fd75e8080278e64b02821e748"/><file name="view.phtml" hash="544c375521e1b15af3288d4f737f09f8"/><file name="viewright.phtml" hash="824b890259d8b96d2a82f2218360d2c6"/><dir name="widget"><file name="banner.phtml" hash="3821279385000d19886f3c6aff875f6e"/><file name="link.phtml" hash="85b9036ba071f123353a8149c1198612"/><file name="view.phtml" hash="1064de15a91a0f2088ef9e21c3e1b316"/></dir></dir><dir name="invitationstatus"><dir name="comment"><file name="form.phtml" hash="d0fb221544946387a218ca1ba047ae4d"/><file name="list.phtml" hash="99f964781b35b9de432a769caaecad69"/></dir><dir name="customer"><dir name="comment"><file name="list.phtml" hash="49ebf8090af1995d54eec823ef420721"/><file name="view.phtml" hash="9190f4ebc518ee1353c0f2190f8c467f"/></dir></dir><file name="list.phtml" hash="ab8fbfca498c686b09b32e93dc25b6db"/><file name="view.phtml" hash="fbfeff771fa5cd0f65599b6005bce860"/></dir><file name="rss.phtml" hash="67ca1f2fd3259663f6f0c8dbaee09d36"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tpl_EventsManager.xml" hash="b1e8c92944d43a7506728d092d6c6f6e"/></dir></target><target name="mageweb"><dir name="js"><dir name="tpl_eventmanager"><file name="eventeditform.js" hash="52b4f2475ad8d7a21449adfcda2341b0"/><file name="jquery.js" hash="895323ed2f7258af4fae2c738c8aea49"/><file name="monthly.js" hash="b11258ebaf9f8ae9c6940999e5fa1915"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="tpl_eventsmanager"><dir name="bootstrap"><dir name="css"><file name="bootstrap-theme.css" hash="1e175b53796c46cb6835cbfb219fb248"/><file name="bootstrap-theme.css.map" hash="faebce397b393cd48125abdc529aa503"/><file name="bootstrap-theme.min.css" hash="ffb12f89f706291cb139b73c164a7722"/><file name="bootstrap.css" hash="9ed425e35351733074d0688501ec701d"/><file name="bootstrap.css.map" hash="3d2931e768a0bf96442072dcd0019aa6"/><file name="bootstrap.min.css" hash="385b964b68acb68d23cb43a5218fade9"/></dir><dir name="fonts"><file name="glyphicons-halflings-regular.eot" hash="7ad17c6085dee9a33787bac28fb23d46"/><file name="glyphicons-halflings-regular.svg" hash="32941d6330044744c02493835b799e90"/><file name="glyphicons-halflings-regular.ttf" hash="e49d52e74b7689a0727def99da31f3eb"/><file name="glyphicons-halflings-regular.woff" hash="68ed1dac06bf0409c18ae7bc62889170"/></dir></dir><file name="monthly.css" hash="6a43b23b7dafe258b388d5f8b91f42f6"/></dir></dir><dir name="js"><dir name="tpl_eventsmanager"><dir name="bootstrap"><dir name="js"><file name="bootstrap.js" hash="f91d38466de6410297c6dcd8287abbca"/><file name="bootstrap.min.js" hash="abda843684d022f3bc22bc83927fe05f"/></dir></dir></dir></dir><dir name="images"><dir name="tpl_eventsmanager"><file name="bg.jpg" hash="e4df7be76ac0496d24f44041302b1e75"/><file name="calendar-icon.png" hash="d78ff4410a3297a77804f2eaa8e11c1a"/><file name="clock.png" hash="6629a078dfacc2a8de4a90f0b9dbb3d5"/><file name="close-button.svg" hash="fb81a172ef533c7fb1bccf01346b53ab"/><file name="contact.png" hash="b04761748bd486bbe37a794c709836f5"/><file name="location-marker.png" hash="7eaa49fabb3fe03b980adc60028a599a"/><file name="no-image-available.png" hash="0fd5241fc42e748f3f6fdb6ffa6d4401"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Tpl_EventsManager.csv" hash="a038ec3d1908a22509afe8b8a7a4f195"/><dir name="template"><dir name="email"><file name="tpl_eventmanager_customer_invitation_mail.html" hash="5fdffc3d090731c320337d20e04b8652"/><file name="tpl_eventmanager_event_cancel_mail.html" hash="9b7a098d2c278a7094ca67489625e004"/></dir></dir></dir></target></contents>
|
| 17 |
<compatible/>
|
| 18 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 19 |
</package>
|
skin/frontend/base/default/css/tpl_eventsmanager/bootstrap/css/bootstrap.css
CHANGED
|
@@ -1,14 +1,23 @@
|
|
| 1 |
/*!
|
| 2 |
-
* Bootstrap v3.
|
| 3 |
-
* Copyright 2011-
|
| 4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
| 5 |
*/
|
| 6 |
|
| 7 |
-
/*!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
html {
|
| 9 |
font-family: sans-serif;
|
|
|
|
| 10 |
-webkit-text-size-adjust: 100%;
|
| 11 |
-
-ms-text-size-adjust: 100%;
|
| 12 |
}
|
| 13 |
body {
|
| 14 |
margin: 0;
|
|
@@ -22,6 +31,7 @@ footer,
|
|
| 22 |
header,
|
| 23 |
hgroup,
|
| 24 |
main,
|
|
|
|
| 25 |
nav,
|
| 26 |
section,
|
| 27 |
summary {
|
|
@@ -43,7 +53,7 @@ template {
|
|
| 43 |
display: none;
|
| 44 |
}
|
| 45 |
a {
|
| 46 |
-
background: transparent;
|
| 47 |
}
|
| 48 |
a:active,
|
| 49 |
a:hover {
|
|
@@ -60,28 +70,28 @@ dfn {
|
|
| 60 |
font-style: italic;
|
| 61 |
}
|
| 62 |
h1 {
|
| 63 |
-
margin: .67em 0;
|
| 64 |
font-size: 2em;
|
|
|
|
| 65 |
}
|
| 66 |
mark {
|
| 67 |
-
color: #000;
|
| 68 |
background: #ff0;
|
|
|
|
| 69 |
}
|
| 70 |
small {
|
| 71 |
font-size: 80%;
|
| 72 |
}
|
| 73 |
sub,
|
| 74 |
sup {
|
| 75 |
-
position: relative;
|
| 76 |
font-size: 75%;
|
| 77 |
line-height: 0;
|
|
|
|
| 78 |
vertical-align: baseline;
|
| 79 |
}
|
| 80 |
sup {
|
| 81 |
-
top:
|
| 82 |
}
|
| 83 |
sub {
|
| 84 |
-
bottom:
|
| 85 |
}
|
| 86 |
img {
|
| 87 |
border: 0;
|
|
@@ -93,10 +103,10 @@ figure {
|
|
| 93 |
margin: 1em 40px;
|
| 94 |
}
|
| 95 |
hr {
|
| 96 |
-
height: 0;
|
| 97 |
-webkit-box-sizing: content-box;
|
| 98 |
-moz-box-sizing: content-box;
|
| 99 |
box-sizing: content-box;
|
|
|
|
| 100 |
}
|
| 101 |
pre {
|
| 102 |
overflow: auto;
|
|
@@ -113,9 +123,9 @@ input,
|
|
| 113 |
optgroup,
|
| 114 |
select,
|
| 115 |
textarea {
|
| 116 |
-
margin: 0;
|
| 117 |
-
font: inherit;
|
| 118 |
color: inherit;
|
|
|
|
|
|
|
| 119 |
}
|
| 120 |
button {
|
| 121 |
overflow: visible;
|
|
@@ -137,8 +147,8 @@ html input[disabled] {
|
|
| 137 |
}
|
| 138 |
button::-moz-focus-inner,
|
| 139 |
input::-moz-focus-inner {
|
| 140 |
-
padding: 0;
|
| 141 |
border: 0;
|
|
|
|
| 142 |
}
|
| 143 |
input {
|
| 144 |
line-height: normal;
|
|
@@ -155,23 +165,23 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
| 155 |
height: auto;
|
| 156 |
}
|
| 157 |
input[type="search"] {
|
|
|
|
| 158 |
-webkit-box-sizing: content-box;
|
| 159 |
-moz-box-sizing: content-box;
|
| 160 |
box-sizing: content-box;
|
| 161 |
-
-webkit-appearance: textfield;
|
| 162 |
}
|
| 163 |
input[type="search"]::-webkit-search-cancel-button,
|
| 164 |
input[type="search"]::-webkit-search-decoration {
|
| 165 |
-webkit-appearance: none;
|
| 166 |
}
|
| 167 |
fieldset {
|
| 168 |
-
padding: .35em .625em .75em;
|
| 169 |
-
margin: 0 2px;
|
| 170 |
border: 1px solid #c0c0c0;
|
|
|
|
|
|
|
| 171 |
}
|
| 172 |
legend {
|
| 173 |
-
padding: 0;
|
| 174 |
border: 0;
|
|
|
|
| 175 |
}
|
| 176 |
textarea {
|
| 177 |
overflow: auto;
|
|
@@ -180,5783 +190,803 @@ optgroup {
|
|
| 180 |
font-weight: bold;
|
| 181 |
}
|
| 182 |
table {
|
| 183 |
-
border-spacing: 0;
|
| 184 |
border-collapse: collapse;
|
|
|
|
| 185 |
}
|
| 186 |
td,
|
| 187 |
th {
|
| 188 |
padding: 0;
|
| 189 |
}
|
| 190 |
-
|
| 191 |
-
|
| 192 |
-
|
| 193 |
-
|
| 194 |
-
background: transparent !important;
|
| 195 |
-
-webkit-box-shadow: none !important;
|
| 196 |
-
box-shadow: none !important;
|
| 197 |
-
}
|
| 198 |
-
a,
|
| 199 |
-
a:visited {
|
| 200 |
-
text-decoration: underline;
|
| 201 |
-
}
|
| 202 |
-
a[href]:after {
|
| 203 |
-
content: " (" attr(href) ")";
|
| 204 |
-
}
|
| 205 |
-
abbr[title]:after {
|
| 206 |
-
content: " (" attr(title) ")";
|
| 207 |
-
}
|
| 208 |
-
a[href^="javascript:"]:after,
|
| 209 |
-
a[href^="#"]:after {
|
| 210 |
-
content: "";
|
| 211 |
-
}
|
| 212 |
-
pre,
|
| 213 |
-
blockquote {
|
| 214 |
-
border: 1px solid #999;
|
| 215 |
-
|
| 216 |
-
page-break-inside: avoid;
|
| 217 |
-
}
|
| 218 |
-
thead {
|
| 219 |
-
display: table-header-group;
|
| 220 |
-
}
|
| 221 |
-
tr,
|
| 222 |
-
img {
|
| 223 |
-
page-break-inside: avoid;
|
| 224 |
-
}
|
| 225 |
-
img {
|
| 226 |
-
max-width: 100% !important;
|
| 227 |
-
}
|
| 228 |
-
p,
|
| 229 |
-
h2,
|
| 230 |
-
h3 {
|
| 231 |
-
orphans: 3;
|
| 232 |
-
widows: 3;
|
| 233 |
-
}
|
| 234 |
-
h2,
|
| 235 |
-
h3 {
|
| 236 |
-
page-break-after: avoid;
|
| 237 |
-
}
|
| 238 |
-
select {
|
| 239 |
-
background: #fff !important;
|
| 240 |
-
}
|
| 241 |
-
.navbar {
|
| 242 |
-
display: none;
|
| 243 |
-
}
|
| 244 |
-
.table td,
|
| 245 |
-
.table th {
|
| 246 |
-
background-color: #fff !important;
|
| 247 |
-
}
|
| 248 |
-
.btn > .caret,
|
| 249 |
-
.dropup > .btn > .caret {
|
| 250 |
-
border-top-color: #000 !important;
|
| 251 |
-
}
|
| 252 |
-
.label {
|
| 253 |
-
border: 1px solid #000;
|
| 254 |
-
}
|
| 255 |
-
.table {
|
| 256 |
-
border-collapse: collapse !important;
|
| 257 |
-
}
|
| 258 |
-
.table-bordered th,
|
| 259 |
-
.table-bordered td {
|
| 260 |
-
border: 1px solid #ddd !important;
|
| 261 |
-
}
|
| 262 |
-
}
|
| 263 |
-
@font-face {
|
| 264 |
-
font-family: 'Glyphicons Halflings';
|
| 265 |
-
|
| 266 |
-
src: url('../fonts/glyphicons-halflings-regular.eot');
|
| 267 |
-
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
|
| 268 |
-
}
|
| 269 |
-
.glyphicon {
|
| 270 |
-
position: relative;
|
| 271 |
-
top: 1px;
|
| 272 |
-
display: inline-block;
|
| 273 |
-
font-family: 'Glyphicons Halflings';
|
| 274 |
-
font-style: normal;
|
| 275 |
-
font-weight: normal;
|
| 276 |
-
line-height: 1;
|
| 277 |
-
|
| 278 |
-
-webkit-font-smoothing: antialiased;
|
| 279 |
-
-moz-osx-font-smoothing: grayscale;
|
| 280 |
-
}
|
| 281 |
-
.glyphicon-asterisk:before {
|
| 282 |
-
content: "\2a";
|
| 283 |
-
}
|
| 284 |
-
.glyphicon-plus:before {
|
| 285 |
-
content: "\2b";
|
| 286 |
-
}
|
| 287 |
-
.glyphicon-euro:before {
|
| 288 |
-
content: "\20ac";
|
| 289 |
-
}
|
| 290 |
-
.glyphicon-minus:before {
|
| 291 |
-
content: "\2212";
|
| 292 |
-
}
|
| 293 |
-
.glyphicon-cloud:before {
|
| 294 |
-
content: "\2601";
|
| 295 |
-
}
|
| 296 |
-
.glyphicon-envelope:before {
|
| 297 |
-
content: "\2709";
|
| 298 |
-
}
|
| 299 |
-
.glyphicon-pencil:before {
|
| 300 |
-
content: "\270f";
|
| 301 |
-
}
|
| 302 |
-
.glyphicon-glass:before {
|
| 303 |
-
content: "\e001";
|
| 304 |
-
}
|
| 305 |
-
.glyphicon-music:before {
|
| 306 |
-
content: "\e002";
|
| 307 |
-
}
|
| 308 |
-
.glyphicon-search:before {
|
| 309 |
-
content: "\e003";
|
| 310 |
}
|
| 311 |
-
|
| 312 |
-
|
|
|
|
|
|
|
|
|
|
| 313 |
}
|
| 314 |
-
|
| 315 |
-
|
|
|
|
| 316 |
}
|
| 317 |
-
|
| 318 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 319 |
}
|
| 320 |
-
|
| 321 |
-
|
|
|
|
|
|
|
| 322 |
}
|
| 323 |
-
|
| 324 |
-
|
|
|
|
|
|
|
| 325 |
}
|
| 326 |
-
|
| 327 |
-
|
| 328 |
}
|
| 329 |
-
|
| 330 |
-
|
| 331 |
}
|
| 332 |
-
.
|
| 333 |
-
|
|
|
|
|
|
|
| 334 |
}
|
| 335 |
-
.
|
| 336 |
-
|
| 337 |
}
|
| 338 |
-
.
|
| 339 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 340 |
}
|
| 341 |
-
.
|
| 342 |
-
|
| 343 |
}
|
| 344 |
-
|
| 345 |
-
|
|
|
|
|
|
|
|
|
|
| 346 |
}
|
| 347 |
-
.
|
| 348 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 349 |
}
|
| 350 |
-
.
|
| 351 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 352 |
}
|
| 353 |
-
|
| 354 |
-
|
| 355 |
}
|
| 356 |
-
.
|
| 357 |
-
|
|
|
|
|
|
|
|
|
|
| 358 |
}
|
| 359 |
-
|
| 360 |
-
|
|
|
|
|
|
|
| 361 |
}
|
| 362 |
-
|
| 363 |
-
|
|
|
|
|
|
|
| 364 |
}
|
| 365 |
-
|
| 366 |
-
|
|
|
|
|
|
|
| 367 |
}
|
| 368 |
-
.
|
| 369 |
-
|
|
|
|
|
|
|
|
|
|
| 370 |
}
|
| 371 |
-
.
|
| 372 |
-
|
|
|
|
| 373 |
}
|
| 374 |
-
.
|
| 375 |
-
|
|
|
|
|
|
|
|
|
|
| 376 |
}
|
| 377 |
-
.
|
| 378 |
-
|
| 379 |
}
|
| 380 |
-
.
|
| 381 |
-
|
| 382 |
}
|
| 383 |
-
.
|
| 384 |
-
|
| 385 |
}
|
| 386 |
-
.
|
| 387 |
-
|
| 388 |
}
|
| 389 |
-
.
|
| 390 |
-
|
| 391 |
}
|
| 392 |
-
.
|
| 393 |
-
|
| 394 |
}
|
| 395 |
-
.
|
| 396 |
-
|
| 397 |
}
|
| 398 |
-
.
|
| 399 |
-
|
| 400 |
}
|
| 401 |
-
.
|
| 402 |
-
|
| 403 |
}
|
| 404 |
-
.
|
| 405 |
-
|
| 406 |
}
|
| 407 |
-
.
|
| 408 |
-
|
| 409 |
}
|
| 410 |
-
.
|
| 411 |
-
|
| 412 |
}
|
| 413 |
-
.
|
| 414 |
-
|
| 415 |
}
|
| 416 |
-
.
|
| 417 |
-
|
| 418 |
}
|
| 419 |
-
.
|
| 420 |
-
|
| 421 |
}
|
| 422 |
-
.
|
| 423 |
-
|
| 424 |
}
|
| 425 |
-
.
|
| 426 |
-
|
| 427 |
}
|
| 428 |
-
.
|
| 429 |
-
|
| 430 |
}
|
| 431 |
-
.
|
| 432 |
-
|
| 433 |
}
|
| 434 |
-
.
|
| 435 |
-
|
| 436 |
}
|
| 437 |
-
.
|
| 438 |
-
|
| 439 |
}
|
| 440 |
-
.
|
| 441 |
-
|
| 442 |
}
|
| 443 |
-
.
|
| 444 |
-
|
| 445 |
}
|
| 446 |
-
.
|
| 447 |
-
|
| 448 |
}
|
| 449 |
-
.
|
| 450 |
-
|
| 451 |
}
|
| 452 |
-
.
|
| 453 |
-
|
| 454 |
}
|
| 455 |
-
.
|
| 456 |
-
|
| 457 |
}
|
| 458 |
-
.
|
| 459 |
-
|
| 460 |
}
|
| 461 |
-
.
|
| 462 |
-
|
| 463 |
}
|
| 464 |
-
.
|
| 465 |
-
|
| 466 |
}
|
| 467 |
-
.
|
| 468 |
-
|
| 469 |
}
|
| 470 |
-
.
|
| 471 |
-
|
| 472 |
}
|
| 473 |
-
.
|
| 474 |
-
|
| 475 |
}
|
| 476 |
-
.
|
| 477 |
-
|
| 478 |
}
|
| 479 |
-
.
|
| 480 |
-
|
| 481 |
}
|
| 482 |
-
.
|
| 483 |
-
|
| 484 |
}
|
| 485 |
-
.
|
| 486 |
-
|
| 487 |
}
|
| 488 |
-
.
|
| 489 |
-
|
| 490 |
}
|
| 491 |
-
.
|
| 492 |
-
|
| 493 |
}
|
| 494 |
-
.
|
| 495 |
-
|
| 496 |
}
|
| 497 |
-
.
|
| 498 |
-
|
| 499 |
}
|
| 500 |
-
.
|
| 501 |
-
|
| 502 |
}
|
| 503 |
-
.
|
| 504 |
-
|
| 505 |
}
|
| 506 |
-
.
|
| 507 |
-
|
| 508 |
}
|
| 509 |
-
.
|
| 510 |
-
|
| 511 |
}
|
| 512 |
-
.
|
| 513 |
-
|
| 514 |
}
|
| 515 |
-
.
|
| 516 |
-
|
| 517 |
}
|
| 518 |
-
.
|
| 519 |
-
|
| 520 |
}
|
| 521 |
-
.
|
| 522 |
-
|
| 523 |
}
|
| 524 |
-
.
|
| 525 |
-
|
| 526 |
}
|
| 527 |
-
.
|
| 528 |
-
|
| 529 |
}
|
| 530 |
-
.
|
| 531 |
-
|
| 532 |
-
}
|
| 533 |
-
.glyphicon-chevron-right:before {
|
| 534 |
-
content: "\e080";
|
| 535 |
-
}
|
| 536 |
-
.glyphicon-plus-sign:before {
|
| 537 |
-
content: "\e081";
|
| 538 |
-
}
|
| 539 |
-
.glyphicon-minus-sign:before {
|
| 540 |
-
content: "\e082";
|
| 541 |
-
}
|
| 542 |
-
.glyphicon-remove-sign:before {
|
| 543 |
-
content: "\e083";
|
| 544 |
-
}
|
| 545 |
-
.glyphicon-ok-sign:before {
|
| 546 |
-
content: "\e084";
|
| 547 |
-
}
|
| 548 |
-
.glyphicon-question-sign:before {
|
| 549 |
-
content: "\e085";
|
| 550 |
-
}
|
| 551 |
-
.glyphicon-info-sign:before {
|
| 552 |
-
content: "\e086";
|
| 553 |
-
}
|
| 554 |
-
.glyphicon-screenshot:before {
|
| 555 |
-
content: "\e087";
|
| 556 |
-
}
|
| 557 |
-
.glyphicon-remove-circle:before {
|
| 558 |
-
content: "\e088";
|
| 559 |
-
}
|
| 560 |
-
.glyphicon-ok-circle:before {
|
| 561 |
-
content: "\e089";
|
| 562 |
-
}
|
| 563 |
-
.glyphicon-ban-circle:before {
|
| 564 |
-
content: "\e090";
|
| 565 |
-
}
|
| 566 |
-
.glyphicon-arrow-left:before {
|
| 567 |
-
content: "\e091";
|
| 568 |
-
}
|
| 569 |
-
.glyphicon-arrow-right:before {
|
| 570 |
-
content: "\e092";
|
| 571 |
-
}
|
| 572 |
-
.glyphicon-arrow-up:before {
|
| 573 |
-
content: "\e093";
|
| 574 |
-
}
|
| 575 |
-
.glyphicon-arrow-down:before {
|
| 576 |
-
content: "\e094";
|
| 577 |
-
}
|
| 578 |
-
.glyphicon-share-alt:before {
|
| 579 |
-
content: "\e095";
|
| 580 |
-
}
|
| 581 |
-
.glyphicon-resize-full:before {
|
| 582 |
-
content: "\e096";
|
| 583 |
-
}
|
| 584 |
-
.glyphicon-resize-small:before {
|
| 585 |
-
content: "\e097";
|
| 586 |
-
}
|
| 587 |
-
.glyphicon-exclamation-sign:before {
|
| 588 |
-
content: "\e101";
|
| 589 |
-
}
|
| 590 |
-
.glyphicon-gift:before {
|
| 591 |
-
content: "\e102";
|
| 592 |
-
}
|
| 593 |
-
.glyphicon-leaf:before {
|
| 594 |
-
content: "\e103";
|
| 595 |
-
}
|
| 596 |
-
.glyphicon-fire:before {
|
| 597 |
-
content: "\e104";
|
| 598 |
-
}
|
| 599 |
-
.glyphicon-eye-open:before {
|
| 600 |
-
content: "\e105";
|
| 601 |
-
}
|
| 602 |
-
.glyphicon-eye-close:before {
|
| 603 |
-
content: "\e106";
|
| 604 |
-
}
|
| 605 |
-
.glyphicon-warning-sign:before {
|
| 606 |
-
content: "\e107";
|
| 607 |
-
}
|
| 608 |
-
.glyphicon-plane:before {
|
| 609 |
-
content: "\e108";
|
| 610 |
-
}
|
| 611 |
-
.glyphicon-calendar:before {
|
| 612 |
-
content: "\e109";
|
| 613 |
-
}
|
| 614 |
-
.glyphicon-random:before {
|
| 615 |
-
content: "\e110";
|
| 616 |
-
}
|
| 617 |
-
.glyphicon-comment:before {
|
| 618 |
-
content: "\e111";
|
| 619 |
-
}
|
| 620 |
-
.glyphicon-magnet:before {
|
| 621 |
-
content: "\e112";
|
| 622 |
-
}
|
| 623 |
-
.glyphicon-chevron-up:before {
|
| 624 |
-
content: "\e113";
|
| 625 |
-
}
|
| 626 |
-
.glyphicon-chevron-down:before {
|
| 627 |
-
content: "\e114";
|
| 628 |
-
}
|
| 629 |
-
.glyphicon-retweet:before {
|
| 630 |
-
content: "\e115";
|
| 631 |
-
}
|
| 632 |
-
.glyphicon-shopping-cart:before {
|
| 633 |
-
content: "\e116";
|
| 634 |
-
}
|
| 635 |
-
.glyphicon-folder-close:before {
|
| 636 |
-
content: "\e117";
|
| 637 |
-
}
|
| 638 |
-
.glyphicon-folder-open:before {
|
| 639 |
-
content: "\e118";
|
| 640 |
-
}
|
| 641 |
-
.glyphicon-resize-vertical:before {
|
| 642 |
-
content: "\e119";
|
| 643 |
-
}
|
| 644 |
-
.glyphicon-resize-horizontal:before {
|
| 645 |
-
content: "\e120";
|
| 646 |
-
}
|
| 647 |
-
.glyphicon-hdd:before {
|
| 648 |
-
content: "\e121";
|
| 649 |
-
}
|
| 650 |
-
.glyphicon-bullhorn:before {
|
| 651 |
-
content: "\e122";
|
| 652 |
-
}
|
| 653 |
-
.glyphicon-bell:before {
|
| 654 |
-
content: "\e123";
|
| 655 |
-
}
|
| 656 |
-
.glyphicon-certificate:before {
|
| 657 |
-
content: "\e124";
|
| 658 |
-
}
|
| 659 |
-
.glyphicon-thumbs-up:before {
|
| 660 |
-
content: "\e125";
|
| 661 |
-
}
|
| 662 |
-
.glyphicon-thumbs-down:before {
|
| 663 |
-
content: "\e126";
|
| 664 |
-
}
|
| 665 |
-
.glyphicon-hand-right:before {
|
| 666 |
-
content: "\e127";
|
| 667 |
-
}
|
| 668 |
-
.glyphicon-hand-left:before {
|
| 669 |
-
content: "\e128";
|
| 670 |
-
}
|
| 671 |
-
.glyphicon-hand-up:before {
|
| 672 |
-
content: "\e129";
|
| 673 |
-
}
|
| 674 |
-
.glyphicon-hand-down:before {
|
| 675 |
-
content: "\e130";
|
| 676 |
-
}
|
| 677 |
-
.glyphicon-circle-arrow-right:before {
|
| 678 |
-
content: "\e131";
|
| 679 |
-
}
|
| 680 |
-
.glyphicon-circle-arrow-left:before {
|
| 681 |
-
content: "\e132";
|
| 682 |
-
}
|
| 683 |
-
.glyphicon-circle-arrow-up:before {
|
| 684 |
-
content: "\e133";
|
| 685 |
-
}
|
| 686 |
-
.glyphicon-circle-arrow-down:before {
|
| 687 |
-
content: "\e134";
|
| 688 |
-
}
|
| 689 |
-
.glyphicon-globe:before {
|
| 690 |
-
content: "\e135";
|
| 691 |
-
}
|
| 692 |
-
.glyphicon-wrench:before {
|
| 693 |
-
content: "\e136";
|
| 694 |
-
}
|
| 695 |
-
.glyphicon-tasks:before {
|
| 696 |
-
content: "\e137";
|
| 697 |
-
}
|
| 698 |
-
.glyphicon-filter:before {
|
| 699 |
-
content: "\e138";
|
| 700 |
-
}
|
| 701 |
-
.glyphicon-briefcase:before {
|
| 702 |
-
content: "\e139";
|
| 703 |
-
}
|
| 704 |
-
.glyphicon-fullscreen:before {
|
| 705 |
-
content: "\e140";
|
| 706 |
-
}
|
| 707 |
-
.glyphicon-dashboard:before {
|
| 708 |
-
content: "\e141";
|
| 709 |
-
}
|
| 710 |
-
.glyphicon-paperclip:before {
|
| 711 |
-
content: "\e142";
|
| 712 |
-
}
|
| 713 |
-
.glyphicon-heart-empty:before {
|
| 714 |
-
content: "\e143";
|
| 715 |
-
}
|
| 716 |
-
.glyphicon-link:before {
|
| 717 |
-
content: "\e144";
|
| 718 |
-
}
|
| 719 |
-
.glyphicon-phone:before {
|
| 720 |
-
content: "\e145";
|
| 721 |
-
}
|
| 722 |
-
.glyphicon-pushpin:before {
|
| 723 |
-
content: "\e146";
|
| 724 |
-
}
|
| 725 |
-
.glyphicon-usd:before {
|
| 726 |
-
content: "\e148";
|
| 727 |
-
}
|
| 728 |
-
.glyphicon-gbp:before {
|
| 729 |
-
content: "\e149";
|
| 730 |
-
}
|
| 731 |
-
.glyphicon-sort:before {
|
| 732 |
-
content: "\e150";
|
| 733 |
-
}
|
| 734 |
-
.glyphicon-sort-by-alphabet:before {
|
| 735 |
-
content: "\e151";
|
| 736 |
-
}
|
| 737 |
-
.glyphicon-sort-by-alphabet-alt:before {
|
| 738 |
-
content: "\e152";
|
| 739 |
-
}
|
| 740 |
-
.glyphicon-sort-by-order:before {
|
| 741 |
-
content: "\e153";
|
| 742 |
-
}
|
| 743 |
-
.glyphicon-sort-by-order-alt:before {
|
| 744 |
-
content: "\e154";
|
| 745 |
-
}
|
| 746 |
-
.glyphicon-sort-by-attributes:before {
|
| 747 |
-
content: "\e155";
|
| 748 |
-
}
|
| 749 |
-
.glyphicon-sort-by-attributes-alt:before {
|
| 750 |
-
content: "\e156";
|
| 751 |
-
}
|
| 752 |
-
.glyphicon-unchecked:before {
|
| 753 |
-
content: "\e157";
|
| 754 |
-
}
|
| 755 |
-
.glyphicon-expand:before {
|
| 756 |
-
content: "\e158";
|
| 757 |
-
}
|
| 758 |
-
.glyphicon-collapse-down:before {
|
| 759 |
-
content: "\e159";
|
| 760 |
-
}
|
| 761 |
-
.glyphicon-collapse-up:before {
|
| 762 |
-
content: "\e160";
|
| 763 |
-
}
|
| 764 |
-
.glyphicon-log-in:before {
|
| 765 |
-
content: "\e161";
|
| 766 |
-
}
|
| 767 |
-
.glyphicon-flash:before {
|
| 768 |
-
content: "\e162";
|
| 769 |
-
}
|
| 770 |
-
.glyphicon-log-out:before {
|
| 771 |
-
content: "\e163";
|
| 772 |
-
}
|
| 773 |
-
.glyphicon-new-window:before {
|
| 774 |
-
content: "\e164";
|
| 775 |
-
}
|
| 776 |
-
.glyphicon-record:before {
|
| 777 |
-
content: "\e165";
|
| 778 |
-
}
|
| 779 |
-
.glyphicon-save:before {
|
| 780 |
-
content: "\e166";
|
| 781 |
-
}
|
| 782 |
-
.glyphicon-open:before {
|
| 783 |
-
content: "\e167";
|
| 784 |
-
}
|
| 785 |
-
.glyphicon-saved:before {
|
| 786 |
-
content: "\e168";
|
| 787 |
-
}
|
| 788 |
-
.glyphicon-import:before {
|
| 789 |
-
content: "\e169";
|
| 790 |
-
}
|
| 791 |
-
.glyphicon-export:before {
|
| 792 |
-
content: "\e170";
|
| 793 |
-
}
|
| 794 |
-
.glyphicon-send:before {
|
| 795 |
-
content: "\e171";
|
| 796 |
-
}
|
| 797 |
-
.glyphicon-floppy-disk:before {
|
| 798 |
-
content: "\e172";
|
| 799 |
-
}
|
| 800 |
-
.glyphicon-floppy-saved:before {
|
| 801 |
-
content: "\e173";
|
| 802 |
-
}
|
| 803 |
-
.glyphicon-floppy-remove:before {
|
| 804 |
-
content: "\e174";
|
| 805 |
-
}
|
| 806 |
-
.glyphicon-floppy-save:before {
|
| 807 |
-
content: "\e175";
|
| 808 |
-
}
|
| 809 |
-
.glyphicon-floppy-open:before {
|
| 810 |
-
content: "\e176";
|
| 811 |
-
}
|
| 812 |
-
.glyphicon-credit-card:before {
|
| 813 |
-
content: "\e177";
|
| 814 |
-
}
|
| 815 |
-
.glyphicon-transfer:before {
|
| 816 |
-
content: "\e178";
|
| 817 |
-
}
|
| 818 |
-
.glyphicon-cutlery:before {
|
| 819 |
-
content: "\e179";
|
| 820 |
-
}
|
| 821 |
-
.glyphicon-header:before {
|
| 822 |
-
content: "\e180";
|
| 823 |
-
}
|
| 824 |
-
.glyphicon-compressed:before {
|
| 825 |
-
content: "\e181";
|
| 826 |
-
}
|
| 827 |
-
.glyphicon-earphone:before {
|
| 828 |
-
content: "\e182";
|
| 829 |
-
}
|
| 830 |
-
.glyphicon-phone-alt:before {
|
| 831 |
-
content: "\e183";
|
| 832 |
-
}
|
| 833 |
-
.glyphicon-tower:before {
|
| 834 |
-
content: "\e184";
|
| 835 |
-
}
|
| 836 |
-
.glyphicon-stats:before {
|
| 837 |
-
content: "\e185";
|
| 838 |
-
}
|
| 839 |
-
.glyphicon-sd-video:before {
|
| 840 |
-
content: "\e186";
|
| 841 |
-
}
|
| 842 |
-
.glyphicon-hd-video:before {
|
| 843 |
-
content: "\e187";
|
| 844 |
-
}
|
| 845 |
-
.glyphicon-subtitles:before {
|
| 846 |
-
content: "\e188";
|
| 847 |
-
}
|
| 848 |
-
.glyphicon-sound-stereo:before {
|
| 849 |
-
content: "\e189";
|
| 850 |
-
}
|
| 851 |
-
.glyphicon-sound-dolby:before {
|
| 852 |
-
content: "\e190";
|
| 853 |
-
}
|
| 854 |
-
.glyphicon-sound-5-1:before {
|
| 855 |
-
content: "\e191";
|
| 856 |
-
}
|
| 857 |
-
.glyphicon-sound-6-1:before {
|
| 858 |
-
content: "\e192";
|
| 859 |
-
}
|
| 860 |
-
.glyphicon-sound-7-1:before {
|
| 861 |
-
content: "\e193";
|
| 862 |
-
}
|
| 863 |
-
.glyphicon-copyright-mark:before {
|
| 864 |
-
content: "\e194";
|
| 865 |
-
}
|
| 866 |
-
.glyphicon-registration-mark:before {
|
| 867 |
-
content: "\e195";
|
| 868 |
-
}
|
| 869 |
-
.glyphicon-cloud-download:before {
|
| 870 |
-
content: "\e197";
|
| 871 |
-
}
|
| 872 |
-
.glyphicon-cloud-upload:before {
|
| 873 |
-
content: "\e198";
|
| 874 |
-
}
|
| 875 |
-
.glyphicon-tree-conifer:before {
|
| 876 |
-
content: "\e199";
|
| 877 |
-
}
|
| 878 |
-
.glyphicon-tree-deciduous:before {
|
| 879 |
-
content: "\e200";
|
| 880 |
-
}
|
| 881 |
-
* {
|
| 882 |
-
-webkit-box-sizing: border-box;
|
| 883 |
-
-moz-box-sizing: border-box;
|
| 884 |
-
box-sizing: border-box;
|
| 885 |
-
}
|
| 886 |
-
*:before,
|
| 887 |
-
*:after {
|
| 888 |
-
-webkit-box-sizing: border-box;
|
| 889 |
-
-moz-box-sizing: border-box;
|
| 890 |
-
box-sizing: border-box;
|
| 891 |
-
}
|
| 892 |
-
html {
|
| 893 |
-
font-size: 10px;
|
| 894 |
-
|
| 895 |
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
| 896 |
-
}
|
| 897 |
-
body {
|
| 898 |
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
| 899 |
-
font-size: 14px;
|
| 900 |
-
line-height: 1.42857143;
|
| 901 |
-
color: #333;
|
| 902 |
-
background-color: #fff;
|
| 903 |
-
}
|
| 904 |
-
input,
|
| 905 |
-
button,
|
| 906 |
-
select,
|
| 907 |
-
textarea {
|
| 908 |
-
font-family: inherit;
|
| 909 |
-
font-size: inherit;
|
| 910 |
-
line-height: inherit;
|
| 911 |
-
}
|
| 912 |
-
a {
|
| 913 |
-
color: #428bca;
|
| 914 |
-
text-decoration: none;
|
| 915 |
-
}
|
| 916 |
-
a:hover,
|
| 917 |
-
a:focus {
|
| 918 |
-
color: #2a6496;
|
| 919 |
-
text-decoration: underline;
|
| 920 |
-
}
|
| 921 |
-
a:focus {
|
| 922 |
-
outline: thin dotted;
|
| 923 |
-
outline: 5px auto -webkit-focus-ring-color;
|
| 924 |
-
outline-offset: -2px;
|
| 925 |
-
}
|
| 926 |
-
figure {
|
| 927 |
-
margin: 0;
|
| 928 |
-
}
|
| 929 |
-
img {
|
| 930 |
-
vertical-align: middle;
|
| 931 |
-
}
|
| 932 |
-
.img-responsive,
|
| 933 |
-
.thumbnail > img,
|
| 934 |
-
.thumbnail a > img,
|
| 935 |
-
.carousel-inner > .item > img,
|
| 936 |
-
.carousel-inner > .item > a > img {
|
| 937 |
-
display: block;
|
| 938 |
-
width: 100% \9;
|
| 939 |
-
max-width: 100%;
|
| 940 |
-
height: auto;
|
| 941 |
-
}
|
| 942 |
-
.img-rounded {
|
| 943 |
-
border-radius: 6px;
|
| 944 |
-
}
|
| 945 |
-
.img-thumbnail {
|
| 946 |
-
display: inline-block;
|
| 947 |
-
width: 100% \9;
|
| 948 |
-
max-width: 100%;
|
| 949 |
-
height: auto;
|
| 950 |
-
padding: 4px;
|
| 951 |
-
line-height: 1.42857143;
|
| 952 |
-
background-color: #fff;
|
| 953 |
-
border: 1px solid #ddd;
|
| 954 |
-
border-radius: 4px;
|
| 955 |
-
-webkit-transition: all .2s ease-in-out;
|
| 956 |
-
-o-transition: all .2s ease-in-out;
|
| 957 |
-
transition: all .2s ease-in-out;
|
| 958 |
-
}
|
| 959 |
-
.img-circle {
|
| 960 |
-
border-radius: 50%;
|
| 961 |
-
}
|
| 962 |
-
hr {
|
| 963 |
-
margin-top: 20px;
|
| 964 |
-
margin-bottom: 20px;
|
| 965 |
-
border: 0;
|
| 966 |
-
border-top: 1px solid #eee;
|
| 967 |
-
}
|
| 968 |
-
.sr-only {
|
| 969 |
-
position: absolute;
|
| 970 |
-
width: 1px;
|
| 971 |
-
height: 1px;
|
| 972 |
-
padding: 0;
|
| 973 |
-
margin: -1px;
|
| 974 |
-
overflow: hidden;
|
| 975 |
-
clip: rect(0, 0, 0, 0);
|
| 976 |
-
border: 0;
|
| 977 |
-
}
|
| 978 |
-
.sr-only-focusable:active,
|
| 979 |
-
.sr-only-focusable:focus {
|
| 980 |
-
position: static;
|
| 981 |
-
width: auto;
|
| 982 |
-
height: auto;
|
| 983 |
-
margin: 0;
|
| 984 |
-
overflow: visible;
|
| 985 |
-
clip: auto;
|
| 986 |
-
}
|
| 987 |
-
h1,
|
| 988 |
-
h2,
|
| 989 |
-
h3,
|
| 990 |
-
h4,
|
| 991 |
-
h5,
|
| 992 |
-
h6,
|
| 993 |
-
.h1,
|
| 994 |
-
.h2,
|
| 995 |
-
.h3,
|
| 996 |
-
.h4,
|
| 997 |
-
.h5,
|
| 998 |
-
.h6 {
|
| 999 |
-
font-family: inherit;
|
| 1000 |
-
font-weight: 500;
|
| 1001 |
-
line-height: 1.1;
|
| 1002 |
-
color: inherit;
|
| 1003 |
-
}
|
| 1004 |
-
h1 small,
|
| 1005 |
-
h2 small,
|
| 1006 |
-
h3 small,
|
| 1007 |
-
h4 small,
|
| 1008 |
-
h5 small,
|
| 1009 |
-
h6 small,
|
| 1010 |
-
.h1 small,
|
| 1011 |
-
.h2 small,
|
| 1012 |
-
.h3 small,
|
| 1013 |
-
.h4 small,
|
| 1014 |
-
.h5 small,
|
| 1015 |
-
.h6 small,
|
| 1016 |
-
h1 .small,
|
| 1017 |
-
h2 .small,
|
| 1018 |
-
h3 .small,
|
| 1019 |
-
h4 .small,
|
| 1020 |
-
h5 .small,
|
| 1021 |
-
h6 .small,
|
| 1022 |
-
.h1 .small,
|
| 1023 |
-
.h2 .small,
|
| 1024 |
-
.h3 .small,
|
| 1025 |
-
.h4 .small,
|
| 1026 |
-
.h5 .small,
|
| 1027 |
-
.h6 .small {
|
| 1028 |
-
font-weight: normal;
|
| 1029 |
-
line-height: 1;
|
| 1030 |
-
color: #777;
|
| 1031 |
-
}
|
| 1032 |
-
h1,
|
| 1033 |
-
.h1,
|
| 1034 |
-
h2,
|
| 1035 |
-
.h2,
|
| 1036 |
-
h3,
|
| 1037 |
-
.h3 {
|
| 1038 |
-
margin-top: 20px;
|
| 1039 |
-
margin-bottom: 10px;
|
| 1040 |
-
}
|
| 1041 |
-
h1 small,
|
| 1042 |
-
.h1 small,
|
| 1043 |
-
h2 small,
|
| 1044 |
-
.h2 small,
|
| 1045 |
-
h3 small,
|
| 1046 |
-
.h3 small,
|
| 1047 |
-
h1 .small,
|
| 1048 |
-
.h1 .small,
|
| 1049 |
-
h2 .small,
|
| 1050 |
-
.h2 .small,
|
| 1051 |
-
h3 .small,
|
| 1052 |
-
.h3 .small {
|
| 1053 |
-
font-size: 65%;
|
| 1054 |
-
}
|
| 1055 |
-
h4,
|
| 1056 |
-
.h4,
|
| 1057 |
-
h5,
|
| 1058 |
-
.h5,
|
| 1059 |
-
h6,
|
| 1060 |
-
.h6 {
|
| 1061 |
-
margin-top: 10px;
|
| 1062 |
-
margin-bottom: 10px;
|
| 1063 |
-
}
|
| 1064 |
-
h4 small,
|
| 1065 |
-
.h4 small,
|
| 1066 |
-
h5 small,
|
| 1067 |
-
.h5 small,
|
| 1068 |
-
h6 small,
|
| 1069 |
-
.h6 small,
|
| 1070 |
-
h4 .small,
|
| 1071 |
-
.h4 .small,
|
| 1072 |
-
h5 .small,
|
| 1073 |
-
.h5 .small,
|
| 1074 |
-
h6 .small,
|
| 1075 |
-
.h6 .small {
|
| 1076 |
-
font-size: 75%;
|
| 1077 |
-
}
|
| 1078 |
-
h1,
|
| 1079 |
-
.h1 {
|
| 1080 |
-
font-size: 36px;
|
| 1081 |
-
}
|
| 1082 |
-
h2,
|
| 1083 |
-
.h2 {
|
| 1084 |
-
font-size: 30px;
|
| 1085 |
-
}
|
| 1086 |
-
h3,
|
| 1087 |
-
.h3 {
|
| 1088 |
-
font-size: 24px;
|
| 1089 |
-
}
|
| 1090 |
-
h4,
|
| 1091 |
-
.h4 {
|
| 1092 |
-
font-size: 18px;
|
| 1093 |
-
}
|
| 1094 |
-
h5,
|
| 1095 |
-
.h5 {
|
| 1096 |
-
font-size: 14px;
|
| 1097 |
-
}
|
| 1098 |
-
h6,
|
| 1099 |
-
.h6 {
|
| 1100 |
-
font-size: 12px;
|
| 1101 |
-
}
|
| 1102 |
-
p {
|
| 1103 |
-
margin: 0 0 10px;
|
| 1104 |
-
}
|
| 1105 |
-
.lead {
|
| 1106 |
-
margin-bottom: 20px;
|
| 1107 |
-
font-size: 16px;
|
| 1108 |
-
font-weight: 300;
|
| 1109 |
-
line-height: 1.4;
|
| 1110 |
-
}
|
| 1111 |
-
@media (min-width: 768px) {
|
| 1112 |
-
.lead {
|
| 1113 |
-
font-size: 21px;
|
| 1114 |
-
}
|
| 1115 |
-
}
|
| 1116 |
-
small,
|
| 1117 |
-
.small {
|
| 1118 |
-
font-size: 85%;
|
| 1119 |
-
}
|
| 1120 |
-
cite {
|
| 1121 |
-
font-style: normal;
|
| 1122 |
-
}
|
| 1123 |
-
mark,
|
| 1124 |
-
.mark {
|
| 1125 |
-
padding: .2em;
|
| 1126 |
-
background-color: #fcf8e3;
|
| 1127 |
-
}
|
| 1128 |
-
.text-left {
|
| 1129 |
-
text-align: left;
|
| 1130 |
-
}
|
| 1131 |
-
.text-right {
|
| 1132 |
-
text-align: right;
|
| 1133 |
-
}
|
| 1134 |
-
.text-center {
|
| 1135 |
-
text-align: center;
|
| 1136 |
-
}
|
| 1137 |
-
.text-justify {
|
| 1138 |
-
text-align: justify;
|
| 1139 |
-
}
|
| 1140 |
-
.text-nowrap {
|
| 1141 |
-
white-space: nowrap;
|
| 1142 |
-
}
|
| 1143 |
-
.text-lowercase {
|
| 1144 |
-
text-transform: lowercase;
|
| 1145 |
-
}
|
| 1146 |
-
.text-uppercase {
|
| 1147 |
-
text-transform: uppercase;
|
| 1148 |
-
}
|
| 1149 |
-
.text-capitalize {
|
| 1150 |
-
text-transform: capitalize;
|
| 1151 |
-
}
|
| 1152 |
-
.text-muted {
|
| 1153 |
-
color: #777;
|
| 1154 |
-
}
|
| 1155 |
-
.text-primary {
|
| 1156 |
-
color: #428bca;
|
| 1157 |
-
}
|
| 1158 |
-
a.text-primary:hover {
|
| 1159 |
-
color: #3071a9;
|
| 1160 |
-
}
|
| 1161 |
-
.text-success {
|
| 1162 |
-
color: #3c763d;
|
| 1163 |
-
}
|
| 1164 |
-
a.text-success:hover {
|
| 1165 |
-
color: #2b542c;
|
| 1166 |
-
}
|
| 1167 |
-
.text-info {
|
| 1168 |
-
color: #31708f;
|
| 1169 |
-
}
|
| 1170 |
-
a.text-info:hover {
|
| 1171 |
-
color: #245269;
|
| 1172 |
-
}
|
| 1173 |
-
.text-warning {
|
| 1174 |
-
color: #8a6d3b;
|
| 1175 |
-
}
|
| 1176 |
-
a.text-warning:hover {
|
| 1177 |
-
color: #66512c;
|
| 1178 |
-
}
|
| 1179 |
-
.text-danger {
|
| 1180 |
-
color: #a94442;
|
| 1181 |
-
}
|
| 1182 |
-
a.text-danger:hover {
|
| 1183 |
-
color: #843534;
|
| 1184 |
-
}
|
| 1185 |
-
.bg-primary {
|
| 1186 |
-
color: #fff;
|
| 1187 |
-
background-color: #428bca;
|
| 1188 |
-
}
|
| 1189 |
-
a.bg-primary:hover {
|
| 1190 |
-
background-color: #3071a9;
|
| 1191 |
-
}
|
| 1192 |
-
.bg-success {
|
| 1193 |
-
background-color: #dff0d8;
|
| 1194 |
-
}
|
| 1195 |
-
a.bg-success:hover {
|
| 1196 |
-
background-color: #c1e2b3;
|
| 1197 |
-
}
|
| 1198 |
-
.bg-info {
|
| 1199 |
-
background-color: #d9edf7;
|
| 1200 |
-
}
|
| 1201 |
-
a.bg-info:hover {
|
| 1202 |
-
background-color: #afd9ee;
|
| 1203 |
-
}
|
| 1204 |
-
.bg-warning {
|
| 1205 |
-
background-color: #fcf8e3;
|
| 1206 |
-
}
|
| 1207 |
-
a.bg-warning:hover {
|
| 1208 |
-
background-color: #f7ecb5;
|
| 1209 |
-
}
|
| 1210 |
-
.bg-danger {
|
| 1211 |
-
background-color: #f2dede;
|
| 1212 |
-
}
|
| 1213 |
-
a.bg-danger:hover {
|
| 1214 |
-
background-color: #e4b9b9;
|
| 1215 |
-
}
|
| 1216 |
-
.page-header {
|
| 1217 |
-
padding-bottom: 9px;
|
| 1218 |
-
margin: 40px 0 20px;
|
| 1219 |
-
border-bottom: 1px solid #eee;
|
| 1220 |
-
}
|
| 1221 |
-
ul,
|
| 1222 |
-
ol {
|
| 1223 |
-
margin-top: 0;
|
| 1224 |
-
margin-bottom: 10px;
|
| 1225 |
-
}
|
| 1226 |
-
ul ul,
|
| 1227 |
-
ol ul,
|
| 1228 |
-
ul ol,
|
| 1229 |
-
ol ol {
|
| 1230 |
-
margin-bottom: 0;
|
| 1231 |
-
}
|
| 1232 |
-
.list-unstyled {
|
| 1233 |
-
padding-left: 0;
|
| 1234 |
-
list-style: none;
|
| 1235 |
-
}
|
| 1236 |
-
.list-inline {
|
| 1237 |
-
padding-left: 0;
|
| 1238 |
-
margin-left: -5px;
|
| 1239 |
-
list-style: none;
|
| 1240 |
-
}
|
| 1241 |
-
.list-inline > li {
|
| 1242 |
-
display: inline-block;
|
| 1243 |
-
padding-right: 5px;
|
| 1244 |
-
padding-left: 5px;
|
| 1245 |
-
}
|
| 1246 |
-
dl {
|
| 1247 |
-
margin-top: 0;
|
| 1248 |
-
margin-bottom: 20px;
|
| 1249 |
-
}
|
| 1250 |
-
dt,
|
| 1251 |
-
dd {
|
| 1252 |
-
line-height: 1.42857143;
|
| 1253 |
-
}
|
| 1254 |
-
dt {
|
| 1255 |
-
font-weight: bold;
|
| 1256 |
-
}
|
| 1257 |
-
dd {
|
| 1258 |
-
margin-left: 0;
|
| 1259 |
-
}
|
| 1260 |
-
@media (min-width: 768px) {
|
| 1261 |
-
.dl-horizontal dt {
|
| 1262 |
-
float: left;
|
| 1263 |
-
width: 160px;
|
| 1264 |
-
overflow: hidden;
|
| 1265 |
-
clear: left;
|
| 1266 |
-
text-align: right;
|
| 1267 |
-
text-overflow: ellipsis;
|
| 1268 |
-
white-space: nowrap;
|
| 1269 |
-
}
|
| 1270 |
-
.dl-horizontal dd {
|
| 1271 |
-
margin-left: 180px;
|
| 1272 |
-
}
|
| 1273 |
-
}
|
| 1274 |
-
abbr[title],
|
| 1275 |
-
abbr[data-original-title] {
|
| 1276 |
-
cursor: help;
|
| 1277 |
-
border-bottom: 1px dotted #777;
|
| 1278 |
-
}
|
| 1279 |
-
.initialism {
|
| 1280 |
-
font-size: 90%;
|
| 1281 |
-
text-transform: uppercase;
|
| 1282 |
-
}
|
| 1283 |
-
blockquote {
|
| 1284 |
-
padding: 10px 20px;
|
| 1285 |
-
margin: 0 0 20px;
|
| 1286 |
-
font-size: 17.5px;
|
| 1287 |
-
border-left: 5px solid #eee;
|
| 1288 |
-
}
|
| 1289 |
-
blockquote p:last-child,
|
| 1290 |
-
blockquote ul:last-child,
|
| 1291 |
-
blockquote ol:last-child {
|
| 1292 |
-
margin-bottom: 0;
|
| 1293 |
-
}
|
| 1294 |
-
blockquote footer,
|
| 1295 |
-
blockquote small,
|
| 1296 |
-
blockquote .small {
|
| 1297 |
-
display: block;
|
| 1298 |
-
font-size: 80%;
|
| 1299 |
-
line-height: 1.42857143;
|
| 1300 |
-
color: #777;
|
| 1301 |
-
}
|
| 1302 |
-
blockquote footer:before,
|
| 1303 |
-
blockquote small:before,
|
| 1304 |
-
blockquote .small:before {
|
| 1305 |
-
content: '\2014 \00A0';
|
| 1306 |
-
}
|
| 1307 |
-
.blockquote-reverse,
|
| 1308 |
-
blockquote.pull-right {
|
| 1309 |
-
padding-right: 15px;
|
| 1310 |
-
padding-left: 0;
|
| 1311 |
-
text-align: right;
|
| 1312 |
-
border-right: 5px solid #eee;
|
| 1313 |
-
border-left: 0;
|
| 1314 |
-
}
|
| 1315 |
-
.blockquote-reverse footer:before,
|
| 1316 |
-
blockquote.pull-right footer:before,
|
| 1317 |
-
.blockquote-reverse small:before,
|
| 1318 |
-
blockquote.pull-right small:before,
|
| 1319 |
-
.blockquote-reverse .small:before,
|
| 1320 |
-
blockquote.pull-right .small:before {
|
| 1321 |
-
content: '';
|
| 1322 |
-
}
|
| 1323 |
-
.blockquote-reverse footer:after,
|
| 1324 |
-
blockquote.pull-right footer:after,
|
| 1325 |
-
.blockquote-reverse small:after,
|
| 1326 |
-
blockquote.pull-right small:after,
|
| 1327 |
-
.blockquote-reverse .small:after,
|
| 1328 |
-
blockquote.pull-right .small:after {
|
| 1329 |
-
content: '\00A0 \2014';
|
| 1330 |
-
}
|
| 1331 |
-
blockquote:before,
|
| 1332 |
-
blockquote:after {
|
| 1333 |
-
content: "";
|
| 1334 |
-
}
|
| 1335 |
-
address {
|
| 1336 |
-
margin-bottom: 20px;
|
| 1337 |
-
font-style: normal;
|
| 1338 |
-
line-height: 1.42857143;
|
| 1339 |
-
}
|
| 1340 |
-
code,
|
| 1341 |
-
kbd,
|
| 1342 |
-
pre,
|
| 1343 |
-
samp {
|
| 1344 |
-
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
| 1345 |
-
}
|
| 1346 |
-
code {
|
| 1347 |
-
padding: 2px 4px;
|
| 1348 |
-
font-size: 90%;
|
| 1349 |
-
color: #c7254e;
|
| 1350 |
-
background-color: #f9f2f4;
|
| 1351 |
-
border-radius: 4px;
|
| 1352 |
-
}
|
| 1353 |
-
kbd {
|
| 1354 |
-
padding: 2px 4px;
|
| 1355 |
-
font-size: 90%;
|
| 1356 |
-
color: #fff;
|
| 1357 |
-
background-color: #333;
|
| 1358 |
-
border-radius: 3px;
|
| 1359 |
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
|
| 1360 |
-
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
|
| 1361 |
-
}
|
| 1362 |
-
kbd kbd {
|
| 1363 |
-
padding: 0;
|
| 1364 |
-
font-size: 100%;
|
| 1365 |
-
-webkit-box-shadow: none;
|
| 1366 |
-
box-shadow: none;
|
| 1367 |
-
}
|
| 1368 |
-
pre {
|
| 1369 |
-
display: block;
|
| 1370 |
-
padding: 9.5px;
|
| 1371 |
-
margin: 0 0 10px;
|
| 1372 |
-
font-size: 13px;
|
| 1373 |
-
line-height: 1.42857143;
|
| 1374 |
-
color: #333;
|
| 1375 |
-
word-break: break-all;
|
| 1376 |
-
word-wrap: break-word;
|
| 1377 |
-
background-color: #f5f5f5;
|
| 1378 |
-
border: 1px solid #ccc;
|
| 1379 |
-
border-radius: 4px;
|
| 1380 |
-
}
|
| 1381 |
-
pre code {
|
| 1382 |
-
padding: 0;
|
| 1383 |
-
font-size: inherit;
|
| 1384 |
-
color: inherit;
|
| 1385 |
-
white-space: pre-wrap;
|
| 1386 |
-
background-color: transparent;
|
| 1387 |
-
border-radius: 0;
|
| 1388 |
-
}
|
| 1389 |
-
.pre-scrollable {
|
| 1390 |
-
max-height: 340px;
|
| 1391 |
-
overflow-y: scroll;
|
| 1392 |
-
}
|
| 1393 |
-
.container {
|
| 1394 |
-
padding-right: 15px;
|
| 1395 |
-
padding-left: 15px;
|
| 1396 |
-
margin-right: auto;
|
| 1397 |
-
margin-left: auto;
|
| 1398 |
-
}
|
| 1399 |
-
@media (min-width: 768px) {
|
| 1400 |
-
.container {
|
| 1401 |
-
width: 750px;
|
| 1402 |
-
}
|
| 1403 |
-
}
|
| 1404 |
-
@media (min-width: 992px) {
|
| 1405 |
-
.container {
|
| 1406 |
-
width: 970px;
|
| 1407 |
-
}
|
| 1408 |
-
}
|
| 1409 |
-
@media (min-width: 1200px) {
|
| 1410 |
-
.container {
|
| 1411 |
-
width: 1170px;
|
| 1412 |
-
}
|
| 1413 |
-
}
|
| 1414 |
-
.container-fluid {
|
| 1415 |
-
padding-right: 15px;
|
| 1416 |
-
padding-left: 15px;
|
| 1417 |
-
margin-right: auto;
|
| 1418 |
-
margin-left: auto;
|
| 1419 |
-
}
|
| 1420 |
-
.row {
|
| 1421 |
-
margin-right: -15px;
|
| 1422 |
-
margin-left: -15px;
|
| 1423 |
-
}
|
| 1424 |
-
.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 {
|
| 1425 |
-
position: relative;
|
| 1426 |
-
min-height: 1px;
|
| 1427 |
-
padding-right: 15px;
|
| 1428 |
-
padding-left: 15px;
|
| 1429 |
-
}
|
| 1430 |
-
.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 {
|
| 1431 |
-
float: left;
|
| 1432 |
-
}
|
| 1433 |
-
.col-xs-12 {
|
| 1434 |
-
width: 100%;
|
| 1435 |
-
}
|
| 1436 |
-
.col-xs-11 {
|
| 1437 |
-
width: 91.66666667%;
|
| 1438 |
-
}
|
| 1439 |
-
.col-xs-10 {
|
| 1440 |
-
width: 83.33333333%;
|
| 1441 |
-
}
|
| 1442 |
-
.col-xs-9 {
|
| 1443 |
-
width: 75%;
|
| 1444 |
-
}
|
| 1445 |
-
.col-xs-8 {
|
| 1446 |
-
width: 66.66666667%;
|
| 1447 |
-
}
|
| 1448 |
-
.col-xs-7 {
|
| 1449 |
-
width: 58.33333333%;
|
| 1450 |
-
}
|
| 1451 |
-
.col-xs-6 {
|
| 1452 |
-
width: 50%;
|
| 1453 |
-
}
|
| 1454 |
-
.col-xs-5 {
|
| 1455 |
-
width: 41.66666667%;
|
| 1456 |
-
}
|
| 1457 |
-
.col-xs-4 {
|
| 1458 |
-
width: 33.33333333%;
|
| 1459 |
-
}
|
| 1460 |
-
.col-xs-3 {
|
| 1461 |
-
width: 25%;
|
| 1462 |
-
}
|
| 1463 |
-
.col-xs-2 {
|
| 1464 |
-
width: 16.66666667%;
|
| 1465 |
-
}
|
| 1466 |
-
.col-xs-1 {
|
| 1467 |
-
width: 8.33333333%;
|
| 1468 |
-
}
|
| 1469 |
-
.col-xs-pull-12 {
|
| 1470 |
-
right: 100%;
|
| 1471 |
-
}
|
| 1472 |
-
.col-xs-pull-11 {
|
| 1473 |
-
right: 91.66666667%;
|
| 1474 |
-
}
|
| 1475 |
-
.col-xs-pull-10 {
|
| 1476 |
-
right: 83.33333333%;
|
| 1477 |
-
}
|
| 1478 |
-
.col-xs-pull-9 {
|
| 1479 |
-
right: 75%;
|
| 1480 |
-
}
|
| 1481 |
-
.col-xs-pull-8 {
|
| 1482 |
-
right: 66.66666667%;
|
| 1483 |
-
}
|
| 1484 |
-
.col-xs-pull-7 {
|
| 1485 |
-
right: 58.33333333%;
|
| 1486 |
-
}
|
| 1487 |
-
.col-xs-pull-6 {
|
| 1488 |
-
right: 50%;
|
| 1489 |
-
}
|
| 1490 |
-
.col-xs-pull-5 {
|
| 1491 |
-
right: 41.66666667%;
|
| 1492 |
-
}
|
| 1493 |
-
.col-xs-pull-4 {
|
| 1494 |
-
right: 33.33333333%;
|
| 1495 |
-
}
|
| 1496 |
-
.col-xs-pull-3 {
|
| 1497 |
-
right: 25%;
|
| 1498 |
-
}
|
| 1499 |
-
.col-xs-pull-2 {
|
| 1500 |
-
right: 16.66666667%;
|
| 1501 |
-
}
|
| 1502 |
-
.col-xs-pull-1 {
|
| 1503 |
-
right: 8.33333333%;
|
| 1504 |
-
}
|
| 1505 |
-
.col-xs-pull-0 {
|
| 1506 |
-
right: auto;
|
| 1507 |
-
}
|
| 1508 |
-
.col-xs-push-12 {
|
| 1509 |
-
left: 100%;
|
| 1510 |
-
}
|
| 1511 |
-
.col-xs-push-11 {
|
| 1512 |
-
left: 91.66666667%;
|
| 1513 |
-
}
|
| 1514 |
-
.col-xs-push-10 {
|
| 1515 |
-
left: 83.33333333%;
|
| 1516 |
-
}
|
| 1517 |
-
.col-xs-push-9 {
|
| 1518 |
-
left: 75%;
|
| 1519 |
-
}
|
| 1520 |
-
.col-xs-push-8 {
|
| 1521 |
-
left: 66.66666667%;
|
| 1522 |
-
}
|
| 1523 |
-
.col-xs-push-7 {
|
| 1524 |
-
left: 58.33333333%;
|
| 1525 |
-
}
|
| 1526 |
-
.col-xs-push-6 {
|
| 1527 |
-
left: 50%;
|
| 1528 |
-
}
|
| 1529 |
-
.col-xs-push-5 {
|
| 1530 |
-
left: 41.66666667%;
|
| 1531 |
-
}
|
| 1532 |
-
.col-xs-push-4 {
|
| 1533 |
-
left: 33.33333333%;
|
| 1534 |
-
}
|
| 1535 |
-
.col-xs-push-3 {
|
| 1536 |
-
left: 25%;
|
| 1537 |
-
}
|
| 1538 |
-
.col-xs-push-2 {
|
| 1539 |
-
left: 16.66666667%;
|
| 1540 |
-
}
|
| 1541 |
-
.col-xs-push-1 {
|
| 1542 |
-
left: 8.33333333%;
|
| 1543 |
-
}
|
| 1544 |
-
.col-xs-push-0 {
|
| 1545 |
-
left: auto;
|
| 1546 |
-
}
|
| 1547 |
-
.col-xs-offset-12 {
|
| 1548 |
-
margin-left: 100%;
|
| 1549 |
-
}
|
| 1550 |
-
.col-xs-offset-11 {
|
| 1551 |
-
margin-left: 91.66666667%;
|
| 1552 |
-
}
|
| 1553 |
-
.col-xs-offset-10 {
|
| 1554 |
-
margin-left: 83.33333333%;
|
| 1555 |
-
}
|
| 1556 |
-
.col-xs-offset-9 {
|
| 1557 |
-
margin-left: 75%;
|
| 1558 |
-
}
|
| 1559 |
-
.col-xs-offset-8 {
|
| 1560 |
-
margin-left: 66.66666667%;
|
| 1561 |
-
}
|
| 1562 |
-
.col-xs-offset-7 {
|
| 1563 |
-
margin-left: 58.33333333%;
|
| 1564 |
-
}
|
| 1565 |
-
.col-xs-offset-6 {
|
| 1566 |
-
margin-left: 50%;
|
| 1567 |
-
}
|
| 1568 |
-
.col-xs-offset-5 {
|
| 1569 |
-
margin-left: 41.66666667%;
|
| 1570 |
-
}
|
| 1571 |
-
.col-xs-offset-4 {
|
| 1572 |
-
margin-left: 33.33333333%;
|
| 1573 |
-
}
|
| 1574 |
-
.col-xs-offset-3 {
|
| 1575 |
-
margin-left: 25%;
|
| 1576 |
-
}
|
| 1577 |
-
.col-xs-offset-2 {
|
| 1578 |
-
margin-left: 16.66666667%;
|
| 1579 |
-
}
|
| 1580 |
-
.col-xs-offset-1 {
|
| 1581 |
-
margin-left: 8.33333333%;
|
| 1582 |
-
}
|
| 1583 |
-
.col-xs-offset-0 {
|
| 1584 |
-
margin-left: 0;
|
| 1585 |
-
}
|
| 1586 |
-
@media (min-width: 768px) {
|
| 1587 |
-
.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 {
|
| 1588 |
-
float: left;
|
| 1589 |
-
}
|
| 1590 |
-
.col-sm-12 {
|
| 1591 |
-
width: 100%;
|
| 1592 |
-
}
|
| 1593 |
-
.col-sm-11 {
|
| 1594 |
-
width: 91.66666667%;
|
| 1595 |
-
}
|
| 1596 |
-
.col-sm-10 {
|
| 1597 |
-
width: 83.33333333%;
|
| 1598 |
-
}
|
| 1599 |
-
.col-sm-9 {
|
| 1600 |
-
width: 75%;
|
| 1601 |
-
}
|
| 1602 |
-
.col-sm-8 {
|
| 1603 |
-
width: 66.66666667%;
|
| 1604 |
-
}
|
| 1605 |
-
.col-sm-7 {
|
| 1606 |
-
width: 58.33333333%;
|
| 1607 |
-
}
|
| 1608 |
-
.col-sm-6 {
|
| 1609 |
-
width: 50%;
|
| 1610 |
-
}
|
| 1611 |
-
.col-sm-5 {
|
| 1612 |
-
width: 41.66666667%;
|
| 1613 |
-
}
|
| 1614 |
-
.col-sm-4 {
|
| 1615 |
-
width: 33.33333333%;
|
| 1616 |
-
}
|
| 1617 |
-
.col-sm-3 {
|
| 1618 |
-
width: 25%;
|
| 1619 |
-
}
|
| 1620 |
-
.col-sm-2 {
|
| 1621 |
-
width: 16.66666667%;
|
| 1622 |
-
}
|
| 1623 |
-
.col-sm-1 {
|
| 1624 |
-
width: 8.33333333%;
|
| 1625 |
-
}
|
| 1626 |
-
.col-sm-pull-12 {
|
| 1627 |
-
right: 100%;
|
| 1628 |
-
}
|
| 1629 |
-
.col-sm-pull-11 {
|
| 1630 |
-
right: 91.66666667%;
|
| 1631 |
-
}
|
| 1632 |
-
.col-sm-pull-10 {
|
| 1633 |
-
right: 83.33333333%;
|
| 1634 |
-
}
|
| 1635 |
-
.col-sm-pull-9 {
|
| 1636 |
-
right: 75%;
|
| 1637 |
-
}
|
| 1638 |
-
.col-sm-pull-8 {
|
| 1639 |
-
right: 66.66666667%;
|
| 1640 |
-
}
|
| 1641 |
-
.col-sm-pull-7 {
|
| 1642 |
-
right: 58.33333333%;
|
| 1643 |
-
}
|
| 1644 |
-
.col-sm-pull-6 {
|
| 1645 |
-
right: 50%;
|
| 1646 |
-
}
|
| 1647 |
-
.col-sm-pull-5 {
|
| 1648 |
-
right: 41.66666667%;
|
| 1649 |
-
}
|
| 1650 |
-
.col-sm-pull-4 {
|
| 1651 |
-
right: 33.33333333%;
|
| 1652 |
-
}
|
| 1653 |
-
.col-sm-pull-3 {
|
| 1654 |
-
right: 25%;
|
| 1655 |
-
}
|
| 1656 |
-
.col-sm-pull-2 {
|
| 1657 |
-
right: 16.66666667%;
|
| 1658 |
-
}
|
| 1659 |
-
.col-sm-pull-1 {
|
| 1660 |
-
right: 8.33333333%;
|
| 1661 |
-
}
|
| 1662 |
-
.col-sm-pull-0 {
|
| 1663 |
-
right: auto;
|
| 1664 |
-
}
|
| 1665 |
-
.col-sm-push-12 {
|
| 1666 |
-
left: 100%;
|
| 1667 |
-
}
|
| 1668 |
-
.col-sm-push-11 {
|
| 1669 |
-
left: 91.66666667%;
|
| 1670 |
-
}
|
| 1671 |
-
.col-sm-push-10 {
|
| 1672 |
-
left: 83.33333333%;
|
| 1673 |
-
}
|
| 1674 |
-
.col-sm-push-9 {
|
| 1675 |
-
left: 75%;
|
| 1676 |
-
}
|
| 1677 |
-
.col-sm-push-8 {
|
| 1678 |
-
left: 66.66666667%;
|
| 1679 |
-
}
|
| 1680 |
-
.col-sm-push-7 {
|
| 1681 |
-
left: 58.33333333%;
|
| 1682 |
-
}
|
| 1683 |
-
.col-sm-push-6 {
|
| 1684 |
-
left: 50%;
|
| 1685 |
-
}
|
| 1686 |
-
.col-sm-push-5 {
|
| 1687 |
-
left: 41.66666667%;
|
| 1688 |
-
}
|
| 1689 |
-
.col-sm-push-4 {
|
| 1690 |
-
left: 33.33333333%;
|
| 1691 |
-
}
|
| 1692 |
-
.col-sm-push-3 {
|
| 1693 |
-
left: 25%;
|
| 1694 |
-
}
|
| 1695 |
-
.col-sm-push-2 {
|
| 1696 |
-
left: 16.66666667%;
|
| 1697 |
-
}
|
| 1698 |
-
.col-sm-push-1 {
|
| 1699 |
-
left: 8.33333333%;
|
| 1700 |
-
}
|
| 1701 |
-
.col-sm-push-0 {
|
| 1702 |
-
left: auto;
|
| 1703 |
-
}
|
| 1704 |
-
.col-sm-offset-12 {
|
| 1705 |
-
margin-left: 100%;
|
| 1706 |
-
}
|
| 1707 |
-
.col-sm-offset-11 {
|
| 1708 |
-
margin-left: 91.66666667%;
|
| 1709 |
-
}
|
| 1710 |
-
.col-sm-offset-10 {
|
| 1711 |
-
margin-left: 83.33333333%;
|
| 1712 |
-
}
|
| 1713 |
-
.col-sm-offset-9 {
|
| 1714 |
-
margin-left: 75%;
|
| 1715 |
-
}
|
| 1716 |
-
.col-sm-offset-8 {
|
| 1717 |
-
margin-left: 66.66666667%;
|
| 1718 |
-
}
|
| 1719 |
-
.col-sm-offset-7 {
|
| 1720 |
-
margin-left: 58.33333333%;
|
| 1721 |
-
}
|
| 1722 |
-
.col-sm-offset-6 {
|
| 1723 |
-
margin-left: 50%;
|
| 1724 |
-
}
|
| 1725 |
-
.col-sm-offset-5 {
|
| 1726 |
-
margin-left: 41.66666667%;
|
| 1727 |
-
}
|
| 1728 |
-
.col-sm-offset-4 {
|
| 1729 |
-
margin-left: 33.33333333%;
|
| 1730 |
-
}
|
| 1731 |
-
.col-sm-offset-3 {
|
| 1732 |
-
margin-left: 25%;
|
| 1733 |
-
}
|
| 1734 |
-
.col-sm-offset-2 {
|
| 1735 |
-
margin-left: 16.66666667%;
|
| 1736 |
-
}
|
| 1737 |
-
.col-sm-offset-1 {
|
| 1738 |
-
margin-left: 8.33333333%;
|
| 1739 |
-
}
|
| 1740 |
-
.col-sm-offset-0 {
|
| 1741 |
-
margin-left: 0;
|
| 1742 |
-
}
|
| 1743 |
-
}
|
| 1744 |
-
@media (min-width: 992px) {
|
| 1745 |
-
.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 {
|
| 1746 |
-
float: left;
|
| 1747 |
-
}
|
| 1748 |
-
.col-md-12 {
|
| 1749 |
-
width: 100%;
|
| 1750 |
-
}
|
| 1751 |
-
.col-md-11 {
|
| 1752 |
-
width: 91.66666667%;
|
| 1753 |
-
}
|
| 1754 |
-
.col-md-10 {
|
| 1755 |
-
width: 83.33333333%;
|
| 1756 |
-
}
|
| 1757 |
-
.col-md-9 {
|
| 1758 |
-
width: 75%;
|
| 1759 |
-
}
|
| 1760 |
-
.col-md-8 {
|
| 1761 |
-
width: 66.66666667%;
|
| 1762 |
-
}
|
| 1763 |
-
.col-md-7 {
|
| 1764 |
-
width: 58.33333333%;
|
| 1765 |
-
}
|
| 1766 |
-
.col-md-6 {
|
| 1767 |
-
width: 50%;
|
| 1768 |
-
}
|
| 1769 |
-
.col-md-5 {
|
| 1770 |
-
width: 41.66666667%;
|
| 1771 |
-
}
|
| 1772 |
-
.col-md-4 {
|
| 1773 |
-
width: 33.33333333%;
|
| 1774 |
-
}
|
| 1775 |
-
.col-md-3 {
|
| 1776 |
-
width: 25%;
|
| 1777 |
-
}
|
| 1778 |
-
.col-md-2 {
|
| 1779 |
-
width: 16.66666667%;
|
| 1780 |
-
}
|
| 1781 |
-
.col-md-1 {
|
| 1782 |
-
width: 8.33333333%;
|
| 1783 |
-
}
|
| 1784 |
-
.col-md-pull-12 {
|
| 1785 |
-
right: 100%;
|
| 1786 |
-
}
|
| 1787 |
-
.col-md-pull-11 {
|
| 1788 |
-
right: 91.66666667%;
|
| 1789 |
-
}
|
| 1790 |
-
.col-md-pull-10 {
|
| 1791 |
-
right: 83.33333333%;
|
| 1792 |
-
}
|
| 1793 |
-
.col-md-pull-9 {
|
| 1794 |
-
right: 75%;
|
| 1795 |
-
}
|
| 1796 |
-
.col-md-pull-8 {
|
| 1797 |
-
right: 66.66666667%;
|
| 1798 |
-
}
|
| 1799 |
-
.col-md-pull-7 {
|
| 1800 |
-
right: 58.33333333%;
|
| 1801 |
-
}
|
| 1802 |
-
.col-md-pull-6 {
|
| 1803 |
-
right: 50%;
|
| 1804 |
-
}
|
| 1805 |
-
.col-md-pull-5 {
|
| 1806 |
-
right: 41.66666667%;
|
| 1807 |
-
}
|
| 1808 |
-
.col-md-pull-4 {
|
| 1809 |
-
right: 33.33333333%;
|
| 1810 |
-
}
|
| 1811 |
-
.col-md-pull-3 {
|
| 1812 |
-
right: 25%;
|
| 1813 |
-
}
|
| 1814 |
-
.col-md-pull-2 {
|
| 1815 |
-
right: 16.66666667%;
|
| 1816 |
-
}
|
| 1817 |
-
.col-md-pull-1 {
|
| 1818 |
-
right: 8.33333333%;
|
| 1819 |
-
}
|
| 1820 |
-
.col-md-pull-0 {
|
| 1821 |
-
right: auto;
|
| 1822 |
-
}
|
| 1823 |
-
.col-md-push-12 {
|
| 1824 |
-
left: 100%;
|
| 1825 |
-
}
|
| 1826 |
-
.col-md-push-11 {
|
| 1827 |
-
left: 91.66666667%;
|
| 1828 |
-
}
|
| 1829 |
-
.col-md-push-10 {
|
| 1830 |
-
left: 83.33333333%;
|
| 1831 |
-
}
|
| 1832 |
-
.col-md-push-9 {
|
| 1833 |
-
left: 75%;
|
| 1834 |
-
}
|
| 1835 |
-
.col-md-push-8 {
|
| 1836 |
-
left: 66.66666667%;
|
| 1837 |
-
}
|
| 1838 |
-
.col-md-push-7 {
|
| 1839 |
-
left: 58.33333333%;
|
| 1840 |
-
}
|
| 1841 |
-
.col-md-push-6 {
|
| 1842 |
-
left: 50%;
|
| 1843 |
-
}
|
| 1844 |
-
.col-md-push-5 {
|
| 1845 |
-
left: 41.66666667%;
|
| 1846 |
-
}
|
| 1847 |
-
.col-md-push-4 {
|
| 1848 |
-
left: 33.33333333%;
|
| 1849 |
-
}
|
| 1850 |
-
.col-md-push-3 {
|
| 1851 |
-
left: 25%;
|
| 1852 |
-
}
|
| 1853 |
-
.col-md-push-2 {
|
| 1854 |
-
left: 16.66666667%;
|
| 1855 |
-
}
|
| 1856 |
-
.col-md-push-1 {
|
| 1857 |
-
left: 8.33333333%;
|
| 1858 |
-
}
|
| 1859 |
-
.col-md-push-0 {
|
| 1860 |
-
left: auto;
|
| 1861 |
-
}
|
| 1862 |
-
.col-md-offset-12 {
|
| 1863 |
-
margin-left: 100%;
|
| 1864 |
-
}
|
| 1865 |
-
.col-md-offset-11 {
|
| 1866 |
-
margin-left: 91.66666667%;
|
| 1867 |
-
}
|
| 1868 |
-
.col-md-offset-10 {
|
| 1869 |
-
margin-left: 83.33333333%;
|
| 1870 |
-
}
|
| 1871 |
-
.col-md-offset-9 {
|
| 1872 |
-
margin-left: 75%;
|
| 1873 |
-
}
|
| 1874 |
-
.col-md-offset-8 {
|
| 1875 |
-
margin-left: 66.66666667%;
|
| 1876 |
-
}
|
| 1877 |
-
.col-md-offset-7 {
|
| 1878 |
-
margin-left: 58.33333333%;
|
| 1879 |
-
}
|
| 1880 |
-
.col-md-offset-6 {
|
| 1881 |
-
margin-left: 50%;
|
| 1882 |
-
}
|
| 1883 |
-
.col-md-offset-5 {
|
| 1884 |
-
margin-left: 41.66666667%;
|
| 1885 |
-
}
|
| 1886 |
-
.col-md-offset-4 {
|
| 1887 |
-
margin-left: 33.33333333%;
|
| 1888 |
-
}
|
| 1889 |
-
.col-md-offset-3 {
|
| 1890 |
-
margin-left: 25%;
|
| 1891 |
-
}
|
| 1892 |
-
.col-md-offset-2 {
|
| 1893 |
-
margin-left: 16.66666667%;
|
| 1894 |
-
}
|
| 1895 |
-
.col-md-offset-1 {
|
| 1896 |
-
margin-left: 8.33333333%;
|
| 1897 |
-
}
|
| 1898 |
-
.col-md-offset-0 {
|
| 1899 |
-
margin-left: 0;
|
| 1900 |
-
}
|
| 1901 |
-
}
|
| 1902 |
-
@media (min-width: 1200px) {
|
| 1903 |
-
.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 {
|
| 1904 |
-
float: left;
|
| 1905 |
-
}
|
| 1906 |
-
.col-lg-12 {
|
| 1907 |
-
width: 100%;
|
| 1908 |
-
}
|
| 1909 |
-
.col-lg-11 {
|
| 1910 |
-
width: 91.66666667%;
|
| 1911 |
-
}
|
| 1912 |
-
.col-lg-10 {
|
| 1913 |
-
width: 83.33333333%;
|
| 1914 |
-
}
|
| 1915 |
-
.col-lg-9 {
|
| 1916 |
-
width: 75%;
|
| 1917 |
-
}
|
| 1918 |
-
.col-lg-8 {
|
| 1919 |
-
width: 66.66666667%;
|
| 1920 |
-
}
|
| 1921 |
-
.col-lg-7 {
|
| 1922 |
-
width: 58.33333333%;
|
| 1923 |
-
}
|
| 1924 |
-
.col-lg-6 {
|
| 1925 |
-
width: 50%;
|
| 1926 |
-
}
|
| 1927 |
-
.col-lg-5 {
|
| 1928 |
-
width: 41.66666667%;
|
| 1929 |
-
}
|
| 1930 |
-
.col-lg-4 {
|
| 1931 |
-
width: 33.33333333%;
|
| 1932 |
-
}
|
| 1933 |
-
.col-lg-3 {
|
| 1934 |
-
width: 25%;
|
| 1935 |
-
}
|
| 1936 |
-
.col-lg-2 {
|
| 1937 |
-
width: 16.66666667%;
|
| 1938 |
-
}
|
| 1939 |
-
.col-lg-1 {
|
| 1940 |
-
width: 8.33333333%;
|
| 1941 |
-
}
|
| 1942 |
-
.col-lg-pull-12 {
|
| 1943 |
-
right: 100%;
|
| 1944 |
-
}
|
| 1945 |
-
.col-lg-pull-11 {
|
| 1946 |
-
right: 91.66666667%;
|
| 1947 |
-
}
|
| 1948 |
-
.col-lg-pull-10 {
|
| 1949 |
-
right: 83.33333333%;
|
| 1950 |
-
}
|
| 1951 |
-
.col-lg-pull-9 {
|
| 1952 |
-
right: 75%;
|
| 1953 |
-
}
|
| 1954 |
-
.col-lg-pull-8 {
|
| 1955 |
-
right: 66.66666667%;
|
| 1956 |
-
}
|
| 1957 |
-
.col-lg-pull-7 {
|
| 1958 |
-
right: 58.33333333%;
|
| 1959 |
-
}
|
| 1960 |
-
.col-lg-pull-6 {
|
| 1961 |
-
right: 50%;
|
| 1962 |
-
}
|
| 1963 |
-
.col-lg-pull-5 {
|
| 1964 |
-
right: 41.66666667%;
|
| 1965 |
-
}
|
| 1966 |
-
.col-lg-pull-4 {
|
| 1967 |
-
right: 33.33333333%;
|
| 1968 |
-
}
|
| 1969 |
-
.col-lg-pull-3 {
|
| 1970 |
-
right: 25%;
|
| 1971 |
-
}
|
| 1972 |
-
.col-lg-pull-2 {
|
| 1973 |
-
right: 16.66666667%;
|
| 1974 |
-
}
|
| 1975 |
-
.col-lg-pull-1 {
|
| 1976 |
-
right: 8.33333333%;
|
| 1977 |
-
}
|
| 1978 |
-
.col-lg-pull-0 {
|
| 1979 |
-
right: auto;
|
| 1980 |
-
}
|
| 1981 |
-
.col-lg-push-12 {
|
| 1982 |
-
left: 100%;
|
| 1983 |
-
}
|
| 1984 |
-
.col-lg-push-11 {
|
| 1985 |
-
left: 91.66666667%;
|
| 1986 |
-
}
|
| 1987 |
-
.col-lg-push-10 {
|
| 1988 |
-
left: 83.33333333%;
|
| 1989 |
-
}
|
| 1990 |
-
.col-lg-push-9 {
|
| 1991 |
-
left: 75%;
|
| 1992 |
-
}
|
| 1993 |
-
.col-lg-push-8 {
|
| 1994 |
-
left: 66.66666667%;
|
| 1995 |
-
}
|
| 1996 |
-
.col-lg-push-7 {
|
| 1997 |
-
left: 58.33333333%;
|
| 1998 |
-
}
|
| 1999 |
-
.col-lg-push-6 {
|
| 2000 |
-
left: 50%;
|
| 2001 |
-
}
|
| 2002 |
-
.col-lg-push-5 {
|
| 2003 |
-
left: 41.66666667%;
|
| 2004 |
-
}
|
| 2005 |
-
.col-lg-push-4 {
|
| 2006 |
-
left: 33.33333333%;
|
| 2007 |
-
}
|
| 2008 |
-
.col-lg-push-3 {
|
| 2009 |
-
left: 25%;
|
| 2010 |
-
}
|
| 2011 |
-
.col-lg-push-2 {
|
| 2012 |
-
left: 16.66666667%;
|
| 2013 |
-
}
|
| 2014 |
-
.col-lg-push-1 {
|
| 2015 |
-
left: 8.33333333%;
|
| 2016 |
-
}
|
| 2017 |
-
.col-lg-push-0 {
|
| 2018 |
-
left: auto;
|
| 2019 |
-
}
|
| 2020 |
-
.col-lg-offset-12 {
|
| 2021 |
-
margin-left: 100%;
|
| 2022 |
-
}
|
| 2023 |
-
.col-lg-offset-11 {
|
| 2024 |
-
margin-left: 91.66666667%;
|
| 2025 |
-
}
|
| 2026 |
-
.col-lg-offset-10 {
|
| 2027 |
-
margin-left: 83.33333333%;
|
| 2028 |
-
}
|
| 2029 |
-
.col-lg-offset-9 {
|
| 2030 |
-
margin-left: 75%;
|
| 2031 |
-
}
|
| 2032 |
-
.col-lg-offset-8 {
|
| 2033 |
-
margin-left: 66.66666667%;
|
| 2034 |
-
}
|
| 2035 |
-
.col-lg-offset-7 {
|
| 2036 |
-
margin-left: 58.33333333%;
|
| 2037 |
-
}
|
| 2038 |
-
.col-lg-offset-6 {
|
| 2039 |
-
margin-left: 50%;
|
| 2040 |
-
}
|
| 2041 |
-
.col-lg-offset-5 {
|
| 2042 |
-
margin-left: 41.66666667%;
|
| 2043 |
-
}
|
| 2044 |
-
.col-lg-offset-4 {
|
| 2045 |
-
margin-left: 33.33333333%;
|
| 2046 |
-
}
|
| 2047 |
-
.col-lg-offset-3 {
|
| 2048 |
-
margin-left: 25%;
|
| 2049 |
-
}
|
| 2050 |
-
.col-lg-offset-2 {
|
| 2051 |
-
margin-left: 16.66666667%;
|
| 2052 |
-
}
|
| 2053 |
-
.col-lg-offset-1 {
|
| 2054 |
-
margin-left: 8.33333333%;
|
| 2055 |
-
}
|
| 2056 |
-
.col-lg-offset-0 {
|
| 2057 |
-
margin-left: 0;
|
| 2058 |
-
}
|
| 2059 |
-
}
|
| 2060 |
-
table {
|
| 2061 |
-
background-color: transparent;
|
| 2062 |
-
}
|
| 2063 |
-
th {
|
| 2064 |
-
text-align: left;
|
| 2065 |
-
}
|
| 2066 |
-
.table {
|
| 2067 |
-
width: 100%;
|
| 2068 |
-
max-width: 100%;
|
| 2069 |
-
margin-bottom: 20px;
|
| 2070 |
-
}
|
| 2071 |
-
.table > thead > tr > th,
|
| 2072 |
-
.table > tbody > tr > th,
|
| 2073 |
-
.table > tfoot > tr > th,
|
| 2074 |
-
.table > thead > tr > td,
|
| 2075 |
-
.table > tbody > tr > td,
|
| 2076 |
-
.table > tfoot > tr > td {
|
| 2077 |
-
padding: 8px;
|
| 2078 |
-
line-height: 1.42857143;
|
| 2079 |
-
vertical-align: top;
|
| 2080 |
-
border-top: 1px solid #ddd;
|
| 2081 |
-
}
|
| 2082 |
-
.table > thead > tr > th {
|
| 2083 |
-
vertical-align: bottom;
|
| 2084 |
-
border-bottom: 2px solid #ddd;
|
| 2085 |
-
}
|
| 2086 |
-
.table > caption + thead > tr:first-child > th,
|
| 2087 |
-
.table > colgroup + thead > tr:first-child > th,
|
| 2088 |
-
.table > thead:first-child > tr:first-child > th,
|
| 2089 |
-
.table > caption + thead > tr:first-child > td,
|
| 2090 |
-
.table > colgroup + thead > tr:first-child > td,
|
| 2091 |
-
.table > thead:first-child > tr:first-child > td {
|
| 2092 |
-
border-top: 0;
|
| 2093 |
-
}
|
| 2094 |
-
.table > tbody + tbody {
|
| 2095 |
-
border-top: 2px solid #ddd;
|
| 2096 |
-
}
|
| 2097 |
-
.table .table {
|
| 2098 |
-
background-color: #fff;
|
| 2099 |
-
}
|
| 2100 |
-
.table-condensed > thead > tr > th,
|
| 2101 |
-
.table-condensed > tbody > tr > th,
|
| 2102 |
-
.table-condensed > tfoot > tr > th,
|
| 2103 |
-
.table-condensed > thead > tr > td,
|
| 2104 |
-
.table-condensed > tbody > tr > td,
|
| 2105 |
-
.table-condensed > tfoot > tr > td {
|
| 2106 |
-
padding: 5px;
|
| 2107 |
-
}
|
| 2108 |
-
.table-bordered {
|
| 2109 |
-
border: 1px solid #ddd;
|
| 2110 |
-
}
|
| 2111 |
-
.table-bordered > thead > tr > th,
|
| 2112 |
-
.table-bordered > tbody > tr > th,
|
| 2113 |
-
.table-bordered > tfoot > tr > th,
|
| 2114 |
-
.table-bordered > thead > tr > td,
|
| 2115 |
-
.table-bordered > tbody > tr > td,
|
| 2116 |
-
.table-bordered > tfoot > tr > td {
|
| 2117 |
-
border: 1px solid #ddd;
|
| 2118 |
-
}
|
| 2119 |
-
.table-bordered > thead > tr > th,
|
| 2120 |
-
.table-bordered > thead > tr > td {
|
| 2121 |
-
border-bottom-width: 2px;
|
| 2122 |
-
}
|
| 2123 |
-
.table-striped > tbody > tr:nth-child(odd) > td,
|
| 2124 |
-
.table-striped > tbody > tr:nth-child(odd) > th {
|
| 2125 |
-
background-color: #f9f9f9;
|
| 2126 |
-
}
|
| 2127 |
-
.table-hover > tbody > tr:hover > td,
|
| 2128 |
-
.table-hover > tbody > tr:hover > th {
|
| 2129 |
-
background-color: #f5f5f5;
|
| 2130 |
-
}
|
| 2131 |
-
table col[class*="col-"] {
|
| 2132 |
-
position: static;
|
| 2133 |
-
display: table-column;
|
| 2134 |
-
float: none;
|
| 2135 |
-
}
|
| 2136 |
-
table td[class*="col-"],
|
| 2137 |
-
table th[class*="col-"] {
|
| 2138 |
-
position: static;
|
| 2139 |
-
display: table-cell;
|
| 2140 |
-
float: none;
|
| 2141 |
-
}
|
| 2142 |
-
.table > thead > tr > td.active,
|
| 2143 |
-
.table > tbody > tr > td.active,
|
| 2144 |
-
.table > tfoot > tr > td.active,
|
| 2145 |
-
.table > thead > tr > th.active,
|
| 2146 |
-
.table > tbody > tr > th.active,
|
| 2147 |
-
.table > tfoot > tr > th.active,
|
| 2148 |
-
.table > thead > tr.active > td,
|
| 2149 |
-
.table > tbody > tr.active > td,
|
| 2150 |
-
.table > tfoot > tr.active > td,
|
| 2151 |
-
.table > thead > tr.active > th,
|
| 2152 |
-
.table > tbody > tr.active > th,
|
| 2153 |
-
.table > tfoot > tr.active > th {
|
| 2154 |
-
background-color: #f5f5f5;
|
| 2155 |
-
}
|
| 2156 |
-
.table-hover > tbody > tr > td.active:hover,
|
| 2157 |
-
.table-hover > tbody > tr > th.active:hover,
|
| 2158 |
-
.table-hover > tbody > tr.active:hover > td,
|
| 2159 |
-
.table-hover > tbody > tr:hover > .active,
|
| 2160 |
-
.table-hover > tbody > tr.active:hover > th {
|
| 2161 |
-
background-color: #e8e8e8;
|
| 2162 |
-
}
|
| 2163 |
-
.table > thead > tr > td.success,
|
| 2164 |
-
.table > tbody > tr > td.success,
|
| 2165 |
-
.table > tfoot > tr > td.success,
|
| 2166 |
-
.table > thead > tr > th.success,
|
| 2167 |
-
.table > tbody > tr > th.success,
|
| 2168 |
-
.table > tfoot > tr > th.success,
|
| 2169 |
-
.table > thead > tr.success > td,
|
| 2170 |
-
.table > tbody > tr.success > td,
|
| 2171 |
-
.table > tfoot > tr.success > td,
|
| 2172 |
-
.table > thead > tr.success > th,
|
| 2173 |
-
.table > tbody > tr.success > th,
|
| 2174 |
-
.table > tfoot > tr.success > th {
|
| 2175 |
-
background-color: #dff0d8;
|
| 2176 |
-
}
|
| 2177 |
-
.table-hover > tbody > tr > td.success:hover,
|
| 2178 |
-
.table-hover > tbody > tr > th.success:hover,
|
| 2179 |
-
.table-hover > tbody > tr.success:hover > td,
|
| 2180 |
-
.table-hover > tbody > tr:hover > .success,
|
| 2181 |
-
.table-hover > tbody > tr.success:hover > th {
|
| 2182 |
-
background-color: #d0e9c6;
|
| 2183 |
-
}
|
| 2184 |
-
.table > thead > tr > td.info,
|
| 2185 |
-
.table > tbody > tr > td.info,
|
| 2186 |
-
.table > tfoot > tr > td.info,
|
| 2187 |
-
.table > thead > tr > th.info,
|
| 2188 |
-
.table > tbody > tr > th.info,
|
| 2189 |
-
.table > tfoot > tr > th.info,
|
| 2190 |
-
.table > thead > tr.info > td,
|
| 2191 |
-
.table > tbody > tr.info > td,
|
| 2192 |
-
.table > tfoot > tr.info > td,
|
| 2193 |
-
.table > thead > tr.info > th,
|
| 2194 |
-
.table > tbody > tr.info > th,
|
| 2195 |
-
.table > tfoot > tr.info > th {
|
| 2196 |
-
background-color: #d9edf7;
|
| 2197 |
-
}
|
| 2198 |
-
.table-hover > tbody > tr > td.info:hover,
|
| 2199 |
-
.table-hover > tbody > tr > th.info:hover,
|
| 2200 |
-
.table-hover > tbody > tr.info:hover > td,
|
| 2201 |
-
.table-hover > tbody > tr:hover > .info,
|
| 2202 |
-
.table-hover > tbody > tr.info:hover > th {
|
| 2203 |
-
background-color: #c4e3f3;
|
| 2204 |
-
}
|
| 2205 |
-
.table > thead > tr > td.warning,
|
| 2206 |
-
.table > tbody > tr > td.warning,
|
| 2207 |
-
.table > tfoot > tr > td.warning,
|
| 2208 |
-
.table > thead > tr > th.warning,
|
| 2209 |
-
.table > tbody > tr > th.warning,
|
| 2210 |
-
.table > tfoot > tr > th.warning,
|
| 2211 |
-
.table > thead > tr.warning > td,
|
| 2212 |
-
.table > tbody > tr.warning > td,
|
| 2213 |
-
.table > tfoot > tr.warning > td,
|
| 2214 |
-
.table > thead > tr.warning > th,
|
| 2215 |
-
.table > tbody > tr.warning > th,
|
| 2216 |
-
.table > tfoot > tr.warning > th {
|
| 2217 |
-
background-color: #fcf8e3;
|
| 2218 |
-
}
|
| 2219 |
-
.table-hover > tbody > tr > td.warning:hover,
|
| 2220 |
-
.table-hover > tbody > tr > th.warning:hover,
|
| 2221 |
-
.table-hover > tbody > tr.warning:hover > td,
|
| 2222 |
-
.table-hover > tbody > tr:hover > .warning,
|
| 2223 |
-
.table-hover > tbody > tr.warning:hover > th {
|
| 2224 |
-
background-color: #faf2cc;
|
| 2225 |
-
}
|
| 2226 |
-
.table > thead > tr > td.danger,
|
| 2227 |
-
.table > tbody > tr > td.danger,
|
| 2228 |
-
.table > tfoot > tr > td.danger,
|
| 2229 |
-
.table > thead > tr > th.danger,
|
| 2230 |
-
.table > tbody > tr > th.danger,
|
| 2231 |
-
.table > tfoot > tr > th.danger,
|
| 2232 |
-
.table > thead > tr.danger > td,
|
| 2233 |
-
.table > tbody > tr.danger > td,
|
| 2234 |
-
.table > tfoot > tr.danger > td,
|
| 2235 |
-
.table > thead > tr.danger > th,
|
| 2236 |
-
.table > tbody > tr.danger > th,
|
| 2237 |
-
.table > tfoot > tr.danger > th {
|
| 2238 |
-
background-color: #f2dede;
|
| 2239 |
-
}
|
| 2240 |
-
.table-hover > tbody > tr > td.danger:hover,
|
| 2241 |
-
.table-hover > tbody > tr > th.danger:hover,
|
| 2242 |
-
.table-hover > tbody > tr.danger:hover > td,
|
| 2243 |
-
.table-hover > tbody > tr:hover > .danger,
|
| 2244 |
-
.table-hover > tbody > tr.danger:hover > th {
|
| 2245 |
-
background-color: #ebcccc;
|
| 2246 |
-
}
|
| 2247 |
-
@media screen and (max-width: 767px) {
|
| 2248 |
-
.table-responsive {
|
| 2249 |
-
width: 100%;
|
| 2250 |
-
margin-bottom: 15px;
|
| 2251 |
-
overflow-x: auto;
|
| 2252 |
-
overflow-y: hidden;
|
| 2253 |
-
-webkit-overflow-scrolling: touch;
|
| 2254 |
-
-ms-overflow-style: -ms-autohiding-scrollbar;
|
| 2255 |
-
border: 1px solid #ddd;
|
| 2256 |
-
}
|
| 2257 |
-
.table-responsive > .table {
|
| 2258 |
-
margin-bottom: 0;
|
| 2259 |
-
}
|
| 2260 |
-
.table-responsive > .table > thead > tr > th,
|
| 2261 |
-
.table-responsive > .table > tbody > tr > th,
|
| 2262 |
-
.table-responsive > .table > tfoot > tr > th,
|
| 2263 |
-
.table-responsive > .table > thead > tr > td,
|
| 2264 |
-
.table-responsive > .table > tbody > tr > td,
|
| 2265 |
-
.table-responsive > .table > tfoot > tr > td {
|
| 2266 |
-
white-space: nowrap;
|
| 2267 |
-
}
|
| 2268 |
-
.table-responsive > .table-bordered {
|
| 2269 |
-
border: 0;
|
| 2270 |
-
}
|
| 2271 |
-
.table-responsive > .table-bordered > thead > tr > th:first-child,
|
| 2272 |
-
.table-responsive > .table-bordered > tbody > tr > th:first-child,
|
| 2273 |
-
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
| 2274 |
-
.table-responsive > .table-bordered > thead > tr > td:first-child,
|
| 2275 |
-
.table-responsive > .table-bordered > tbody > tr > td:first-child,
|
| 2276 |
-
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
| 2277 |
-
border-left: 0;
|
| 2278 |
-
}
|
| 2279 |
-
.table-responsive > .table-bordered > thead > tr > th:last-child,
|
| 2280 |
-
.table-responsive > .table-bordered > tbody > tr > th:last-child,
|
| 2281 |
-
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
| 2282 |
-
.table-responsive > .table-bordered > thead > tr > td:last-child,
|
| 2283 |
-
.table-responsive > .table-bordered > tbody > tr > td:last-child,
|
| 2284 |
-
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
| 2285 |
-
border-right: 0;
|
| 2286 |
-
}
|
| 2287 |
-
.table-responsive > .table-bordered > tbody > tr:last-child > th,
|
| 2288 |
-
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
| 2289 |
-
.table-responsive > .table-bordered > tbody > tr:last-child > td,
|
| 2290 |
-
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
| 2291 |
-
border-bottom: 0;
|
| 2292 |
-
}
|
| 2293 |
-
}
|
| 2294 |
-
fieldset {
|
| 2295 |
-
min-width: 0;
|
| 2296 |
-
padding: 0;
|
| 2297 |
-
margin: 0;
|
| 2298 |
-
border: 0;
|
| 2299 |
-
}
|
| 2300 |
-
legend {
|
| 2301 |
-
display: block;
|
| 2302 |
-
width: 100%;
|
| 2303 |
-
padding: 0;
|
| 2304 |
-
margin-bottom: 20px;
|
| 2305 |
-
font-size: 21px;
|
| 2306 |
-
line-height: inherit;
|
| 2307 |
-
color: #333;
|
| 2308 |
-
border: 0;
|
| 2309 |
-
border-bottom: 1px solid #e5e5e5;
|
| 2310 |
-
}
|
| 2311 |
-
label {
|
| 2312 |
-
display: inline-block;
|
| 2313 |
-
max-width: 100%;
|
| 2314 |
-
margin-bottom: 5px;
|
| 2315 |
-
font-weight: bold;
|
| 2316 |
-
}
|
| 2317 |
-
input[type="search"] {
|
| 2318 |
-
-webkit-box-sizing: border-box;
|
| 2319 |
-
-moz-box-sizing: border-box;
|
| 2320 |
-
box-sizing: border-box;
|
| 2321 |
-
}
|
| 2322 |
-
input[type="radio"],
|
| 2323 |
-
input[type="checkbox"] {
|
| 2324 |
-
margin: 4px 0 0;
|
| 2325 |
-
margin-top: 1px \9;
|
| 2326 |
-
line-height: normal;
|
| 2327 |
-
}
|
| 2328 |
-
input[type="file"] {
|
| 2329 |
-
display: block;
|
| 2330 |
-
}
|
| 2331 |
-
input[type="range"] {
|
| 2332 |
-
display: block;
|
| 2333 |
-
width: 100%;
|
| 2334 |
-
}
|
| 2335 |
-
select[multiple],
|
| 2336 |
-
select[size] {
|
| 2337 |
-
height: auto;
|
| 2338 |
-
}
|
| 2339 |
-
input[type="file"]:focus,
|
| 2340 |
-
input[type="radio"]:focus,
|
| 2341 |
-
input[type="checkbox"]:focus {
|
| 2342 |
-
outline: thin dotted;
|
| 2343 |
-
outline: 5px auto -webkit-focus-ring-color;
|
| 2344 |
-
outline-offset: -2px;
|
| 2345 |
-
}
|
| 2346 |
-
output {
|
| 2347 |
-
display: block;
|
| 2348 |
-
padding-top: 7px;
|
| 2349 |
-
font-size: 14px;
|
| 2350 |
-
line-height: 1.42857143;
|
| 2351 |
-
color: #555;
|
| 2352 |
-
}
|
| 2353 |
-
.form-control {
|
| 2354 |
-
display: block;
|
| 2355 |
-
width: 100%;
|
| 2356 |
-
height: 34px;
|
| 2357 |
-
padding: 6px 12px;
|
| 2358 |
-
font-size: 14px;
|
| 2359 |
-
line-height: 1.42857143;
|
| 2360 |
-
color: #555;
|
| 2361 |
-
background-color: #fff;
|
| 2362 |
-
background-image: none;
|
| 2363 |
-
border: 1px solid #ccc;
|
| 2364 |
-
border-radius: 4px;
|
| 2365 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
| 2366 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
| 2367 |
-
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
| 2368 |
-
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
| 2369 |
-
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
| 2370 |
-
}
|
| 2371 |
-
.form-control:focus {
|
| 2372 |
-
border-color: #66afe9;
|
| 2373 |
-
outline: 0;
|
| 2374 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
|
| 2375 |
-
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
|
| 2376 |
-
}
|
| 2377 |
-
.form-control::-moz-placeholder {
|
| 2378 |
-
color: #777;
|
| 2379 |
-
opacity: 1;
|
| 2380 |
-
}
|
| 2381 |
-
.form-control:-ms-input-placeholder {
|
| 2382 |
-
color: #777;
|
| 2383 |
-
}
|
| 2384 |
-
.form-control::-webkit-input-placeholder {
|
| 2385 |
-
color: #777;
|
| 2386 |
-
}
|
| 2387 |
-
.form-control[disabled],
|
| 2388 |
-
.form-control[readonly],
|
| 2389 |
-
fieldset[disabled] .form-control {
|
| 2390 |
-
cursor: not-allowed;
|
| 2391 |
-
background-color: #eee;
|
| 2392 |
-
opacity: 1;
|
| 2393 |
-
}
|
| 2394 |
-
textarea.form-control {
|
| 2395 |
-
height: auto;
|
| 2396 |
-
}
|
| 2397 |
-
input[type="search"] {
|
| 2398 |
-
-webkit-appearance: none;
|
| 2399 |
-
}
|
| 2400 |
-
input[type="date"],
|
| 2401 |
-
input[type="time"],
|
| 2402 |
-
input[type="datetime-local"],
|
| 2403 |
-
input[type="month"] {
|
| 2404 |
-
line-height: 34px;
|
| 2405 |
-
line-height: 1.42857143 \0;
|
| 2406 |
-
}
|
| 2407 |
-
input[type="date"].input-sm,
|
| 2408 |
-
input[type="time"].input-sm,
|
| 2409 |
-
input[type="datetime-local"].input-sm,
|
| 2410 |
-
input[type="month"].input-sm {
|
| 2411 |
-
line-height: 30px;
|
| 2412 |
-
}
|
| 2413 |
-
input[type="date"].input-lg,
|
| 2414 |
-
input[type="time"].input-lg,
|
| 2415 |
-
input[type="datetime-local"].input-lg,
|
| 2416 |
-
input[type="month"].input-lg {
|
| 2417 |
-
line-height: 46px;
|
| 2418 |
-
}
|
| 2419 |
-
.form-group {
|
| 2420 |
-
margin-bottom: 15px;
|
| 2421 |
-
}
|
| 2422 |
-
.radio,
|
| 2423 |
-
.checkbox {
|
| 2424 |
-
position: relative;
|
| 2425 |
-
display: block;
|
| 2426 |
-
min-height: 20px;
|
| 2427 |
-
margin-top: 10px;
|
| 2428 |
-
margin-bottom: 10px;
|
| 2429 |
-
}
|
| 2430 |
-
.radio label,
|
| 2431 |
-
.checkbox label {
|
| 2432 |
-
padding-left: 20px;
|
| 2433 |
-
margin-bottom: 0;
|
| 2434 |
-
font-weight: normal;
|
| 2435 |
-
cursor: pointer;
|
| 2436 |
-
}
|
| 2437 |
-
.radio input[type="radio"],
|
| 2438 |
-
.radio-inline input[type="radio"],
|
| 2439 |
-
.checkbox input[type="checkbox"],
|
| 2440 |
-
.checkbox-inline input[type="checkbox"] {
|
| 2441 |
-
position: absolute;
|
| 2442 |
-
margin-top: 4px \9;
|
| 2443 |
-
margin-left: -20px;
|
| 2444 |
-
}
|
| 2445 |
-
.radio + .radio,
|
| 2446 |
-
.checkbox + .checkbox {
|
| 2447 |
-
margin-top: -5px;
|
| 2448 |
-
}
|
| 2449 |
-
.radio-inline,
|
| 2450 |
-
.checkbox-inline {
|
| 2451 |
-
display: inline-block;
|
| 2452 |
-
padding-left: 20px;
|
| 2453 |
-
margin-bottom: 0;
|
| 2454 |
-
font-weight: normal;
|
| 2455 |
-
vertical-align: middle;
|
| 2456 |
-
cursor: pointer;
|
| 2457 |
-
}
|
| 2458 |
-
.radio-inline + .radio-inline,
|
| 2459 |
-
.checkbox-inline + .checkbox-inline {
|
| 2460 |
-
margin-top: 0;
|
| 2461 |
-
margin-left: 10px;
|
| 2462 |
-
}
|
| 2463 |
-
input[type="radio"][disabled],
|
| 2464 |
-
input[type="checkbox"][disabled],
|
| 2465 |
-
input[type="radio"].disabled,
|
| 2466 |
-
input[type="checkbox"].disabled,
|
| 2467 |
-
fieldset[disabled] input[type="radio"],
|
| 2468 |
-
fieldset[disabled] input[type="checkbox"] {
|
| 2469 |
-
cursor: not-allowed;
|
| 2470 |
-
}
|
| 2471 |
-
.radio-inline.disabled,
|
| 2472 |
-
.checkbox-inline.disabled,
|
| 2473 |
-
fieldset[disabled] .radio-inline,
|
| 2474 |
-
fieldset[disabled] .checkbox-inline {
|
| 2475 |
-
cursor: not-allowed;
|
| 2476 |
-
}
|
| 2477 |
-
.radio.disabled label,
|
| 2478 |
-
.checkbox.disabled label,
|
| 2479 |
-
fieldset[disabled] .radio label,
|
| 2480 |
-
fieldset[disabled] .checkbox label {
|
| 2481 |
-
cursor: not-allowed;
|
| 2482 |
-
}
|
| 2483 |
-
.form-control-static {
|
| 2484 |
-
padding-top: 7px;
|
| 2485 |
-
padding-bottom: 7px;
|
| 2486 |
-
margin-bottom: 0;
|
| 2487 |
-
}
|
| 2488 |
-
.form-control-static.input-lg,
|
| 2489 |
-
.form-control-static.input-sm {
|
| 2490 |
-
padding-right: 0;
|
| 2491 |
-
padding-left: 0;
|
| 2492 |
-
}
|
| 2493 |
-
.input-sm,
|
| 2494 |
-
.form-horizontal .form-group-sm .form-control {
|
| 2495 |
-
height: 30px;
|
| 2496 |
-
padding: 5px 10px;
|
| 2497 |
-
font-size: 12px;
|
| 2498 |
-
line-height: 1.5;
|
| 2499 |
-
border-radius: 3px;
|
| 2500 |
-
}
|
| 2501 |
-
select.input-sm {
|
| 2502 |
-
height: 30px;
|
| 2503 |
-
line-height: 30px;
|
| 2504 |
-
}
|
| 2505 |
-
textarea.input-sm,
|
| 2506 |
-
select[multiple].input-sm {
|
| 2507 |
-
height: auto;
|
| 2508 |
-
}
|
| 2509 |
-
.input-lg,
|
| 2510 |
-
.form-horizontal .form-group-lg .form-control {
|
| 2511 |
-
height: 46px;
|
| 2512 |
-
padding: 10px 16px;
|
| 2513 |
-
font-size: 18px;
|
| 2514 |
-
line-height: 1.33;
|
| 2515 |
-
border-radius: 6px;
|
| 2516 |
-
}
|
| 2517 |
-
select.input-lg {
|
| 2518 |
-
height: 46px;
|
| 2519 |
-
line-height: 46px;
|
| 2520 |
-
}
|
| 2521 |
-
textarea.input-lg,
|
| 2522 |
-
select[multiple].input-lg {
|
| 2523 |
-
height: auto;
|
| 2524 |
-
}
|
| 2525 |
-
.has-feedback {
|
| 2526 |
-
position: relative;
|
| 2527 |
-
}
|
| 2528 |
-
.has-feedback .form-control {
|
| 2529 |
-
padding-right: 42.5px;
|
| 2530 |
-
}
|
| 2531 |
-
.form-control-feedback {
|
| 2532 |
-
position: absolute;
|
| 2533 |
-
top: 25px;
|
| 2534 |
-
right: 0;
|
| 2535 |
-
z-index: 2;
|
| 2536 |
-
display: block;
|
| 2537 |
-
width: 34px;
|
| 2538 |
-
height: 34px;
|
| 2539 |
-
line-height: 34px;
|
| 2540 |
-
text-align: center;
|
| 2541 |
-
}
|
| 2542 |
-
.input-lg + .form-control-feedback {
|
| 2543 |
-
width: 46px;
|
| 2544 |
-
height: 46px;
|
| 2545 |
-
line-height: 46px;
|
| 2546 |
-
}
|
| 2547 |
-
.input-sm + .form-control-feedback {
|
| 2548 |
-
width: 30px;
|
| 2549 |
-
height: 30px;
|
| 2550 |
-
line-height: 30px;
|
| 2551 |
-
}
|
| 2552 |
-
.has-success .help-block,
|
| 2553 |
-
.has-success .control-label,
|
| 2554 |
-
.has-success .radio,
|
| 2555 |
-
.has-success .checkbox,
|
| 2556 |
-
.has-success .radio-inline,
|
| 2557 |
-
.has-success .checkbox-inline {
|
| 2558 |
-
color: #3c763d;
|
| 2559 |
-
}
|
| 2560 |
-
.has-success .form-control {
|
| 2561 |
-
border-color: #3c763d;
|
| 2562 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
| 2563 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
| 2564 |
-
}
|
| 2565 |
-
.has-success .form-control:focus {
|
| 2566 |
-
border-color: #2b542c;
|
| 2567 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
|
| 2568 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
|
| 2569 |
-
}
|
| 2570 |
-
.has-success .input-group-addon {
|
| 2571 |
-
color: #3c763d;
|
| 2572 |
-
background-color: #dff0d8;
|
| 2573 |
-
border-color: #3c763d;
|
| 2574 |
-
}
|
| 2575 |
-
.has-success .form-control-feedback {
|
| 2576 |
-
color: #3c763d;
|
| 2577 |
-
}
|
| 2578 |
-
.has-warning .help-block,
|
| 2579 |
-
.has-warning .control-label,
|
| 2580 |
-
.has-warning .radio,
|
| 2581 |
-
.has-warning .checkbox,
|
| 2582 |
-
.has-warning .radio-inline,
|
| 2583 |
-
.has-warning .checkbox-inline {
|
| 2584 |
-
color: #8a6d3b;
|
| 2585 |
-
}
|
| 2586 |
-
.has-warning .form-control {
|
| 2587 |
-
border-color: #8a6d3b;
|
| 2588 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
| 2589 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
| 2590 |
-
}
|
| 2591 |
-
.has-warning .form-control:focus {
|
| 2592 |
-
border-color: #66512c;
|
| 2593 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
|
| 2594 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
|
| 2595 |
-
}
|
| 2596 |
-
.has-warning .input-group-addon {
|
| 2597 |
-
color: #8a6d3b;
|
| 2598 |
-
background-color: #fcf8e3;
|
| 2599 |
-
border-color: #8a6d3b;
|
| 2600 |
-
}
|
| 2601 |
-
.has-warning .form-control-feedback {
|
| 2602 |
-
color: #8a6d3b;
|
| 2603 |
-
}
|
| 2604 |
-
.has-error .help-block,
|
| 2605 |
-
.has-error .control-label,
|
| 2606 |
-
.has-error .radio,
|
| 2607 |
-
.has-error .checkbox,
|
| 2608 |
-
.has-error .radio-inline,
|
| 2609 |
-
.has-error .checkbox-inline {
|
| 2610 |
-
color: #a94442;
|
| 2611 |
-
}
|
| 2612 |
-
.has-error .form-control {
|
| 2613 |
-
border-color: #a94442;
|
| 2614 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
| 2615 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
| 2616 |
-
}
|
| 2617 |
-
.has-error .form-control:focus {
|
| 2618 |
-
border-color: #843534;
|
| 2619 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
|
| 2620 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
|
| 2621 |
-
}
|
| 2622 |
-
.has-error .input-group-addon {
|
| 2623 |
-
color: #a94442;
|
| 2624 |
-
background-color: #f2dede;
|
| 2625 |
-
border-color: #a94442;
|
| 2626 |
-
}
|
| 2627 |
-
.has-error .form-control-feedback {
|
| 2628 |
-
color: #a94442;
|
| 2629 |
-
}
|
| 2630 |
-
.has-feedback label.sr-only ~ .form-control-feedback {
|
| 2631 |
-
top: 0;
|
| 2632 |
-
}
|
| 2633 |
-
.help-block {
|
| 2634 |
-
display: block;
|
| 2635 |
-
margin-top: 5px;
|
| 2636 |
-
margin-bottom: 10px;
|
| 2637 |
-
color: #737373;
|
| 2638 |
}
|
| 2639 |
@media (min-width: 768px) {
|
| 2640 |
-
.
|
| 2641 |
-
|
| 2642 |
-
|
| 2643 |
-
|
| 2644 |
-
}
|
| 2645 |
-
.form-inline .form-control {
|
| 2646 |
-
display: inline-block;
|
| 2647 |
-
width: auto;
|
| 2648 |
-
vertical-align: middle;
|
| 2649 |
-
}
|
| 2650 |
-
.form-inline .input-group {
|
| 2651 |
-
display: inline-table;
|
| 2652 |
-
vertical-align: middle;
|
| 2653 |
-
}
|
| 2654 |
-
.form-inline .input-group .input-group-addon,
|
| 2655 |
-
.form-inline .input-group .input-group-btn,
|
| 2656 |
-
.form-inline .input-group .form-control {
|
| 2657 |
-
width: auto;
|
| 2658 |
-
}
|
| 2659 |
-
.form-inline .input-group > .form-control {
|
| 2660 |
width: 100%;
|
| 2661 |
}
|
| 2662 |
-
.
|
| 2663 |
-
|
| 2664 |
-
vertical-align: middle;
|
| 2665 |
}
|
| 2666 |
-
.
|
| 2667 |
-
|
| 2668 |
-
display: inline-block;
|
| 2669 |
-
margin-top: 0;
|
| 2670 |
-
margin-bottom: 0;
|
| 2671 |
-
vertical-align: middle;
|
| 2672 |
}
|
| 2673 |
-
.
|
| 2674 |
-
|
| 2675 |
-
padding-left: 0;
|
| 2676 |
}
|
| 2677 |
-
.
|
| 2678 |
-
|
| 2679 |
-
position: relative;
|
| 2680 |
-
margin-left: 0;
|
| 2681 |
}
|
| 2682 |
-
.
|
| 2683 |
-
|
| 2684 |
}
|
| 2685 |
-
|
| 2686 |
-
|
| 2687 |
-
.form-horizontal .checkbox,
|
| 2688 |
-
.form-horizontal .radio-inline,
|
| 2689 |
-
.form-horizontal .checkbox-inline {
|
| 2690 |
-
padding-top: 7px;
|
| 2691 |
-
margin-top: 0;
|
| 2692 |
-
margin-bottom: 0;
|
| 2693 |
-
}
|
| 2694 |
-
.form-horizontal .radio,
|
| 2695 |
-
.form-horizontal .checkbox {
|
| 2696 |
-
min-height: 27px;
|
| 2697 |
-
}
|
| 2698 |
-
.form-horizontal .form-group {
|
| 2699 |
-
margin-right: -15px;
|
| 2700 |
-
margin-left: -15px;
|
| 2701 |
-
}
|
| 2702 |
-
@media (min-width: 768px) {
|
| 2703 |
-
.form-horizontal .control-label {
|
| 2704 |
-
padding-top: 7px;
|
| 2705 |
-
margin-bottom: 0;
|
| 2706 |
-
text-align: right;
|
| 2707 |
}
|
| 2708 |
-
|
| 2709 |
-
|
| 2710 |
-
top: 0;
|
| 2711 |
-
right: 15px;
|
| 2712 |
-
}
|
| 2713 |
-
@media (min-width: 768px) {
|
| 2714 |
-
.form-horizontal .form-group-lg .control-label {
|
| 2715 |
-
padding-top: 14.3px;
|
| 2716 |
}
|
| 2717 |
-
|
| 2718 |
-
|
| 2719 |
-
.form-horizontal .form-group-sm .control-label {
|
| 2720 |
-
padding-top: 6px;
|
| 2721 |
}
|
| 2722 |
-
|
| 2723 |
-
|
| 2724 |
-
|
| 2725 |
-
|
| 2726 |
-
|
| 2727 |
-
|
| 2728 |
-
|
| 2729 |
-
|
| 2730 |
-
|
| 2731 |
-
|
| 2732 |
-
|
| 2733 |
-
|
| 2734 |
-
-
|
| 2735 |
-
|
| 2736 |
-
|
| 2737 |
-
|
| 2738 |
-
|
| 2739 |
-
|
| 2740 |
-
|
| 2741 |
-
|
| 2742 |
-
|
| 2743 |
-
.
|
| 2744 |
-
|
| 2745 |
-
|
| 2746 |
-
|
| 2747 |
-
|
| 2748 |
-
}
|
| 2749 |
-
.
|
| 2750 |
-
|
| 2751 |
-
|
| 2752 |
-
|
| 2753 |
-
|
| 2754 |
-
.btn:active,
|
| 2755 |
-
.btn.active {
|
| 2756 |
-
background-image: none;
|
| 2757 |
-
outline: 0;
|
| 2758 |
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
| 2759 |
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
| 2760 |
-
}
|
| 2761 |
-
.btn.disabled,
|
| 2762 |
-
.btn[disabled],
|
| 2763 |
-
fieldset[disabled] .btn {
|
| 2764 |
-
pointer-events: none;
|
| 2765 |
-
cursor: not-allowed;
|
| 2766 |
-
filter: alpha(opacity=65);
|
| 2767 |
-
-webkit-box-shadow: none;
|
| 2768 |
-
box-shadow: none;
|
| 2769 |
-
opacity: .65;
|
| 2770 |
-
}
|
| 2771 |
-
.btn-default {
|
| 2772 |
-
color: #333;
|
| 2773 |
-
background-color: #fff;
|
| 2774 |
-
border-color: #ccc;
|
| 2775 |
-
}
|
| 2776 |
-
.btn-default:hover,
|
| 2777 |
-
.btn-default:focus,
|
| 2778 |
-
.btn-default:active,
|
| 2779 |
-
.btn-default.active,
|
| 2780 |
-
.open > .dropdown-toggle.btn-default {
|
| 2781 |
-
color: #333;
|
| 2782 |
-
background-color: #e6e6e6;
|
| 2783 |
-
border-color: #adadad;
|
| 2784 |
-
}
|
| 2785 |
-
.btn-default:active,
|
| 2786 |
-
.btn-default.active,
|
| 2787 |
-
.open > .dropdown-toggle.btn-default {
|
| 2788 |
-
background-image: none;
|
| 2789 |
-
}
|
| 2790 |
-
.btn-default.disabled,
|
| 2791 |
-
.btn-default[disabled],
|
| 2792 |
-
fieldset[disabled] .btn-default,
|
| 2793 |
-
.btn-default.disabled:hover,
|
| 2794 |
-
.btn-default[disabled]:hover,
|
| 2795 |
-
fieldset[disabled] .btn-default:hover,
|
| 2796 |
-
.btn-default.disabled:focus,
|
| 2797 |
-
.btn-default[disabled]:focus,
|
| 2798 |
-
fieldset[disabled] .btn-default:focus,
|
| 2799 |
-
.btn-default.disabled:active,
|
| 2800 |
-
.btn-default[disabled]:active,
|
| 2801 |
-
fieldset[disabled] .btn-default:active,
|
| 2802 |
-
.btn-default.disabled.active,
|
| 2803 |
-
.btn-default[disabled].active,
|
| 2804 |
-
fieldset[disabled] .btn-default.active {
|
| 2805 |
-
background-color: #fff;
|
| 2806 |
-
border-color: #ccc;
|
| 2807 |
-
}
|
| 2808 |
-
.btn-default .badge {
|
| 2809 |
-
color: #fff;
|
| 2810 |
-
background-color: #333;
|
| 2811 |
-
}
|
| 2812 |
-
.btn-primary {
|
| 2813 |
-
color: #fff;
|
| 2814 |
-
background-color: #428bca;
|
| 2815 |
-
border-color: #357ebd;
|
| 2816 |
-
}
|
| 2817 |
-
.btn-primary:hover,
|
| 2818 |
-
.btn-primary:focus,
|
| 2819 |
-
.btn-primary:active,
|
| 2820 |
-
.btn-primary.active,
|
| 2821 |
-
.open > .dropdown-toggle.btn-primary {
|
| 2822 |
-
color: #fff;
|
| 2823 |
-
background-color: #3071a9;
|
| 2824 |
-
border-color: #285e8e;
|
| 2825 |
-
}
|
| 2826 |
-
.btn-primary:active,
|
| 2827 |
-
.btn-primary.active,
|
| 2828 |
-
.open > .dropdown-toggle.btn-primary {
|
| 2829 |
-
background-image: none;
|
| 2830 |
-
}
|
| 2831 |
-
.btn-primary.disabled,
|
| 2832 |
-
.btn-primary[disabled],
|
| 2833 |
-
fieldset[disabled] .btn-primary,
|
| 2834 |
-
.btn-primary.disabled:hover,
|
| 2835 |
-
.btn-primary[disabled]:hover,
|
| 2836 |
-
fieldset[disabled] .btn-primary:hover,
|
| 2837 |
-
.btn-primary.disabled:focus,
|
| 2838 |
-
.btn-primary[disabled]:focus,
|
| 2839 |
-
fieldset[disabled] .btn-primary:focus,
|
| 2840 |
-
.btn-primary.disabled:active,
|
| 2841 |
-
.btn-primary[disabled]:active,
|
| 2842 |
-
fieldset[disabled] .btn-primary:active,
|
| 2843 |
-
.btn-primary.disabled.active,
|
| 2844 |
-
.btn-primary[disabled].active,
|
| 2845 |
-
fieldset[disabled] .btn-primary.active {
|
| 2846 |
-
background-color: #428bca;
|
| 2847 |
-
border-color: #357ebd;
|
| 2848 |
-
}
|
| 2849 |
-
.btn-primary .badge {
|
| 2850 |
-
color: #428bca;
|
| 2851 |
-
background-color: #fff;
|
| 2852 |
-
}
|
| 2853 |
-
.btn-success {
|
| 2854 |
-
color: #fff;
|
| 2855 |
-
background-color: #5cb85c;
|
| 2856 |
-
border-color: #4cae4c;
|
| 2857 |
-
}
|
| 2858 |
-
.btn-success:hover,
|
| 2859 |
-
.btn-success:focus,
|
| 2860 |
-
.btn-success:active,
|
| 2861 |
-
.btn-success.active,
|
| 2862 |
-
.open > .dropdown-toggle.btn-success {
|
| 2863 |
-
color: #fff;
|
| 2864 |
-
background-color: #449d44;
|
| 2865 |
-
border-color: #398439;
|
| 2866 |
-
}
|
| 2867 |
-
.btn-success:active,
|
| 2868 |
-
.btn-success.active,
|
| 2869 |
-
.open > .dropdown-toggle.btn-success {
|
| 2870 |
-
background-image: none;
|
| 2871 |
-
}
|
| 2872 |
-
.btn-success.disabled,
|
| 2873 |
-
.btn-success[disabled],
|
| 2874 |
-
fieldset[disabled] .btn-success,
|
| 2875 |
-
.btn-success.disabled:hover,
|
| 2876 |
-
.btn-success[disabled]:hover,
|
| 2877 |
-
fieldset[disabled] .btn-success:hover,
|
| 2878 |
-
.btn-success.disabled:focus,
|
| 2879 |
-
.btn-success[disabled]:focus,
|
| 2880 |
-
fieldset[disabled] .btn-success:focus,
|
| 2881 |
-
.btn-success.disabled:active,
|
| 2882 |
-
.btn-success[disabled]:active,
|
| 2883 |
-
fieldset[disabled] .btn-success:active,
|
| 2884 |
-
.btn-success.disabled.active,
|
| 2885 |
-
.btn-success[disabled].active,
|
| 2886 |
-
fieldset[disabled] .btn-success.active {
|
| 2887 |
-
background-color: #5cb85c;
|
| 2888 |
-
border-color: #4cae4c;
|
| 2889 |
-
}
|
| 2890 |
-
.btn-success .badge {
|
| 2891 |
-
color: #5cb85c;
|
| 2892 |
-
background-color: #fff;
|
| 2893 |
-
}
|
| 2894 |
-
.btn-info {
|
| 2895 |
-
color: #fff;
|
| 2896 |
-
background-color: #5bc0de;
|
| 2897 |
-
border-color: #46b8da;
|
| 2898 |
-
}
|
| 2899 |
-
.btn-info:hover,
|
| 2900 |
-
.btn-info:focus,
|
| 2901 |
-
.btn-info:active,
|
| 2902 |
-
.btn-info.active,
|
| 2903 |
-
.open > .dropdown-toggle.btn-info {
|
| 2904 |
-
color: #fff;
|
| 2905 |
-
background-color: #31b0d5;
|
| 2906 |
-
border-color: #269abc;
|
| 2907 |
-
}
|
| 2908 |
-
.btn-info:active,
|
| 2909 |
-
.btn-info.active,
|
| 2910 |
-
.open > .dropdown-toggle.btn-info {
|
| 2911 |
-
background-image: none;
|
| 2912 |
-
}
|
| 2913 |
-
.btn-info.disabled,
|
| 2914 |
-
.btn-info[disabled],
|
| 2915 |
-
fieldset[disabled] .btn-info,
|
| 2916 |
-
.btn-info.disabled:hover,
|
| 2917 |
-
.btn-info[disabled]:hover,
|
| 2918 |
-
fieldset[disabled] .btn-info:hover,
|
| 2919 |
-
.btn-info.disabled:focus,
|
| 2920 |
-
.btn-info[disabled]:focus,
|
| 2921 |
-
fieldset[disabled] .btn-info:focus,
|
| 2922 |
-
.btn-info.disabled:active,
|
| 2923 |
-
.btn-info[disabled]:active,
|
| 2924 |
-
fieldset[disabled] .btn-info:active,
|
| 2925 |
-
.btn-info.disabled.active,
|
| 2926 |
-
.btn-info[disabled].active,
|
| 2927 |
-
fieldset[disabled] .btn-info.active {
|
| 2928 |
-
background-color: #5bc0de;
|
| 2929 |
-
border-color: #46b8da;
|
| 2930 |
-
}
|
| 2931 |
-
.btn-info .badge {
|
| 2932 |
-
color: #5bc0de;
|
| 2933 |
-
background-color: #fff;
|
| 2934 |
-
}
|
| 2935 |
-
.btn-warning {
|
| 2936 |
-
color: #fff;
|
| 2937 |
-
background-color: #f0ad4e;
|
| 2938 |
-
border-color: #eea236;
|
| 2939 |
-
}
|
| 2940 |
-
.btn-warning:hover,
|
| 2941 |
-
.btn-warning:focus,
|
| 2942 |
-
.btn-warning:active,
|
| 2943 |
-
.btn-warning.active,
|
| 2944 |
-
.open > .dropdown-toggle.btn-warning {
|
| 2945 |
-
color: #fff;
|
| 2946 |
-
background-color: #ec971f;
|
| 2947 |
-
border-color: #d58512;
|
| 2948 |
-
}
|
| 2949 |
-
.btn-warning:active,
|
| 2950 |
-
.btn-warning.active,
|
| 2951 |
-
.open > .dropdown-toggle.btn-warning {
|
| 2952 |
-
background-image: none;
|
| 2953 |
-
}
|
| 2954 |
-
.btn-warning.disabled,
|
| 2955 |
-
.btn-warning[disabled],
|
| 2956 |
-
fieldset[disabled] .btn-warning,
|
| 2957 |
-
.btn-warning.disabled:hover,
|
| 2958 |
-
.btn-warning[disabled]:hover,
|
| 2959 |
-
fieldset[disabled] .btn-warning:hover,
|
| 2960 |
-
.btn-warning.disabled:focus,
|
| 2961 |
-
.btn-warning[disabled]:focus,
|
| 2962 |
-
fieldset[disabled] .btn-warning:focus,
|
| 2963 |
-
.btn-warning.disabled:active,
|
| 2964 |
-
.btn-warning[disabled]:active,
|
| 2965 |
-
fieldset[disabled] .btn-warning:active,
|
| 2966 |
-
.btn-warning.disabled.active,
|
| 2967 |
-
.btn-warning[disabled].active,
|
| 2968 |
-
fieldset[disabled] .btn-warning.active {
|
| 2969 |
-
background-color: #f0ad4e;
|
| 2970 |
-
border-color: #eea236;
|
| 2971 |
-
}
|
| 2972 |
-
.btn-warning .badge {
|
| 2973 |
-
color: #f0ad4e;
|
| 2974 |
-
background-color: #fff;
|
| 2975 |
-
}
|
| 2976 |
-
.btn-danger {
|
| 2977 |
-
color: #fff;
|
| 2978 |
-
background-color: #d9534f;
|
| 2979 |
-
border-color: #d43f3a;
|
| 2980 |
-
}
|
| 2981 |
-
.btn-danger:hover,
|
| 2982 |
-
.btn-danger:focus,
|
| 2983 |
-
.btn-danger:active,
|
| 2984 |
-
.btn-danger.active,
|
| 2985 |
-
.open > .dropdown-toggle.btn-danger {
|
| 2986 |
-
color: #fff;
|
| 2987 |
-
background-color: #c9302c;
|
| 2988 |
-
border-color: #ac2925;
|
| 2989 |
-
}
|
| 2990 |
-
.btn-danger:active,
|
| 2991 |
-
.btn-danger.active,
|
| 2992 |
-
.open > .dropdown-toggle.btn-danger {
|
| 2993 |
-
background-image: none;
|
| 2994 |
-
}
|
| 2995 |
-
.btn-danger.disabled,
|
| 2996 |
-
.btn-danger[disabled],
|
| 2997 |
-
fieldset[disabled] .btn-danger,
|
| 2998 |
-
.btn-danger.disabled:hover,
|
| 2999 |
-
.btn-danger[disabled]:hover,
|
| 3000 |
-
fieldset[disabled] .btn-danger:hover,
|
| 3001 |
-
.btn-danger.disabled:focus,
|
| 3002 |
-
.btn-danger[disabled]:focus,
|
| 3003 |
-
fieldset[disabled] .btn-danger:focus,
|
| 3004 |
-
.btn-danger.disabled:active,
|
| 3005 |
-
.btn-danger[disabled]:active,
|
| 3006 |
-
fieldset[disabled] .btn-danger:active,
|
| 3007 |
-
.btn-danger.disabled.active,
|
| 3008 |
-
.btn-danger[disabled].active,
|
| 3009 |
-
fieldset[disabled] .btn-danger.active {
|
| 3010 |
-
background-color: #d9534f;
|
| 3011 |
-
border-color: #d43f3a;
|
| 3012 |
-
}
|
| 3013 |
-
.btn-danger .badge {
|
| 3014 |
-
color: #d9534f;
|
| 3015 |
-
background-color: #fff;
|
| 3016 |
-
}
|
| 3017 |
-
.btn-link {
|
| 3018 |
-
font-weight: normal;
|
| 3019 |
-
color: #428bca;
|
| 3020 |
-
cursor: pointer;
|
| 3021 |
-
border-radius: 0;
|
| 3022 |
-
}
|
| 3023 |
-
.btn-link,
|
| 3024 |
-
.btn-link:active,
|
| 3025 |
-
.btn-link[disabled],
|
| 3026 |
-
fieldset[disabled] .btn-link {
|
| 3027 |
-
background-color: transparent;
|
| 3028 |
-
-webkit-box-shadow: none;
|
| 3029 |
-
box-shadow: none;
|
| 3030 |
-
}
|
| 3031 |
-
.btn-link,
|
| 3032 |
-
.btn-link:hover,
|
| 3033 |
-
.btn-link:focus,
|
| 3034 |
-
.btn-link:active {
|
| 3035 |
-
border-color: transparent;
|
| 3036 |
-
}
|
| 3037 |
-
.btn-link:hover,
|
| 3038 |
-
.btn-link:focus {
|
| 3039 |
-
color: #2a6496;
|
| 3040 |
-
text-decoration: underline;
|
| 3041 |
-
background-color: transparent;
|
| 3042 |
-
}
|
| 3043 |
-
.btn-link[disabled]:hover,
|
| 3044 |
-
fieldset[disabled] .btn-link:hover,
|
| 3045 |
-
.btn-link[disabled]:focus,
|
| 3046 |
-
fieldset[disabled] .btn-link:focus {
|
| 3047 |
-
color: #777;
|
| 3048 |
-
text-decoration: none;
|
| 3049 |
-
}
|
| 3050 |
-
.btn-lg,
|
| 3051 |
-
.btn-group-lg > .btn {
|
| 3052 |
-
padding: 10px 16px;
|
| 3053 |
-
font-size: 18px;
|
| 3054 |
-
line-height: 1.33;
|
| 3055 |
-
border-radius: 6px;
|
| 3056 |
-
}
|
| 3057 |
-
.btn-sm,
|
| 3058 |
-
.btn-group-sm > .btn {
|
| 3059 |
-
padding: 5px 10px;
|
| 3060 |
-
font-size: 12px;
|
| 3061 |
-
line-height: 1.5;
|
| 3062 |
-
border-radius: 3px;
|
| 3063 |
-
}
|
| 3064 |
-
.btn-xs,
|
| 3065 |
-
.btn-group-xs > .btn {
|
| 3066 |
-
padding: 1px 5px;
|
| 3067 |
-
font-size: 12px;
|
| 3068 |
-
line-height: 1.5;
|
| 3069 |
-
border-radius: 3px;
|
| 3070 |
-
}
|
| 3071 |
-
.btn-block {
|
| 3072 |
-
display: block;
|
| 3073 |
-
width: 100%;
|
| 3074 |
-
}
|
| 3075 |
-
.btn-block + .btn-block {
|
| 3076 |
-
margin-top: 5px;
|
| 3077 |
-
}
|
| 3078 |
-
input[type="submit"].btn-block,
|
| 3079 |
-
input[type="reset"].btn-block,
|
| 3080 |
-
input[type="button"].btn-block {
|
| 3081 |
-
width: 100%;
|
| 3082 |
-
}
|
| 3083 |
-
.fade {
|
| 3084 |
-
opacity: 0;
|
| 3085 |
-
-webkit-transition: opacity .15s linear;
|
| 3086 |
-
-o-transition: opacity .15s linear;
|
| 3087 |
-
transition: opacity .15s linear;
|
| 3088 |
-
}
|
| 3089 |
-
.fade.in {
|
| 3090 |
-
opacity: 1;
|
| 3091 |
-
}
|
| 3092 |
-
.collapse {
|
| 3093 |
-
display: none;
|
| 3094 |
-
}
|
| 3095 |
-
.collapse.in {
|
| 3096 |
-
display: block;
|
| 3097 |
-
}
|
| 3098 |
-
tr.collapse.in {
|
| 3099 |
-
display: table-row;
|
| 3100 |
-
}
|
| 3101 |
-
tbody.collapse.in {
|
| 3102 |
-
display: table-row-group;
|
| 3103 |
-
}
|
| 3104 |
-
.collapsing {
|
| 3105 |
-
position: relative;
|
| 3106 |
-
height: 0;
|
| 3107 |
-
overflow: hidden;
|
| 3108 |
-
-webkit-transition: height .35s ease;
|
| 3109 |
-
-o-transition: height .35s ease;
|
| 3110 |
-
transition: height .35s ease;
|
| 3111 |
-
}
|
| 3112 |
-
.caret {
|
| 3113 |
-
display: inline-block;
|
| 3114 |
-
width: 0;
|
| 3115 |
-
height: 0;
|
| 3116 |
-
margin-left: 2px;
|
| 3117 |
-
vertical-align: middle;
|
| 3118 |
-
border-top: 4px solid;
|
| 3119 |
-
border-right: 4px solid transparent;
|
| 3120 |
-
border-left: 4px solid transparent;
|
| 3121 |
-
}
|
| 3122 |
-
.dropdown {
|
| 3123 |
-
position: relative;
|
| 3124 |
-
}
|
| 3125 |
-
.dropdown-toggle:focus {
|
| 3126 |
-
outline: 0;
|
| 3127 |
-
}
|
| 3128 |
-
.dropdown-menu {
|
| 3129 |
-
position: absolute;
|
| 3130 |
-
top: 100%;
|
| 3131 |
-
left: 0;
|
| 3132 |
-
z-index: 1000;
|
| 3133 |
-
display: none;
|
| 3134 |
-
float: left;
|
| 3135 |
-
min-width: 160px;
|
| 3136 |
-
padding: 5px 0;
|
| 3137 |
-
margin: 2px 0 0;
|
| 3138 |
-
font-size: 14px;
|
| 3139 |
-
text-align: left;
|
| 3140 |
-
list-style: none;
|
| 3141 |
-
background-color: #fff;
|
| 3142 |
-
-webkit-background-clip: padding-box;
|
| 3143 |
-
background-clip: padding-box;
|
| 3144 |
-
border: 1px solid #ccc;
|
| 3145 |
-
border: 1px solid rgba(0, 0, 0, .15);
|
| 3146 |
-
border-radius: 4px;
|
| 3147 |
-
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
| 3148 |
-
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
| 3149 |
-
}
|
| 3150 |
-
.dropdown-menu.pull-right {
|
| 3151 |
-
right: 0;
|
| 3152 |
-
left: auto;
|
| 3153 |
-
}
|
| 3154 |
-
.dropdown-menu .divider {
|
| 3155 |
-
height: 1px;
|
| 3156 |
-
margin: 9px 0;
|
| 3157 |
-
overflow: hidden;
|
| 3158 |
-
background-color: #e5e5e5;
|
| 3159 |
-
}
|
| 3160 |
-
.dropdown-menu > li > a {
|
| 3161 |
-
display: block;
|
| 3162 |
-
padding: 3px 20px;
|
| 3163 |
-
clear: both;
|
| 3164 |
-
font-weight: normal;
|
| 3165 |
-
line-height: 1.42857143;
|
| 3166 |
-
color: #333;
|
| 3167 |
-
white-space: nowrap;
|
| 3168 |
-
}
|
| 3169 |
-
.dropdown-menu > li > a:hover,
|
| 3170 |
-
.dropdown-menu > li > a:focus {
|
| 3171 |
-
color: #262626;
|
| 3172 |
-
text-decoration: none;
|
| 3173 |
-
background-color: #f5f5f5;
|
| 3174 |
-
}
|
| 3175 |
-
.dropdown-menu > .active > a,
|
| 3176 |
-
.dropdown-menu > .active > a:hover,
|
| 3177 |
-
.dropdown-menu > .active > a:focus {
|
| 3178 |
-
color: #fff;
|
| 3179 |
-
text-decoration: none;
|
| 3180 |
-
background-color: #428bca;
|
| 3181 |
-
outline: 0;
|
| 3182 |
-
}
|
| 3183 |
-
.dropdown-menu > .disabled > a,
|
| 3184 |
-
.dropdown-menu > .disabled > a:hover,
|
| 3185 |
-
.dropdown-menu > .disabled > a:focus {
|
| 3186 |
-
color: #777;
|
| 3187 |
-
}
|
| 3188 |
-
.dropdown-menu > .disabled > a:hover,
|
| 3189 |
-
.dropdown-menu > .disabled > a:focus {
|
| 3190 |
-
text-decoration: none;
|
| 3191 |
-
cursor: not-allowed;
|
| 3192 |
-
background-color: transparent;
|
| 3193 |
-
background-image: none;
|
| 3194 |
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
| 3195 |
-
}
|
| 3196 |
-
.open > .dropdown-menu {
|
| 3197 |
-
display: block;
|
| 3198 |
-
}
|
| 3199 |
-
.open > a {
|
| 3200 |
-
outline: 0;
|
| 3201 |
-
}
|
| 3202 |
-
.dropdown-menu-right {
|
| 3203 |
-
right: 0;
|
| 3204 |
-
left: auto;
|
| 3205 |
-
}
|
| 3206 |
-
.dropdown-menu-left {
|
| 3207 |
-
right: auto;
|
| 3208 |
-
left: 0;
|
| 3209 |
-
}
|
| 3210 |
-
.dropdown-header {
|
| 3211 |
-
display: block;
|
| 3212 |
-
padding: 3px 20px;
|
| 3213 |
-
font-size: 12px;
|
| 3214 |
-
line-height: 1.42857143;
|
| 3215 |
-
color: #777;
|
| 3216 |
-
white-space: nowrap;
|
| 3217 |
-
}
|
| 3218 |
-
.dropdown-backdrop {
|
| 3219 |
-
position: fixed;
|
| 3220 |
-
top: 0;
|
| 3221 |
-
right: 0;
|
| 3222 |
-
bottom: 0;
|
| 3223 |
-
left: 0;
|
| 3224 |
-
z-index: 990;
|
| 3225 |
-
}
|
| 3226 |
-
.pull-right > .dropdown-menu {
|
| 3227 |
-
right: 0;
|
| 3228 |
-
left: auto;
|
| 3229 |
-
}
|
| 3230 |
-
.dropup .caret,
|
| 3231 |
-
.navbar-fixed-bottom .dropdown .caret {
|
| 3232 |
-
content: "";
|
| 3233 |
-
border-top: 0;
|
| 3234 |
-
border-bottom: 4px solid;
|
| 3235 |
-
}
|
| 3236 |
-
.dropup .dropdown-menu,
|
| 3237 |
-
.navbar-fixed-bottom .dropdown .dropdown-menu {
|
| 3238 |
-
top: auto;
|
| 3239 |
-
bottom: 100%;
|
| 3240 |
-
margin-bottom: 1px;
|
| 3241 |
-
}
|
| 3242 |
-
@media (min-width: 768px) {
|
| 3243 |
-
.navbar-right .dropdown-menu {
|
| 3244 |
-
right: 0;
|
| 3245 |
-
left: auto;
|
| 3246 |
}
|
| 3247 |
-
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3248 |
right: auto;
|
| 3249 |
-
left: 0;
|
| 3250 |
}
|
| 3251 |
-
|
| 3252 |
-
|
| 3253 |
-
.btn-group-vertical {
|
| 3254 |
-
position: relative;
|
| 3255 |
-
display: inline-block;
|
| 3256 |
-
vertical-align: middle;
|
| 3257 |
-
}
|
| 3258 |
-
.btn-group > .btn,
|
| 3259 |
-
.btn-group-vertical > .btn {
|
| 3260 |
-
position: relative;
|
| 3261 |
-
float: left;
|
| 3262 |
-
}
|
| 3263 |
-
.btn-group > .btn:hover,
|
| 3264 |
-
.btn-group-vertical > .btn:hover,
|
| 3265 |
-
.btn-group > .btn:focus,
|
| 3266 |
-
.btn-group-vertical > .btn:focus,
|
| 3267 |
-
.btn-group > .btn:active,
|
| 3268 |
-
.btn-group-vertical > .btn:active,
|
| 3269 |
-
.btn-group > .btn.active,
|
| 3270 |
-
.btn-group-vertical > .btn.active {
|
| 3271 |
-
z-index: 2;
|
| 3272 |
-
}
|
| 3273 |
-
.btn-group > .btn:focus,
|
| 3274 |
-
.btn-group-vertical > .btn:focus {
|
| 3275 |
-
outline: 0;
|
| 3276 |
-
}
|
| 3277 |
-
.btn-group .btn + .btn,
|
| 3278 |
-
.btn-group .btn + .btn-group,
|
| 3279 |
-
.btn-group .btn-group + .btn,
|
| 3280 |
-
.btn-group .btn-group + .btn-group {
|
| 3281 |
-
margin-left: -1px;
|
| 3282 |
-
}
|
| 3283 |
-
.btn-toolbar {
|
| 3284 |
-
margin-left: -5px;
|
| 3285 |
-
}
|
| 3286 |
-
.btn-toolbar .btn-group,
|
| 3287 |
-
.btn-toolbar .input-group {
|
| 3288 |
-
float: left;
|
| 3289 |
-
}
|
| 3290 |
-
.btn-toolbar > .btn,
|
| 3291 |
-
.btn-toolbar > .btn-group,
|
| 3292 |
-
.btn-toolbar > .input-group {
|
| 3293 |
-
margin-left: 5px;
|
| 3294 |
-
}
|
| 3295 |
-
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
| 3296 |
-
border-radius: 0;
|
| 3297 |
-
}
|
| 3298 |
-
.btn-group > .btn:first-child {
|
| 3299 |
-
margin-left: 0;
|
| 3300 |
-
}
|
| 3301 |
-
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
| 3302 |
-
border-top-right-radius: 0;
|
| 3303 |
-
border-bottom-right-radius: 0;
|
| 3304 |
-
}
|
| 3305 |
-
.btn-group > .btn:last-child:not(:first-child),
|
| 3306 |
-
.btn-group > .dropdown-toggle:not(:first-child) {
|
| 3307 |
-
border-top-left-radius: 0;
|
| 3308 |
-
border-bottom-left-radius: 0;
|
| 3309 |
-
}
|
| 3310 |
-
.btn-group > .btn-group {
|
| 3311 |
-
float: left;
|
| 3312 |
-
}
|
| 3313 |
-
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
| 3314 |
-
border-radius: 0;
|
| 3315 |
-
}
|
| 3316 |
-
.btn-group > .btn-group:first-child > .btn:last-child,
|
| 3317 |
-
.btn-group > .btn-group:first-child > .dropdown-toggle {
|
| 3318 |
-
border-top-right-radius: 0;
|
| 3319 |
-
border-bottom-right-radius: 0;
|
| 3320 |
-
}
|
| 3321 |
-
.btn-group > .btn-group:last-child > .btn:first-child {
|
| 3322 |
-
border-top-left-radius: 0;
|
| 3323 |
-
border-bottom-left-radius: 0;
|
| 3324 |
-
}
|
| 3325 |
-
.btn-group .dropdown-toggle:active,
|
| 3326 |
-
.btn-group.open .dropdown-toggle {
|
| 3327 |
-
outline: 0;
|
| 3328 |
-
}
|
| 3329 |
-
.btn-group > .btn + .dropdown-toggle {
|
| 3330 |
-
padding-right: 8px;
|
| 3331 |
-
padding-left: 8px;
|
| 3332 |
-
}
|
| 3333 |
-
.btn-group > .btn-lg + .dropdown-toggle {
|
| 3334 |
-
padding-right: 12px;
|
| 3335 |
-
padding-left: 12px;
|
| 3336 |
-
}
|
| 3337 |
-
.btn-group.open .dropdown-toggle {
|
| 3338 |
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
| 3339 |
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
| 3340 |
-
}
|
| 3341 |
-
.btn-group.open .dropdown-toggle.btn-link {
|
| 3342 |
-
-webkit-box-shadow: none;
|
| 3343 |
-
box-shadow: none;
|
| 3344 |
-
}
|
| 3345 |
-
.btn .caret {
|
| 3346 |
-
margin-left: 0;
|
| 3347 |
-
}
|
| 3348 |
-
.btn-lg .caret {
|
| 3349 |
-
border-width: 5px 5px 0;
|
| 3350 |
-
border-bottom-width: 0;
|
| 3351 |
-
}
|
| 3352 |
-
.dropup .btn-lg .caret {
|
| 3353 |
-
border-width: 0 5px 5px;
|
| 3354 |
-
}
|
| 3355 |
-
.btn-group-vertical > .btn,
|
| 3356 |
-
.btn-group-vertical > .btn-group,
|
| 3357 |
-
.btn-group-vertical > .btn-group > .btn {
|
| 3358 |
-
display: block;
|
| 3359 |
-
float: none;
|
| 3360 |
-
width: 100%;
|
| 3361 |
-
max-width: 100%;
|
| 3362 |
-
}
|
| 3363 |
-
.btn-group-vertical > .btn-group > .btn {
|
| 3364 |
-
float: none;
|
| 3365 |
-
}
|
| 3366 |
-
.btn-group-vertical > .btn + .btn,
|
| 3367 |
-
.btn-group-vertical > .btn + .btn-group,
|
| 3368 |
-
.btn-group-vertical > .btn-group + .btn,
|
| 3369 |
-
.btn-group-vertical > .btn-group + .btn-group {
|
| 3370 |
-
margin-top: -1px;
|
| 3371 |
-
margin-left: 0;
|
| 3372 |
-
}
|
| 3373 |
-
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
| 3374 |
-
border-radius: 0;
|
| 3375 |
-
}
|
| 3376 |
-
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
| 3377 |
-
border-top-right-radius: 4px;
|
| 3378 |
-
border-bottom-right-radius: 0;
|
| 3379 |
-
border-bottom-left-radius: 0;
|
| 3380 |
-
}
|
| 3381 |
-
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
| 3382 |
-
border-top-left-radius: 0;
|
| 3383 |
-
border-top-right-radius: 0;
|
| 3384 |
-
border-bottom-left-radius: 4px;
|
| 3385 |
-
}
|
| 3386 |
-
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
| 3387 |
-
border-radius: 0;
|
| 3388 |
-
}
|
| 3389 |
-
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
| 3390 |
-
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
| 3391 |
-
border-bottom-right-radius: 0;
|
| 3392 |
-
border-bottom-left-radius: 0;
|
| 3393 |
-
}
|
| 3394 |
-
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
| 3395 |
-
border-top-left-radius: 0;
|
| 3396 |
-
border-top-right-radius: 0;
|
| 3397 |
-
}
|
| 3398 |
-
.btn-group-justified {
|
| 3399 |
-
display: table;
|
| 3400 |
-
width: 100%;
|
| 3401 |
-
table-layout: fixed;
|
| 3402 |
-
border-collapse: separate;
|
| 3403 |
-
}
|
| 3404 |
-
.btn-group-justified > .btn,
|
| 3405 |
-
.btn-group-justified > .btn-group {
|
| 3406 |
-
display: table-cell;
|
| 3407 |
-
float: none;
|
| 3408 |
-
width: 1%;
|
| 3409 |
-
}
|
| 3410 |
-
.btn-group-justified > .btn-group .btn {
|
| 3411 |
-
width: 100%;
|
| 3412 |
-
}
|
| 3413 |
-
.btn-group-justified > .btn-group .dropdown-menu {
|
| 3414 |
-
left: auto;
|
| 3415 |
-
}
|
| 3416 |
-
[data-toggle="buttons"] > .btn > input[type="radio"],
|
| 3417 |
-
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
|
| 3418 |
-
position: absolute;
|
| 3419 |
-
z-index: -1;
|
| 3420 |
-
filter: alpha(opacity=0);
|
| 3421 |
-
opacity: 0;
|
| 3422 |
-
}
|
| 3423 |
-
.input-group {
|
| 3424 |
-
position: relative;
|
| 3425 |
-
display: table;
|
| 3426 |
-
border-collapse: separate;
|
| 3427 |
-
}
|
| 3428 |
-
.input-group[class*="col-"] {
|
| 3429 |
-
float: none;
|
| 3430 |
-
padding-right: 0;
|
| 3431 |
-
padding-left: 0;
|
| 3432 |
-
}
|
| 3433 |
-
.input-group .form-control {
|
| 3434 |
-
position: relative;
|
| 3435 |
-
z-index: 2;
|
| 3436 |
-
float: left;
|
| 3437 |
-
width: 100%;
|
| 3438 |
-
margin-bottom: 0;
|
| 3439 |
-
}
|
| 3440 |
-
.input-group-lg > .form-control,
|
| 3441 |
-
.input-group-lg > .input-group-addon,
|
| 3442 |
-
.input-group-lg > .input-group-btn > .btn {
|
| 3443 |
-
height: 46px;
|
| 3444 |
-
padding: 10px 16px;
|
| 3445 |
-
font-size: 18px;
|
| 3446 |
-
line-height: 1.33;
|
| 3447 |
-
border-radius: 6px;
|
| 3448 |
-
}
|
| 3449 |
-
select.input-group-lg > .form-control,
|
| 3450 |
-
select.input-group-lg > .input-group-addon,
|
| 3451 |
-
select.input-group-lg > .input-group-btn > .btn {
|
| 3452 |
-
height: 46px;
|
| 3453 |
-
line-height: 46px;
|
| 3454 |
-
}
|
| 3455 |
-
textarea.input-group-lg > .form-control,
|
| 3456 |
-
textarea.input-group-lg > .input-group-addon,
|
| 3457 |
-
textarea.input-group-lg > .input-group-btn > .btn,
|
| 3458 |
-
select[multiple].input-group-lg > .form-control,
|
| 3459 |
-
select[multiple].input-group-lg > .input-group-addon,
|
| 3460 |
-
select[multiple].input-group-lg > .input-group-btn > .btn {
|
| 3461 |
-
height: auto;
|
| 3462 |
-
}
|
| 3463 |
-
.input-group-sm > .form-control,
|
| 3464 |
-
.input-group-sm > .input-group-addon,
|
| 3465 |
-
.input-group-sm > .input-group-btn > .btn {
|
| 3466 |
-
height: 30px;
|
| 3467 |
-
padding: 5px 10px;
|
| 3468 |
-
font-size: 12px;
|
| 3469 |
-
line-height: 1.5;
|
| 3470 |
-
border-radius: 3px;
|
| 3471 |
-
}
|
| 3472 |
-
select.input-group-sm > .form-control,
|
| 3473 |
-
select.input-group-sm > .input-group-addon,
|
| 3474 |
-
select.input-group-sm > .input-group-btn > .btn {
|
| 3475 |
-
height: 30px;
|
| 3476 |
-
line-height: 30px;
|
| 3477 |
-
}
|
| 3478 |
-
textarea.input-group-sm > .form-control,
|
| 3479 |
-
textarea.input-group-sm > .input-group-addon,
|
| 3480 |
-
textarea.input-group-sm > .input-group-btn > .btn,
|
| 3481 |
-
select[multiple].input-group-sm > .form-control,
|
| 3482 |
-
select[multiple].input-group-sm > .input-group-addon,
|
| 3483 |
-
select[multiple].input-group-sm > .input-group-btn > .btn {
|
| 3484 |
-
height: auto;
|
| 3485 |
-
}
|
| 3486 |
-
.input-group-addon,
|
| 3487 |
-
.input-group-btn,
|
| 3488 |
-
.input-group .form-control {
|
| 3489 |
-
display: table-cell;
|
| 3490 |
-
}
|
| 3491 |
-
.input-group-addon:not(:first-child):not(:last-child),
|
| 3492 |
-
.input-group-btn:not(:first-child):not(:last-child),
|
| 3493 |
-
.input-group .form-control:not(:first-child):not(:last-child) {
|
| 3494 |
-
border-radius: 0;
|
| 3495 |
-
}
|
| 3496 |
-
.input-group-addon,
|
| 3497 |
-
.input-group-btn {
|
| 3498 |
-
width: 1%;
|
| 3499 |
-
white-space: nowrap;
|
| 3500 |
-
vertical-align: middle;
|
| 3501 |
-
}
|
| 3502 |
-
.input-group-addon {
|
| 3503 |
-
padding: 6px 12px;
|
| 3504 |
-
font-size: 14px;
|
| 3505 |
-
font-weight: normal;
|
| 3506 |
-
line-height: 1;
|
| 3507 |
-
color: #555;
|
| 3508 |
-
text-align: center;
|
| 3509 |
-
background-color: #eee;
|
| 3510 |
-
border: 1px solid #ccc;
|
| 3511 |
-
border-radius: 4px;
|
| 3512 |
-
}
|
| 3513 |
-
.input-group-addon.input-sm {
|
| 3514 |
-
padding: 5px 10px;
|
| 3515 |
-
font-size: 12px;
|
| 3516 |
-
border-radius: 3px;
|
| 3517 |
-
}
|
| 3518 |
-
.input-group-addon.input-lg {
|
| 3519 |
-
padding: 10px 16px;
|
| 3520 |
-
font-size: 18px;
|
| 3521 |
-
border-radius: 6px;
|
| 3522 |
-
}
|
| 3523 |
-
.input-group-addon input[type="radio"],
|
| 3524 |
-
.input-group-addon input[type="checkbox"] {
|
| 3525 |
-
margin-top: 0;
|
| 3526 |
-
}
|
| 3527 |
-
.input-group .form-control:first-child,
|
| 3528 |
-
.input-group-addon:first-child,
|
| 3529 |
-
.input-group-btn:first-child > .btn,
|
| 3530 |
-
.input-group-btn:first-child > .btn-group > .btn,
|
| 3531 |
-
.input-group-btn:first-child > .dropdown-toggle,
|
| 3532 |
-
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
| 3533 |
-
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
|
| 3534 |
-
border-top-right-radius: 0;
|
| 3535 |
-
border-bottom-right-radius: 0;
|
| 3536 |
-
}
|
| 3537 |
-
.input-group-addon:first-child {
|
| 3538 |
-
border-right: 0;
|
| 3539 |
-
}
|
| 3540 |
-
.input-group .form-control:last-child,
|
| 3541 |
-
.input-group-addon:last-child,
|
| 3542 |
-
.input-group-btn:last-child > .btn,
|
| 3543 |
-
.input-group-btn:last-child > .btn-group > .btn,
|
| 3544 |
-
.input-group-btn:last-child > .dropdown-toggle,
|
| 3545 |
-
.input-group-btn:first-child > .btn:not(:first-child),
|
| 3546 |
-
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
|
| 3547 |
-
border-top-left-radius: 0;
|
| 3548 |
-
border-bottom-left-radius: 0;
|
| 3549 |
-
}
|
| 3550 |
-
.input-group-addon:last-child {
|
| 3551 |
-
border-left: 0;
|
| 3552 |
-
}
|
| 3553 |
-
.input-group-btn {
|
| 3554 |
-
position: relative;
|
| 3555 |
-
font-size: 0;
|
| 3556 |
-
white-space: nowrap;
|
| 3557 |
-
}
|
| 3558 |
-
.input-group-btn > .btn {
|
| 3559 |
-
position: relative;
|
| 3560 |
-
}
|
| 3561 |
-
.input-group-btn > .btn + .btn {
|
| 3562 |
-
margin-left: -1px;
|
| 3563 |
-
}
|
| 3564 |
-
.input-group-btn > .btn:hover,
|
| 3565 |
-
.input-group-btn > .btn:focus,
|
| 3566 |
-
.input-group-btn > .btn:active {
|
| 3567 |
-
z-index: 2;
|
| 3568 |
-
}
|
| 3569 |
-
.input-group-btn:first-child > .btn,
|
| 3570 |
-
.input-group-btn:first-child > .btn-group {
|
| 3571 |
-
margin-right: -1px;
|
| 3572 |
-
}
|
| 3573 |
-
.input-group-btn:last-child > .btn,
|
| 3574 |
-
.input-group-btn:last-child > .btn-group {
|
| 3575 |
-
margin-left: -1px;
|
| 3576 |
-
}
|
| 3577 |
-
.nav {
|
| 3578 |
-
padding-left: 0;
|
| 3579 |
-
margin-bottom: 0;
|
| 3580 |
-
list-style: none;
|
| 3581 |
-
}
|
| 3582 |
-
.nav > li {
|
| 3583 |
-
position: relative;
|
| 3584 |
-
display: block;
|
| 3585 |
-
}
|
| 3586 |
-
.nav > li > a {
|
| 3587 |
-
position: relative;
|
| 3588 |
-
display: block;
|
| 3589 |
-
padding: 10px 15px;
|
| 3590 |
-
}
|
| 3591 |
-
.nav > li > a:hover,
|
| 3592 |
-
.nav > li > a:focus {
|
| 3593 |
-
text-decoration: none;
|
| 3594 |
-
background-color: #eee;
|
| 3595 |
-
}
|
| 3596 |
-
.nav > li.disabled > a {
|
| 3597 |
-
color: #777;
|
| 3598 |
-
}
|
| 3599 |
-
.nav > li.disabled > a:hover,
|
| 3600 |
-
.nav > li.disabled > a:focus {
|
| 3601 |
-
color: #777;
|
| 3602 |
-
text-decoration: none;
|
| 3603 |
-
cursor: not-allowed;
|
| 3604 |
-
background-color: transparent;
|
| 3605 |
-
}
|
| 3606 |
-
.nav .open > a,
|
| 3607 |
-
.nav .open > a:hover,
|
| 3608 |
-
.nav .open > a:focus {
|
| 3609 |
-
background-color: #eee;
|
| 3610 |
-
border-color: #428bca;
|
| 3611 |
-
}
|
| 3612 |
-
.nav .nav-divider {
|
| 3613 |
-
height: 1px;
|
| 3614 |
-
margin: 9px 0;
|
| 3615 |
-
overflow: hidden;
|
| 3616 |
-
background-color: #e5e5e5;
|
| 3617 |
-
}
|
| 3618 |
-
.nav > li > a > img {
|
| 3619 |
-
max-width: none;
|
| 3620 |
-
}
|
| 3621 |
-
.nav-tabs {
|
| 3622 |
-
border-bottom: 1px solid #ddd;
|
| 3623 |
-
}
|
| 3624 |
-
.nav-tabs > li {
|
| 3625 |
-
float: left;
|
| 3626 |
-
margin-bottom: -1px;
|
| 3627 |
-
}
|
| 3628 |
-
.nav-tabs > li > a {
|
| 3629 |
-
margin-right: 2px;
|
| 3630 |
-
line-height: 1.42857143;
|
| 3631 |
-
border: 1px solid transparent;
|
| 3632 |
-
border-radius: 4px 4px 0 0;
|
| 3633 |
-
}
|
| 3634 |
-
.nav-tabs > li > a:hover {
|
| 3635 |
-
border-color: #eee #eee #ddd;
|
| 3636 |
-
}
|
| 3637 |
-
.nav-tabs > li.active > a,
|
| 3638 |
-
.nav-tabs > li.active > a:hover,
|
| 3639 |
-
.nav-tabs > li.active > a:focus {
|
| 3640 |
-
color: #555;
|
| 3641 |
-
cursor: default;
|
| 3642 |
-
background-color: #fff;
|
| 3643 |
-
border: 1px solid #ddd;
|
| 3644 |
-
border-bottom-color: transparent;
|
| 3645 |
-
}
|
| 3646 |
-
.nav-tabs.nav-justified {
|
| 3647 |
-
width: 100%;
|
| 3648 |
-
border-bottom: 0;
|
| 3649 |
-
}
|
| 3650 |
-
.nav-tabs.nav-justified > li {
|
| 3651 |
-
float: none;
|
| 3652 |
-
}
|
| 3653 |
-
.nav-tabs.nav-justified > li > a {
|
| 3654 |
-
margin-bottom: 5px;
|
| 3655 |
-
text-align: center;
|
| 3656 |
-
}
|
| 3657 |
-
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
|
| 3658 |
-
top: auto;
|
| 3659 |
-
left: auto;
|
| 3660 |
-
}
|
| 3661 |
-
@media (min-width: 768px) {
|
| 3662 |
-
.nav-tabs.nav-justified > li {
|
| 3663 |
-
display: table-cell;
|
| 3664 |
-
width: 1%;
|
| 3665 |
}
|
| 3666 |
-
.
|
| 3667 |
-
|
| 3668 |
}
|
| 3669 |
-
|
| 3670 |
-
.
|
| 3671 |
-
margin-right: 0;
|
| 3672 |
-
border-radius: 4px;
|
| 3673 |
-
}
|
| 3674 |
-
.nav-tabs.nav-justified > .active > a,
|
| 3675 |
-
.nav-tabs.nav-justified > .active > a:hover,
|
| 3676 |
-
.nav-tabs.nav-justified > .active > a:focus {
|
| 3677 |
-
border: 1px solid #ddd;
|
| 3678 |
-
}
|
| 3679 |
-
@media (min-width: 768px) {
|
| 3680 |
-
.nav-tabs.nav-justified > li > a {
|
| 3681 |
-
border-bottom: 1px solid #ddd;
|
| 3682 |
-
border-radius: 4px 4px 0 0;
|
| 3683 |
}
|
| 3684 |
-
.
|
| 3685 |
-
|
| 3686 |
-
.nav-tabs.nav-justified > .active > a:focus {
|
| 3687 |
-
border-bottom-color: #fff;
|
| 3688 |
}
|
| 3689 |
-
|
| 3690 |
-
.
|
| 3691 |
-
float: left;
|
| 3692 |
-
}
|
| 3693 |
-
.nav-pills > li > a {
|
| 3694 |
-
border-radius: 4px;
|
| 3695 |
-
}
|
| 3696 |
-
.nav-pills > li + li {
|
| 3697 |
-
margin-left: 2px;
|
| 3698 |
-
}
|
| 3699 |
-
.nav-pills > li.active > a,
|
| 3700 |
-
.nav-pills > li.active > a:hover,
|
| 3701 |
-
.nav-pills > li.active > a:focus {
|
| 3702 |
-
color: #fff;
|
| 3703 |
-
background-color: #428bca;
|
| 3704 |
-
}
|
| 3705 |
-
.nav-stacked > li {
|
| 3706 |
-
float: none;
|
| 3707 |
-
}
|
| 3708 |
-
.nav-stacked > li + li {
|
| 3709 |
-
margin-top: 2px;
|
| 3710 |
-
margin-left: 0;
|
| 3711 |
-
}
|
| 3712 |
-
.nav-justified {
|
| 3713 |
-
width: 100%;
|
| 3714 |
-
}
|
| 3715 |
-
.nav-justified > li {
|
| 3716 |
-
float: none;
|
| 3717 |
-
}
|
| 3718 |
-
.nav-justified > li > a {
|
| 3719 |
-
margin-bottom: 5px;
|
| 3720 |
-
text-align: center;
|
| 3721 |
-
}
|
| 3722 |
-
.nav-justified > .dropdown .dropdown-menu {
|
| 3723 |
-
top: auto;
|
| 3724 |
-
left: auto;
|
| 3725 |
-
}
|
| 3726 |
-
@media (min-width: 768px) {
|
| 3727 |
-
.nav-justified > li {
|
| 3728 |
-
display: table-cell;
|
| 3729 |
-
width: 1%;
|
| 3730 |
}
|
| 3731 |
-
.
|
| 3732 |
-
|
| 3733 |
}
|
| 3734 |
-
|
| 3735 |
-
|
| 3736 |
-
border-bottom: 0;
|
| 3737 |
-
}
|
| 3738 |
-
.nav-tabs-justified > li > a {
|
| 3739 |
-
margin-right: 0;
|
| 3740 |
-
border-radius: 4px;
|
| 3741 |
-
}
|
| 3742 |
-
.nav-tabs-justified > .active > a,
|
| 3743 |
-
.nav-tabs-justified > .active > a:hover,
|
| 3744 |
-
.nav-tabs-justified > .active > a:focus {
|
| 3745 |
-
border: 1px solid #ddd;
|
| 3746 |
-
}
|
| 3747 |
-
@media (min-width: 768px) {
|
| 3748 |
-
.nav-tabs-justified > li > a {
|
| 3749 |
-
border-bottom: 1px solid #ddd;
|
| 3750 |
-
border-radius: 4px 4px 0 0;
|
| 3751 |
}
|
| 3752 |
-
.
|
| 3753 |
-
|
| 3754 |
-
.nav-tabs-justified > .active > a:focus {
|
| 3755 |
-
border-bottom-color: #fff;
|
| 3756 |
}
|
| 3757 |
-
|
| 3758 |
-
|
| 3759 |
-
display: none;
|
| 3760 |
-
}
|
| 3761 |
-
.tab-content > .active {
|
| 3762 |
-
display: block;
|
| 3763 |
-
}
|
| 3764 |
-
.nav-tabs .dropdown-menu {
|
| 3765 |
-
margin-top: -1px;
|
| 3766 |
-
border-top-left-radius: 0;
|
| 3767 |
-
border-top-right-radius: 0;
|
| 3768 |
-
}
|
| 3769 |
-
.navbar {
|
| 3770 |
-
position: relative;
|
| 3771 |
-
min-height: 50px;
|
| 3772 |
-
margin-bottom: 20px;
|
| 3773 |
-
border: 1px solid transparent;
|
| 3774 |
-
}
|
| 3775 |
-
@media (min-width: 768px) {
|
| 3776 |
-
.navbar {
|
| 3777 |
-
border-radius: 4px;
|
| 3778 |
}
|
| 3779 |
-
|
| 3780 |
-
|
| 3781 |
-
.navbar-header {
|
| 3782 |
-
float: left;
|
| 3783 |
}
|
| 3784 |
-
|
| 3785 |
-
.
|
| 3786 |
-
padding-right: 15px;
|
| 3787 |
-
padding-left: 15px;
|
| 3788 |
-
overflow-x: visible;
|
| 3789 |
-
-webkit-overflow-scrolling: touch;
|
| 3790 |
-
border-top: 1px solid transparent;
|
| 3791 |
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
|
| 3792 |
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
|
| 3793 |
-
}
|
| 3794 |
-
.navbar-collapse.in {
|
| 3795 |
-
overflow-y: auto;
|
| 3796 |
-
}
|
| 3797 |
-
@media (min-width: 768px) {
|
| 3798 |
-
.navbar-collapse {
|
| 3799 |
-
width: auto;
|
| 3800 |
-
border-top: 0;
|
| 3801 |
-
-webkit-box-shadow: none;
|
| 3802 |
-
box-shadow: none;
|
| 3803 |
}
|
| 3804 |
-
.
|
| 3805 |
-
|
| 3806 |
-
|
| 3807 |
-
|
| 3808 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3809 |
}
|
| 3810 |
-
.
|
| 3811 |
-
|
| 3812 |
}
|
| 3813 |
-
.
|
| 3814 |
-
|
| 3815 |
-
.navbar-fixed-bottom .navbar-collapse {
|
| 3816 |
-
padding-right: 0;
|
| 3817 |
-
padding-left: 0;
|
| 3818 |
}
|
| 3819 |
-
|
| 3820 |
-
|
| 3821 |
-
.navbar-fixed-bottom .navbar-collapse {
|
| 3822 |
-
max-height: 340px;
|
| 3823 |
-
}
|
| 3824 |
-
@media (max-width: 480px) and (orientation: landscape) {
|
| 3825 |
-
.navbar-fixed-top .navbar-collapse,
|
| 3826 |
-
.navbar-fixed-bottom .navbar-collapse {
|
| 3827 |
-
max-height: 200px;
|
| 3828 |
}
|
| 3829 |
-
|
| 3830 |
-
|
| 3831 |
-
.container-fluid > .navbar-header,
|
| 3832 |
-
.container > .navbar-collapse,
|
| 3833 |
-
.container-fluid > .navbar-collapse {
|
| 3834 |
-
margin-right: -15px;
|
| 3835 |
-
margin-left: -15px;
|
| 3836 |
-
}
|
| 3837 |
-
@media (min-width: 768px) {
|
| 3838 |
-
.container > .navbar-header,
|
| 3839 |
-
.container-fluid > .navbar-header,
|
| 3840 |
-
.container > .navbar-collapse,
|
| 3841 |
-
.container-fluid > .navbar-collapse {
|
| 3842 |
-
margin-right: 0;
|
| 3843 |
-
margin-left: 0;
|
| 3844 |
}
|
| 3845 |
-
|
| 3846 |
-
|
| 3847 |
-
z-index: 1000;
|
| 3848 |
-
border-width: 0 0 1px;
|
| 3849 |
-
}
|
| 3850 |
-
@media (min-width: 768px) {
|
| 3851 |
-
.navbar-static-top {
|
| 3852 |
-
border-radius: 0;
|
| 3853 |
}
|
| 3854 |
-
|
| 3855 |
-
.
|
| 3856 |
-
.navbar-fixed-bottom {
|
| 3857 |
-
position: fixed;
|
| 3858 |
-
right: 0;
|
| 3859 |
-
left: 0;
|
| 3860 |
-
z-index: 1030;
|
| 3861 |
-
-webkit-transform: translate3d(0, 0, 0);
|
| 3862 |
-
-o-transform: translate3d(0, 0, 0);
|
| 3863 |
-
transform: translate3d(0, 0, 0);
|
| 3864 |
-
}
|
| 3865 |
-
@media (min-width: 768px) {
|
| 3866 |
-
.navbar-fixed-top,
|
| 3867 |
-
.navbar-fixed-bottom {
|
| 3868 |
-
border-radius: 0;
|
| 3869 |
}
|
| 3870 |
-
|
| 3871 |
-
|
| 3872 |
-
top: 0;
|
| 3873 |
-
border-width: 0 0 1px;
|
| 3874 |
-
}
|
| 3875 |
-
.navbar-fixed-bottom {
|
| 3876 |
-
bottom: 0;
|
| 3877 |
-
margin-bottom: 0;
|
| 3878 |
-
border-width: 1px 0 0;
|
| 3879 |
-
}
|
| 3880 |
-
.navbar-brand {
|
| 3881 |
-
float: left;
|
| 3882 |
-
height: 50px;
|
| 3883 |
-
padding: 15px 15px;
|
| 3884 |
-
font-size: 18px;
|
| 3885 |
-
line-height: 20px;
|
| 3886 |
-
}
|
| 3887 |
-
.navbar-brand:hover,
|
| 3888 |
-
.navbar-brand:focus {
|
| 3889 |
-
text-decoration: none;
|
| 3890 |
-
}
|
| 3891 |
-
@media (min-width: 768px) {
|
| 3892 |
-
.navbar > .container .navbar-brand,
|
| 3893 |
-
.navbar > .container-fluid .navbar-brand {
|
| 3894 |
-
margin-left: -15px;
|
| 3895 |
}
|
| 3896 |
}
|
| 3897 |
-
|
| 3898 |
-
|
| 3899 |
-
|
| 3900 |
-
padding: 9px 10px;
|
| 3901 |
-
margin-top: 8px;
|
| 3902 |
-
margin-right: 15px;
|
| 3903 |
-
margin-bottom: 8px;
|
| 3904 |
-
background-color: transparent;
|
| 3905 |
-
background-image: none;
|
| 3906 |
-
border: 1px solid transparent;
|
| 3907 |
-
border-radius: 4px;
|
| 3908 |
-
}
|
| 3909 |
-
.navbar-toggle:focus {
|
| 3910 |
-
outline: 0;
|
| 3911 |
-
}
|
| 3912 |
-
.navbar-toggle .icon-bar {
|
| 3913 |
-
display: block;
|
| 3914 |
-
width: 22px;
|
| 3915 |
-
height: 2px;
|
| 3916 |
-
border-radius: 1px;
|
| 3917 |
-
}
|
| 3918 |
-
.navbar-toggle .icon-bar + .icon-bar {
|
| 3919 |
-
margin-top: 4px;
|
| 3920 |
-
}
|
| 3921 |
-
@media (min-width: 768px) {
|
| 3922 |
-
.navbar-toggle {
|
| 3923 |
-
display: none;
|
| 3924 |
}
|
| 3925 |
-
|
| 3926 |
-
|
| 3927 |
-
margin: 7.5px -15px;
|
| 3928 |
-
}
|
| 3929 |
-
.navbar-nav > li > a {
|
| 3930 |
-
padding-top: 10px;
|
| 3931 |
-
padding-bottom: 10px;
|
| 3932 |
-
line-height: 20px;
|
| 3933 |
-
}
|
| 3934 |
-
@media (max-width: 767px) {
|
| 3935 |
-
.navbar-nav .open .dropdown-menu {
|
| 3936 |
-
position: static;
|
| 3937 |
-
float: none;
|
| 3938 |
-
width: auto;
|
| 3939 |
-
margin-top: 0;
|
| 3940 |
-
background-color: transparent;
|
| 3941 |
-
border: 0;
|
| 3942 |
-
-webkit-box-shadow: none;
|
| 3943 |
-
box-shadow: none;
|
| 3944 |
}
|
| 3945 |
-
.
|
| 3946 |
-
|
| 3947 |
-
padding: 5px 15px 5px 25px;
|
| 3948 |
}
|
| 3949 |
-
.
|
| 3950 |
-
|
| 3951 |
}
|
| 3952 |
-
.
|
| 3953 |
-
|
| 3954 |
-
background-image: none;
|
| 3955 |
}
|
| 3956 |
-
|
| 3957 |
-
|
| 3958 |
-
.navbar-nav {
|
| 3959 |
-
float: left;
|
| 3960 |
-
margin: 0;
|
| 3961 |
}
|
| 3962 |
-
.
|
| 3963 |
-
|
| 3964 |
}
|
| 3965 |
-
.
|
| 3966 |
-
|
| 3967 |
-
padding-bottom: 15px;
|
| 3968 |
}
|
| 3969 |
-
.
|
| 3970 |
-
|
| 3971 |
}
|
| 3972 |
-
|
| 3973 |
-
|
| 3974 |
-
.navbar-left {
|
| 3975 |
-
float: left !important;
|
| 3976 |
}
|
| 3977 |
-
.
|
| 3978 |
-
|
| 3979 |
}
|
| 3980 |
-
|
| 3981 |
-
.
|
| 3982 |
-
padding: 10px 15px;
|
| 3983 |
-
margin-top: 8px;
|
| 3984 |
-
margin-right: -15px;
|
| 3985 |
-
margin-bottom: 8px;
|
| 3986 |
-
margin-left: -15px;
|
| 3987 |
-
border-top: 1px solid transparent;
|
| 3988 |
-
border-bottom: 1px solid transparent;
|
| 3989 |
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
|
| 3990 |
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
|
| 3991 |
-
}
|
| 3992 |
-
@media (min-width: 768px) {
|
| 3993 |
-
.navbar-form .form-group {
|
| 3994 |
-
display: inline-block;
|
| 3995 |
-
margin-bottom: 0;
|
| 3996 |
-
vertical-align: middle;
|
| 3997 |
-
}
|
| 3998 |
-
.navbar-form .form-control {
|
| 3999 |
-
display: inline-block;
|
| 4000 |
-
width: auto;
|
| 4001 |
-
vertical-align: middle;
|
| 4002 |
-
}
|
| 4003 |
-
.navbar-form .input-group {
|
| 4004 |
-
display: inline-table;
|
| 4005 |
-
vertical-align: middle;
|
| 4006 |
-
}
|
| 4007 |
-
.navbar-form .input-group .input-group-addon,
|
| 4008 |
-
.navbar-form .input-group .input-group-btn,
|
| 4009 |
-
.navbar-form .input-group .form-control {
|
| 4010 |
-
width: auto;
|
| 4011 |
-
}
|
| 4012 |
-
.navbar-form .input-group > .form-control {
|
| 4013 |
-
width: 100%;
|
| 4014 |
}
|
| 4015 |
-
.
|
| 4016 |
-
|
| 4017 |
-
vertical-align: middle;
|
| 4018 |
}
|
| 4019 |
-
.
|
| 4020 |
-
|
| 4021 |
-
display: inline-block;
|
| 4022 |
-
margin-top: 0;
|
| 4023 |
-
margin-bottom: 0;
|
| 4024 |
-
vertical-align: middle;
|
| 4025 |
}
|
| 4026 |
-
.
|
| 4027 |
-
|
| 4028 |
-
padding-left: 0;
|
| 4029 |
}
|
| 4030 |
-
.
|
| 4031 |
-
|
| 4032 |
-
position: relative;
|
| 4033 |
-
margin-left: 0;
|
| 4034 |
}
|
| 4035 |
-
.
|
| 4036 |
-
|
| 4037 |
}
|
| 4038 |
-
|
| 4039 |
-
|
| 4040 |
-
.navbar-form .form-group {
|
| 4041 |
-
margin-bottom: 5px;
|
| 4042 |
}
|
| 4043 |
-
|
| 4044 |
-
|
| 4045 |
-
.navbar-form {
|
| 4046 |
-
width: auto;
|
| 4047 |
-
padding-top: 0;
|
| 4048 |
-
padding-bottom: 0;
|
| 4049 |
-
margin-right: 0;
|
| 4050 |
-
margin-left: 0;
|
| 4051 |
-
border: 0;
|
| 4052 |
-
-webkit-box-shadow: none;
|
| 4053 |
-
box-shadow: none;
|
| 4054 |
}
|
| 4055 |
-
.
|
| 4056 |
-
|
| 4057 |
}
|
| 4058 |
-
|
| 4059 |
-
|
| 4060 |
-
margin-top: 0;
|
| 4061 |
-
border-top-left-radius: 0;
|
| 4062 |
-
border-top-right-radius: 0;
|
| 4063 |
-
}
|
| 4064 |
-
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
|
| 4065 |
-
border-bottom-right-radius: 0;
|
| 4066 |
-
border-bottom-left-radius: 0;
|
| 4067 |
-
}
|
| 4068 |
-
.navbar-btn {
|
| 4069 |
-
margin-top: 8px;
|
| 4070 |
-
margin-bottom: 8px;
|
| 4071 |
-
}
|
| 4072 |
-
.navbar-btn.btn-sm {
|
| 4073 |
-
margin-top: 10px;
|
| 4074 |
-
margin-bottom: 10px;
|
| 4075 |
-
}
|
| 4076 |
-
.navbar-btn.btn-xs {
|
| 4077 |
-
margin-top: 14px;
|
| 4078 |
-
margin-bottom: 14px;
|
| 4079 |
-
}
|
| 4080 |
-
.navbar-text {
|
| 4081 |
-
margin-top: 15px;
|
| 4082 |
-
margin-bottom: 15px;
|
| 4083 |
-
}
|
| 4084 |
-
@media (min-width: 768px) {
|
| 4085 |
-
.navbar-text {
|
| 4086 |
-
float: left;
|
| 4087 |
-
margin-right: 15px;
|
| 4088 |
-
margin-left: 15px;
|
| 4089 |
}
|
| 4090 |
-
.
|
| 4091 |
-
|
| 4092 |
}
|
| 4093 |
-
|
| 4094 |
-
|
| 4095 |
-
background-color: #f8f8f8;
|
| 4096 |
-
border-color: #e7e7e7;
|
| 4097 |
-
}
|
| 4098 |
-
.navbar-default .navbar-brand {
|
| 4099 |
-
color: #777;
|
| 4100 |
-
}
|
| 4101 |
-
.navbar-default .navbar-brand:hover,
|
| 4102 |
-
.navbar-default .navbar-brand:focus {
|
| 4103 |
-
color: #5e5e5e;
|
| 4104 |
-
background-color: transparent;
|
| 4105 |
-
}
|
| 4106 |
-
.navbar-default .navbar-text {
|
| 4107 |
-
color: #777;
|
| 4108 |
-
}
|
| 4109 |
-
.navbar-default .navbar-nav > li > a {
|
| 4110 |
-
color: #777;
|
| 4111 |
-
}
|
| 4112 |
-
.navbar-default .navbar-nav > li > a:hover,
|
| 4113 |
-
.navbar-default .navbar-nav > li > a:focus {
|
| 4114 |
-
color: #333;
|
| 4115 |
-
background-color: transparent;
|
| 4116 |
-
}
|
| 4117 |
-
.navbar-default .navbar-nav > .active > a,
|
| 4118 |
-
.navbar-default .navbar-nav > .active > a:hover,
|
| 4119 |
-
.navbar-default .navbar-nav > .active > a:focus {
|
| 4120 |
-
color: #555;
|
| 4121 |
-
background-color: #e7e7e7;
|
| 4122 |
-
}
|
| 4123 |
-
.navbar-default .navbar-nav > .disabled > a,
|
| 4124 |
-
.navbar-default .navbar-nav > .disabled > a:hover,
|
| 4125 |
-
.navbar-default .navbar-nav > .disabled > a:focus {
|
| 4126 |
-
color: #ccc;
|
| 4127 |
-
background-color: transparent;
|
| 4128 |
-
}
|
| 4129 |
-
.navbar-default .navbar-toggle {
|
| 4130 |
-
border-color: #ddd;
|
| 4131 |
-
}
|
| 4132 |
-
.navbar-default .navbar-toggle:hover,
|
| 4133 |
-
.navbar-default .navbar-toggle:focus {
|
| 4134 |
-
background-color: #ddd;
|
| 4135 |
-
}
|
| 4136 |
-
.navbar-default .navbar-toggle .icon-bar {
|
| 4137 |
-
background-color: #888;
|
| 4138 |
-
}
|
| 4139 |
-
.navbar-default .navbar-collapse,
|
| 4140 |
-
.navbar-default .navbar-form {
|
| 4141 |
-
border-color: #e7e7e7;
|
| 4142 |
-
}
|
| 4143 |
-
.navbar-default .navbar-nav > .open > a,
|
| 4144 |
-
.navbar-default .navbar-nav > .open > a:hover,
|
| 4145 |
-
.navbar-default .navbar-nav > .open > a:focus {
|
| 4146 |
-
color: #555;
|
| 4147 |
-
background-color: #e7e7e7;
|
| 4148 |
-
}
|
| 4149 |
-
@media (max-width: 767px) {
|
| 4150 |
-
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
| 4151 |
-
color: #777;
|
| 4152 |
}
|
| 4153 |
-
.
|
| 4154 |
-
|
| 4155 |
-
color: #333;
|
| 4156 |
-
background-color: transparent;
|
| 4157 |
}
|
| 4158 |
-
.
|
| 4159 |
-
|
| 4160 |
-
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
|
| 4161 |
-
color: #555;
|
| 4162 |
-
background-color: #e7e7e7;
|
| 4163 |
}
|
| 4164 |
-
.
|
| 4165 |
-
|
| 4166 |
-
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
| 4167 |
-
color: #ccc;
|
| 4168 |
-
background-color: transparent;
|
| 4169 |
}
|
| 4170 |
-
|
| 4171 |
-
|
| 4172 |
-
color: #777;
|
| 4173 |
-
}
|
| 4174 |
-
.navbar-default .navbar-link:hover {
|
| 4175 |
-
color: #333;
|
| 4176 |
-
}
|
| 4177 |
-
.navbar-default .btn-link {
|
| 4178 |
-
color: #777;
|
| 4179 |
-
}
|
| 4180 |
-
.navbar-default .btn-link:hover,
|
| 4181 |
-
.navbar-default .btn-link:focus {
|
| 4182 |
-
color: #333;
|
| 4183 |
-
}
|
| 4184 |
-
.navbar-default .btn-link[disabled]:hover,
|
| 4185 |
-
fieldset[disabled] .navbar-default .btn-link:hover,
|
| 4186 |
-
.navbar-default .btn-link[disabled]:focus,
|
| 4187 |
-
fieldset[disabled] .navbar-default .btn-link:focus {
|
| 4188 |
-
color: #ccc;
|
| 4189 |
-
}
|
| 4190 |
-
.navbar-inverse {
|
| 4191 |
-
background-color: #222;
|
| 4192 |
-
border-color: #080808;
|
| 4193 |
-
}
|
| 4194 |
-
.navbar-inverse .navbar-brand {
|
| 4195 |
-
color: #777;
|
| 4196 |
-
}
|
| 4197 |
-
.navbar-inverse .navbar-brand:hover,
|
| 4198 |
-
.navbar-inverse .navbar-brand:focus {
|
| 4199 |
-
color: #fff;
|
| 4200 |
-
background-color: transparent;
|
| 4201 |
-
}
|
| 4202 |
-
.navbar-inverse .navbar-text {
|
| 4203 |
-
color: #777;
|
| 4204 |
-
}
|
| 4205 |
-
.navbar-inverse .navbar-nav > li > a {
|
| 4206 |
-
color: #777;
|
| 4207 |
-
}
|
| 4208 |
-
.navbar-inverse .navbar-nav > li > a:hover,
|
| 4209 |
-
.navbar-inverse .navbar-nav > li > a:focus {
|
| 4210 |
-
color: #fff;
|
| 4211 |
-
background-color: transparent;
|
| 4212 |
-
}
|
| 4213 |
-
.navbar-inverse .navbar-nav > .active > a,
|
| 4214 |
-
.navbar-inverse .navbar-nav > .active > a:hover,
|
| 4215 |
-
.navbar-inverse .navbar-nav > .active > a:focus {
|
| 4216 |
-
color: #fff;
|
| 4217 |
-
background-color: #080808;
|
| 4218 |
-
}
|
| 4219 |
-
.navbar-inverse .navbar-nav > .disabled > a,
|
| 4220 |
-
.navbar-inverse .navbar-nav > .disabled > a:hover,
|
| 4221 |
-
.navbar-inverse .navbar-nav > .disabled > a:focus {
|
| 4222 |
-
color: #444;
|
| 4223 |
-
background-color: transparent;
|
| 4224 |
-
}
|
| 4225 |
-
.navbar-inverse .navbar-toggle {
|
| 4226 |
-
border-color: #333;
|
| 4227 |
-
}
|
| 4228 |
-
.navbar-inverse .navbar-toggle:hover,
|
| 4229 |
-
.navbar-inverse .navbar-toggle:focus {
|
| 4230 |
-
background-color: #333;
|
| 4231 |
-
}
|
| 4232 |
-
.navbar-inverse .navbar-toggle .icon-bar {
|
| 4233 |
-
background-color: #fff;
|
| 4234 |
-
}
|
| 4235 |
-
.navbar-inverse .navbar-collapse,
|
| 4236 |
-
.navbar-inverse .navbar-form {
|
| 4237 |
-
border-color: #101010;
|
| 4238 |
-
}
|
| 4239 |
-
.navbar-inverse .navbar-nav > .open > a,
|
| 4240 |
-
.navbar-inverse .navbar-nav > .open > a:hover,
|
| 4241 |
-
.navbar-inverse .navbar-nav > .open > a:focus {
|
| 4242 |
-
color: #fff;
|
| 4243 |
-
background-color: #080808;
|
| 4244 |
-
}
|
| 4245 |
-
@media (max-width: 767px) {
|
| 4246 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
|
| 4247 |
-
border-color: #080808;
|
| 4248 |
}
|
| 4249 |
-
.
|
| 4250 |
-
|
| 4251 |
}
|
| 4252 |
-
.
|
| 4253 |
-
|
| 4254 |
}
|
| 4255 |
-
.
|
| 4256 |
-
|
| 4257 |
-
color: #fff;
|
| 4258 |
-
background-color: transparent;
|
| 4259 |
}
|
| 4260 |
-
.
|
| 4261 |
-
|
| 4262 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
|
| 4263 |
-
color: #fff;
|
| 4264 |
-
background-color: #080808;
|
| 4265 |
}
|
| 4266 |
-
.
|
| 4267 |
-
|
| 4268 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
| 4269 |
-
color: #444;
|
| 4270 |
-
background-color: transparent;
|
| 4271 |
}
|
| 4272 |
-
|
| 4273 |
-
|
| 4274 |
-
color: #777;
|
| 4275 |
-
}
|
| 4276 |
-
.navbar-inverse .navbar-link:hover {
|
| 4277 |
-
color: #fff;
|
| 4278 |
-
}
|
| 4279 |
-
.navbar-inverse .btn-link {
|
| 4280 |
-
color: #777;
|
| 4281 |
-
}
|
| 4282 |
-
.navbar-inverse .btn-link:hover,
|
| 4283 |
-
.navbar-inverse .btn-link:focus {
|
| 4284 |
-
color: #fff;
|
| 4285 |
-
}
|
| 4286 |
-
.navbar-inverse .btn-link[disabled]:hover,
|
| 4287 |
-
fieldset[disabled] .navbar-inverse .btn-link:hover,
|
| 4288 |
-
.navbar-inverse .btn-link[disabled]:focus,
|
| 4289 |
-
fieldset[disabled] .navbar-inverse .btn-link:focus {
|
| 4290 |
-
color: #444;
|
| 4291 |
-
}
|
| 4292 |
-
.breadcrumb {
|
| 4293 |
-
padding: 8px 15px;
|
| 4294 |
-
margin-bottom: 20px;
|
| 4295 |
-
list-style: none;
|
| 4296 |
-
background-color: #f5f5f5;
|
| 4297 |
-
border-radius: 4px;
|
| 4298 |
-
}
|
| 4299 |
-
.breadcrumb > li {
|
| 4300 |
-
display: inline-block;
|
| 4301 |
-
}
|
| 4302 |
-
.breadcrumb > li + li:before {
|
| 4303 |
-
padding: 0 5px;
|
| 4304 |
-
color: #ccc;
|
| 4305 |
-
content: "/\00a0";
|
| 4306 |
-
}
|
| 4307 |
-
.breadcrumb > .active {
|
| 4308 |
-
color: #777;
|
| 4309 |
-
}
|
| 4310 |
-
.pagination {
|
| 4311 |
-
display: inline-block;
|
| 4312 |
-
padding-left: 0;
|
| 4313 |
-
margin: 20px 0;
|
| 4314 |
-
border-radius: 4px;
|
| 4315 |
-
}
|
| 4316 |
-
.pagination > li {
|
| 4317 |
-
display: inline;
|
| 4318 |
-
}
|
| 4319 |
-
.pagination > li > a,
|
| 4320 |
-
.pagination > li > span {
|
| 4321 |
-
position: relative;
|
| 4322 |
-
float: left;
|
| 4323 |
-
padding: 6px 12px;
|
| 4324 |
-
margin-left: -1px;
|
| 4325 |
-
line-height: 1.42857143;
|
| 4326 |
-
color: #428bca;
|
| 4327 |
-
text-decoration: none;
|
| 4328 |
-
background-color: #fff;
|
| 4329 |
-
border: 1px solid #ddd;
|
| 4330 |
-
}
|
| 4331 |
-
.pagination > li:first-child > a,
|
| 4332 |
-
.pagination > li:first-child > span {
|
| 4333 |
-
margin-left: 0;
|
| 4334 |
-
border-top-left-radius: 4px;
|
| 4335 |
-
border-bottom-left-radius: 4px;
|
| 4336 |
-
}
|
| 4337 |
-
.pagination > li:last-child > a,
|
| 4338 |
-
.pagination > li:last-child > span {
|
| 4339 |
-
border-top-right-radius: 4px;
|
| 4340 |
-
border-bottom-right-radius: 4px;
|
| 4341 |
-
}
|
| 4342 |
-
.pagination > li > a:hover,
|
| 4343 |
-
.pagination > li > span:hover,
|
| 4344 |
-
.pagination > li > a:focus,
|
| 4345 |
-
.pagination > li > span:focus {
|
| 4346 |
-
color: #2a6496;
|
| 4347 |
-
background-color: #eee;
|
| 4348 |
-
border-color: #ddd;
|
| 4349 |
-
}
|
| 4350 |
-
.pagination > .active > a,
|
| 4351 |
-
.pagination > .active > span,
|
| 4352 |
-
.pagination > .active > a:hover,
|
| 4353 |
-
.pagination > .active > span:hover,
|
| 4354 |
-
.pagination > .active > a:focus,
|
| 4355 |
-
.pagination > .active > span:focus {
|
| 4356 |
-
z-index: 2;
|
| 4357 |
-
color: #fff;
|
| 4358 |
-
cursor: default;
|
| 4359 |
-
background-color: #428bca;
|
| 4360 |
-
border-color: #428bca;
|
| 4361 |
-
}
|
| 4362 |
-
.pagination > .disabled > span,
|
| 4363 |
-
.pagination > .disabled > span:hover,
|
| 4364 |
-
.pagination > .disabled > span:focus,
|
| 4365 |
-
.pagination > .disabled > a,
|
| 4366 |
-
.pagination > .disabled > a:hover,
|
| 4367 |
-
.pagination > .disabled > a:focus {
|
| 4368 |
-
color: #777;
|
| 4369 |
-
cursor: not-allowed;
|
| 4370 |
-
background-color: #fff;
|
| 4371 |
-
border-color: #ddd;
|
| 4372 |
-
}
|
| 4373 |
-
.pagination-lg > li > a,
|
| 4374 |
-
.pagination-lg > li > span {
|
| 4375 |
-
padding: 10px 16px;
|
| 4376 |
-
font-size: 18px;
|
| 4377 |
-
}
|
| 4378 |
-
.pagination-lg > li:first-child > a,
|
| 4379 |
-
.pagination-lg > li:first-child > span {
|
| 4380 |
-
border-top-left-radius: 6px;
|
| 4381 |
-
border-bottom-left-radius: 6px;
|
| 4382 |
-
}
|
| 4383 |
-
.pagination-lg > li:last-child > a,
|
| 4384 |
-
.pagination-lg > li:last-child > span {
|
| 4385 |
-
border-top-right-radius: 6px;
|
| 4386 |
-
border-bottom-right-radius: 6px;
|
| 4387 |
-
}
|
| 4388 |
-
.pagination-sm > li > a,
|
| 4389 |
-
.pagination-sm > li > span {
|
| 4390 |
-
padding: 5px 10px;
|
| 4391 |
-
font-size: 12px;
|
| 4392 |
-
}
|
| 4393 |
-
.pagination-sm > li:first-child > a,
|
| 4394 |
-
.pagination-sm > li:first-child > span {
|
| 4395 |
-
border-top-left-radius: 3px;
|
| 4396 |
-
border-bottom-left-radius: 3px;
|
| 4397 |
-
}
|
| 4398 |
-
.pagination-sm > li:last-child > a,
|
| 4399 |
-
.pagination-sm > li:last-child > span {
|
| 4400 |
-
border-top-right-radius: 3px;
|
| 4401 |
-
border-bottom-right-radius: 3px;
|
| 4402 |
-
}
|
| 4403 |
-
.pager {
|
| 4404 |
-
padding-left: 0;
|
| 4405 |
-
margin: 20px 0;
|
| 4406 |
-
text-align: center;
|
| 4407 |
-
list-style: none;
|
| 4408 |
-
}
|
| 4409 |
-
.pager li {
|
| 4410 |
-
display: inline;
|
| 4411 |
-
}
|
| 4412 |
-
.pager li > a,
|
| 4413 |
-
.pager li > span {
|
| 4414 |
-
display: inline-block;
|
| 4415 |
-
padding: 5px 14px;
|
| 4416 |
-
background-color: #fff;
|
| 4417 |
-
border: 1px solid #ddd;
|
| 4418 |
-
border-radius: 15px;
|
| 4419 |
-
}
|
| 4420 |
-
.pager li > a:hover,
|
| 4421 |
-
.pager li > a:focus {
|
| 4422 |
-
text-decoration: none;
|
| 4423 |
-
background-color: #eee;
|
| 4424 |
-
}
|
| 4425 |
-
.pager .next > a,
|
| 4426 |
-
.pager .next > span {
|
| 4427 |
-
float: right;
|
| 4428 |
-
}
|
| 4429 |
-
.pager .previous > a,
|
| 4430 |
-
.pager .previous > span {
|
| 4431 |
-
float: left;
|
| 4432 |
-
}
|
| 4433 |
-
.pager .disabled > a,
|
| 4434 |
-
.pager .disabled > a:hover,
|
| 4435 |
-
.pager .disabled > a:focus,
|
| 4436 |
-
.pager .disabled > span {
|
| 4437 |
-
color: #777;
|
| 4438 |
-
cursor: not-allowed;
|
| 4439 |
-
background-color: #fff;
|
| 4440 |
-
}
|
| 4441 |
-
.label {
|
| 4442 |
-
display: inline;
|
| 4443 |
-
padding: .2em .6em .3em;
|
| 4444 |
-
font-size: 75%;
|
| 4445 |
-
font-weight: bold;
|
| 4446 |
-
line-height: 1;
|
| 4447 |
-
color: #fff;
|
| 4448 |
-
text-align: center;
|
| 4449 |
-
white-space: nowrap;
|
| 4450 |
-
vertical-align: baseline;
|
| 4451 |
-
border-radius: .25em;
|
| 4452 |
-
}
|
| 4453 |
-
a.label:hover,
|
| 4454 |
-
a.label:focus {
|
| 4455 |
-
color: #fff;
|
| 4456 |
-
text-decoration: none;
|
| 4457 |
-
cursor: pointer;
|
| 4458 |
-
}
|
| 4459 |
-
.label:empty {
|
| 4460 |
-
display: none;
|
| 4461 |
-
}
|
| 4462 |
-
.btn .label {
|
| 4463 |
-
position: relative;
|
| 4464 |
-
top: -1px;
|
| 4465 |
-
}
|
| 4466 |
-
.label-default {
|
| 4467 |
-
background-color: #777;
|
| 4468 |
-
}
|
| 4469 |
-
.label-default[href]:hover,
|
| 4470 |
-
.label-default[href]:focus {
|
| 4471 |
-
background-color: #5e5e5e;
|
| 4472 |
-
}
|
| 4473 |
-
.label-primary {
|
| 4474 |
-
background-color: #428bca;
|
| 4475 |
-
}
|
| 4476 |
-
.label-primary[href]:hover,
|
| 4477 |
-
.label-primary[href]:focus {
|
| 4478 |
-
background-color: #3071a9;
|
| 4479 |
-
}
|
| 4480 |
-
.label-success {
|
| 4481 |
-
background-color: #5cb85c;
|
| 4482 |
-
}
|
| 4483 |
-
.label-success[href]:hover,
|
| 4484 |
-
.label-success[href]:focus {
|
| 4485 |
-
background-color: #449d44;
|
| 4486 |
-
}
|
| 4487 |
-
.label-info {
|
| 4488 |
-
background-color: #5bc0de;
|
| 4489 |
-
}
|
| 4490 |
-
.label-info[href]:hover,
|
| 4491 |
-
.label-info[href]:focus {
|
| 4492 |
-
background-color: #31b0d5;
|
| 4493 |
-
}
|
| 4494 |
-
.label-warning {
|
| 4495 |
-
background-color: #f0ad4e;
|
| 4496 |
-
}
|
| 4497 |
-
.label-warning[href]:hover,
|
| 4498 |
-
.label-warning[href]:focus {
|
| 4499 |
-
background-color: #ec971f;
|
| 4500 |
-
}
|
| 4501 |
-
.label-danger {
|
| 4502 |
-
background-color: #d9534f;
|
| 4503 |
-
}
|
| 4504 |
-
.label-danger[href]:hover,
|
| 4505 |
-
.label-danger[href]:focus {
|
| 4506 |
-
background-color: #c9302c;
|
| 4507 |
-
}
|
| 4508 |
-
.badge {
|
| 4509 |
-
display: inline-block;
|
| 4510 |
-
min-width: 10px;
|
| 4511 |
-
padding: 3px 7px;
|
| 4512 |
-
font-size: 12px;
|
| 4513 |
-
font-weight: bold;
|
| 4514 |
-
line-height: 1;
|
| 4515 |
-
color: #fff;
|
| 4516 |
-
text-align: center;
|
| 4517 |
-
white-space: nowrap;
|
| 4518 |
-
vertical-align: baseline;
|
| 4519 |
-
background-color: #777;
|
| 4520 |
-
border-radius: 10px;
|
| 4521 |
-
}
|
| 4522 |
-
.badge:empty {
|
| 4523 |
-
display: none;
|
| 4524 |
-
}
|
| 4525 |
-
.btn .badge {
|
| 4526 |
-
position: relative;
|
| 4527 |
-
top: -1px;
|
| 4528 |
-
}
|
| 4529 |
-
.btn-xs .badge {
|
| 4530 |
-
top: 0;
|
| 4531 |
-
padding: 1px 5px;
|
| 4532 |
-
}
|
| 4533 |
-
a.badge:hover,
|
| 4534 |
-
a.badge:focus {
|
| 4535 |
-
color: #fff;
|
| 4536 |
-
text-decoration: none;
|
| 4537 |
-
cursor: pointer;
|
| 4538 |
-
}
|
| 4539 |
-
a.list-group-item.active > .badge,
|
| 4540 |
-
.nav-pills > .active > a > .badge {
|
| 4541 |
-
color: #428bca;
|
| 4542 |
-
background-color: #fff;
|
| 4543 |
-
}
|
| 4544 |
-
.nav-pills > li > a > .badge {
|
| 4545 |
-
margin-left: 3px;
|
| 4546 |
-
}
|
| 4547 |
-
.jumbotron {
|
| 4548 |
-
padding: 30px;
|
| 4549 |
-
margin-bottom: 30px;
|
| 4550 |
-
color: inherit;
|
| 4551 |
-
background-color: #eee;
|
| 4552 |
-
}
|
| 4553 |
-
.jumbotron h1,
|
| 4554 |
-
.jumbotron .h1 {
|
| 4555 |
-
color: inherit;
|
| 4556 |
-
}
|
| 4557 |
-
.jumbotron p {
|
| 4558 |
-
margin-bottom: 15px;
|
| 4559 |
-
font-size: 21px;
|
| 4560 |
-
font-weight: 200;
|
| 4561 |
-
}
|
| 4562 |
-
.jumbotron > hr {
|
| 4563 |
-
border-top-color: #d5d5d5;
|
| 4564 |
-
}
|
| 4565 |
-
.container .jumbotron {
|
| 4566 |
-
border-radius: 6px;
|
| 4567 |
-
}
|
| 4568 |
-
.jumbotron .container {
|
| 4569 |
-
max-width: 100%;
|
| 4570 |
-
}
|
| 4571 |
-
@media screen and (min-width: 768px) {
|
| 4572 |
-
.jumbotron {
|
| 4573 |
-
padding-top: 48px;
|
| 4574 |
-
padding-bottom: 48px;
|
| 4575 |
}
|
| 4576 |
-
.
|
| 4577 |
-
|
| 4578 |
-
padding-left: 60px;
|
| 4579 |
}
|
| 4580 |
-
.
|
| 4581 |
-
|
| 4582 |
-
font-size: 63px;
|
| 4583 |
}
|
| 4584 |
-
|
| 4585 |
-
|
| 4586 |
-
display: block;
|
| 4587 |
-
padding: 4px;
|
| 4588 |
-
margin-bottom: 20px;
|
| 4589 |
-
line-height: 1.42857143;
|
| 4590 |
-
background-color: #fff;
|
| 4591 |
-
border: 1px solid #ddd;
|
| 4592 |
-
border-radius: 4px;
|
| 4593 |
-
-webkit-transition: all .2s ease-in-out;
|
| 4594 |
-
-o-transition: all .2s ease-in-out;
|
| 4595 |
-
transition: all .2s ease-in-out;
|
| 4596 |
-
}
|
| 4597 |
-
.thumbnail > img,
|
| 4598 |
-
.thumbnail a > img {
|
| 4599 |
-
margin-right: auto;
|
| 4600 |
-
margin-left: auto;
|
| 4601 |
-
}
|
| 4602 |
-
a.thumbnail:hover,
|
| 4603 |
-
a.thumbnail:focus,
|
| 4604 |
-
a.thumbnail.active {
|
| 4605 |
-
border-color: #428bca;
|
| 4606 |
-
}
|
| 4607 |
-
.thumbnail .caption {
|
| 4608 |
-
padding: 9px;
|
| 4609 |
-
color: #333;
|
| 4610 |
-
}
|
| 4611 |
-
.alert {
|
| 4612 |
-
padding: 15px;
|
| 4613 |
-
margin-bottom: 20px;
|
| 4614 |
-
border: 1px solid transparent;
|
| 4615 |
-
border-radius: 4px;
|
| 4616 |
-
}
|
| 4617 |
-
.alert h4 {
|
| 4618 |
-
margin-top: 0;
|
| 4619 |
-
color: inherit;
|
| 4620 |
-
}
|
| 4621 |
-
.alert .alert-link {
|
| 4622 |
-
font-weight: bold;
|
| 4623 |
-
}
|
| 4624 |
-
.alert > p,
|
| 4625 |
-
.alert > ul {
|
| 4626 |
-
margin-bottom: 0;
|
| 4627 |
-
}
|
| 4628 |
-
.alert > p + p {
|
| 4629 |
-
margin-top: 5px;
|
| 4630 |
-
}
|
| 4631 |
-
.alert-dismissable,
|
| 4632 |
-
.alert-dismissible {
|
| 4633 |
-
padding-right: 35px;
|
| 4634 |
-
}
|
| 4635 |
-
.alert-dismissable .close,
|
| 4636 |
-
.alert-dismissible .close {
|
| 4637 |
-
position: relative;
|
| 4638 |
-
top: -2px;
|
| 4639 |
-
right: -21px;
|
| 4640 |
-
color: inherit;
|
| 4641 |
-
}
|
| 4642 |
-
.alert-success {
|
| 4643 |
-
color: #3c763d;
|
| 4644 |
-
background-color: #dff0d8;
|
| 4645 |
-
border-color: #d6e9c6;
|
| 4646 |
-
}
|
| 4647 |
-
.alert-success hr {
|
| 4648 |
-
border-top-color: #c9e2b3;
|
| 4649 |
-
}
|
| 4650 |
-
.alert-success .alert-link {
|
| 4651 |
-
color: #2b542c;
|
| 4652 |
-
}
|
| 4653 |
-
.alert-info {
|
| 4654 |
-
color: #31708f;
|
| 4655 |
-
background-color: #d9edf7;
|
| 4656 |
-
border-color: #bce8f1;
|
| 4657 |
-
}
|
| 4658 |
-
.alert-info hr {
|
| 4659 |
-
border-top-color: #a6e1ec;
|
| 4660 |
-
}
|
| 4661 |
-
.alert-info .alert-link {
|
| 4662 |
-
color: #245269;
|
| 4663 |
-
}
|
| 4664 |
-
.alert-warning {
|
| 4665 |
-
color: #8a6d3b;
|
| 4666 |
-
background-color: #fcf8e3;
|
| 4667 |
-
border-color: #faebcc;
|
| 4668 |
-
}
|
| 4669 |
-
.alert-warning hr {
|
| 4670 |
-
border-top-color: #f7e1b5;
|
| 4671 |
-
}
|
| 4672 |
-
.alert-warning .alert-link {
|
| 4673 |
-
color: #66512c;
|
| 4674 |
-
}
|
| 4675 |
-
.alert-danger {
|
| 4676 |
-
color: #a94442;
|
| 4677 |
-
background-color: #f2dede;
|
| 4678 |
-
border-color: #ebccd1;
|
| 4679 |
-
}
|
| 4680 |
-
.alert-danger hr {
|
| 4681 |
-
border-top-color: #e4b9c0;
|
| 4682 |
-
}
|
| 4683 |
-
.alert-danger .alert-link {
|
| 4684 |
-
color: #843534;
|
| 4685 |
-
}
|
| 4686 |
-
@-webkit-keyframes progress-bar-stripes {
|
| 4687 |
-
from {
|
| 4688 |
-
background-position: 40px 0;
|
| 4689 |
}
|
| 4690 |
-
|
| 4691 |
-
|
| 4692 |
}
|
| 4693 |
-
|
| 4694 |
-
|
| 4695 |
-
from {
|
| 4696 |
-
background-position: 40px 0;
|
| 4697 |
}
|
| 4698 |
-
|
| 4699 |
-
|
| 4700 |
}
|
| 4701 |
-
|
| 4702 |
-
|
| 4703 |
-
from {
|
| 4704 |
-
background-position: 40px 0;
|
| 4705 |
}
|
| 4706 |
-
|
| 4707 |
-
|
| 4708 |
}
|
| 4709 |
-
|
| 4710 |
-
.
|
| 4711 |
-
|
| 4712 |
-
|
| 4713 |
-
|
| 4714 |
-
|
| 4715 |
-
|
| 4716 |
-
|
| 4717 |
-
|
| 4718 |
-
|
| 4719 |
-
|
| 4720 |
-
|
| 4721 |
-
|
| 4722 |
-
|
| 4723 |
-
font-size: 12px;
|
| 4724 |
-
line-height: 20px;
|
| 4725 |
-
color: #fff;
|
| 4726 |
-
text-align: center;
|
| 4727 |
-
background-color: #428bca;
|
| 4728 |
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
|
| 4729 |
-
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
|
| 4730 |
-
-webkit-transition: width .6s ease;
|
| 4731 |
-
-o-transition: width .6s ease;
|
| 4732 |
-
transition: width .6s ease;
|
| 4733 |
-
}
|
| 4734 |
-
.progress-striped .progress-bar,
|
| 4735 |
-
.progress-bar-striped {
|
| 4736 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4737 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4738 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4739 |
-
-webkit-background-size: 40px 40px;
|
| 4740 |
-
background-size: 40px 40px;
|
| 4741 |
-
}
|
| 4742 |
-
.progress.active .progress-bar,
|
| 4743 |
-
.progress-bar.active {
|
| 4744 |
-
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
| 4745 |
-
-o-animation: progress-bar-stripes 2s linear infinite;
|
| 4746 |
-
animation: progress-bar-stripes 2s linear infinite;
|
| 4747 |
-
}
|
| 4748 |
-
.progress-bar[aria-valuenow="1"],
|
| 4749 |
-
.progress-bar[aria-valuenow="2"] {
|
| 4750 |
-
min-width: 30px;
|
| 4751 |
-
}
|
| 4752 |
-
.progress-bar[aria-valuenow="0"] {
|
| 4753 |
-
min-width: 30px;
|
| 4754 |
-
color: #777;
|
| 4755 |
-
background-color: transparent;
|
| 4756 |
-
background-image: none;
|
| 4757 |
-
-webkit-box-shadow: none;
|
| 4758 |
-
box-shadow: none;
|
| 4759 |
-
}
|
| 4760 |
-
.progress-bar-success {
|
| 4761 |
-
background-color: #5cb85c;
|
| 4762 |
-
}
|
| 4763 |
-
.progress-striped .progress-bar-success {
|
| 4764 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4765 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4766 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4767 |
-
}
|
| 4768 |
-
.progress-bar-info {
|
| 4769 |
-
background-color: #5bc0de;
|
| 4770 |
-
}
|
| 4771 |
-
.progress-striped .progress-bar-info {
|
| 4772 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4773 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4774 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4775 |
-
}
|
| 4776 |
-
.progress-bar-warning {
|
| 4777 |
-
background-color: #f0ad4e;
|
| 4778 |
-
}
|
| 4779 |
-
.progress-striped .progress-bar-warning {
|
| 4780 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4781 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4782 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4783 |
-
}
|
| 4784 |
-
.progress-bar-danger {
|
| 4785 |
-
background-color: #d9534f;
|
| 4786 |
-
}
|
| 4787 |
-
.progress-striped .progress-bar-danger {
|
| 4788 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4789 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4790 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
| 4791 |
-
}
|
| 4792 |
-
.media,
|
| 4793 |
-
.media-body {
|
| 4794 |
-
overflow: hidden;
|
| 4795 |
-
zoom: 1;
|
| 4796 |
-
}
|
| 4797 |
-
.media,
|
| 4798 |
-
.media .media {
|
| 4799 |
-
margin-top: 15px;
|
| 4800 |
-
}
|
| 4801 |
-
.media:first-child {
|
| 4802 |
-
margin-top: 0;
|
| 4803 |
-
}
|
| 4804 |
-
.media-object {
|
| 4805 |
-
display: block;
|
| 4806 |
-
}
|
| 4807 |
-
.media-heading {
|
| 4808 |
-
margin: 0 0 5px;
|
| 4809 |
-
}
|
| 4810 |
-
.media > .pull-left {
|
| 4811 |
-
margin-right: 10px;
|
| 4812 |
-
}
|
| 4813 |
-
.media > .pull-right {
|
| 4814 |
-
margin-left: 10px;
|
| 4815 |
-
}
|
| 4816 |
-
.media-list {
|
| 4817 |
-
padding-left: 0;
|
| 4818 |
-
list-style: none;
|
| 4819 |
-
}
|
| 4820 |
-
.list-group {
|
| 4821 |
-
padding-left: 0;
|
| 4822 |
-
margin-bottom: 20px;
|
| 4823 |
-
}
|
| 4824 |
-
.list-group-item {
|
| 4825 |
-
position: relative;
|
| 4826 |
-
display: block;
|
| 4827 |
-
padding: 10px 15px;
|
| 4828 |
-
margin-bottom: -1px;
|
| 4829 |
-
background-color: #fff;
|
| 4830 |
-
border: 1px solid #ddd;
|
| 4831 |
-
}
|
| 4832 |
-
.list-group-item:first-child {
|
| 4833 |
-
border-top-left-radius: 4px;
|
| 4834 |
-
border-top-right-radius: 4px;
|
| 4835 |
-
}
|
| 4836 |
-
.list-group-item:last-child {
|
| 4837 |
-
margin-bottom: 0;
|
| 4838 |
-
border-bottom-right-radius: 4px;
|
| 4839 |
-
border-bottom-left-radius: 4px;
|
| 4840 |
-
}
|
| 4841 |
-
.list-group-item > .badge {
|
| 4842 |
-
float: right;
|
| 4843 |
-
}
|
| 4844 |
-
.list-group-item > .badge + .badge {
|
| 4845 |
-
margin-right: 5px;
|
| 4846 |
-
}
|
| 4847 |
-
a.list-group-item {
|
| 4848 |
-
color: #555;
|
| 4849 |
-
}
|
| 4850 |
-
a.list-group-item .list-group-item-heading {
|
| 4851 |
-
color: #333;
|
| 4852 |
-
}
|
| 4853 |
-
a.list-group-item:hover,
|
| 4854 |
-
a.list-group-item:focus {
|
| 4855 |
-
color: #555;
|
| 4856 |
-
text-decoration: none;
|
| 4857 |
-
background-color: #f5f5f5;
|
| 4858 |
-
}
|
| 4859 |
-
.list-group-item.disabled,
|
| 4860 |
-
.list-group-item.disabled:hover,
|
| 4861 |
-
.list-group-item.disabled:focus {
|
| 4862 |
-
color: #777;
|
| 4863 |
-
background-color: #eee;
|
| 4864 |
-
}
|
| 4865 |
-
.list-group-item.disabled .list-group-item-heading,
|
| 4866 |
-
.list-group-item.disabled:hover .list-group-item-heading,
|
| 4867 |
-
.list-group-item.disabled:focus .list-group-item-heading {
|
| 4868 |
-
color: inherit;
|
| 4869 |
-
}
|
| 4870 |
-
.list-group-item.disabled .list-group-item-text,
|
| 4871 |
-
.list-group-item.disabled:hover .list-group-item-text,
|
| 4872 |
-
.list-group-item.disabled:focus .list-group-item-text {
|
| 4873 |
-
color: #777;
|
| 4874 |
-
}
|
| 4875 |
-
.list-group-item.active,
|
| 4876 |
-
.list-group-item.active:hover,
|
| 4877 |
-
.list-group-item.active:focus {
|
| 4878 |
-
z-index: 2;
|
| 4879 |
-
color: #fff;
|
| 4880 |
-
background-color: #428bca;
|
| 4881 |
-
border-color: #428bca;
|
| 4882 |
-
}
|
| 4883 |
-
.list-group-item.active .list-group-item-heading,
|
| 4884 |
-
.list-group-item.active:hover .list-group-item-heading,
|
| 4885 |
-
.list-group-item.active:focus .list-group-item-heading,
|
| 4886 |
-
.list-group-item.active .list-group-item-heading > small,
|
| 4887 |
-
.list-group-item.active:hover .list-group-item-heading > small,
|
| 4888 |
-
.list-group-item.active:focus .list-group-item-heading > small,
|
| 4889 |
-
.list-group-item.active .list-group-item-heading > .small,
|
| 4890 |
-
.list-group-item.active:hover .list-group-item-heading > .small,
|
| 4891 |
-
.list-group-item.active:focus .list-group-item-heading > .small {
|
| 4892 |
-
color: inherit;
|
| 4893 |
-
}
|
| 4894 |
-
.list-group-item.active .list-group-item-text,
|
| 4895 |
-
.list-group-item.active:hover .list-group-item-text,
|
| 4896 |
-
.list-group-item.active:focus .list-group-item-text {
|
| 4897 |
-
color: #e1edf7;
|
| 4898 |
-
}
|
| 4899 |
-
.list-group-item-success {
|
| 4900 |
-
color: #3c763d;
|
| 4901 |
-
background-color: #dff0d8;
|
| 4902 |
-
}
|
| 4903 |
-
a.list-group-item-success {
|
| 4904 |
-
color: #3c763d;
|
| 4905 |
-
}
|
| 4906 |
-
a.list-group-item-success .list-group-item-heading {
|
| 4907 |
-
color: inherit;
|
| 4908 |
-
}
|
| 4909 |
-
a.list-group-item-success:hover,
|
| 4910 |
-
a.list-group-item-success:focus {
|
| 4911 |
-
color: #3c763d;
|
| 4912 |
-
background-color: #d0e9c6;
|
| 4913 |
-
}
|
| 4914 |
-
a.list-group-item-success.active,
|
| 4915 |
-
a.list-group-item-success.active:hover,
|
| 4916 |
-
a.list-group-item-success.active:focus {
|
| 4917 |
-
color: #fff;
|
| 4918 |
-
background-color: #3c763d;
|
| 4919 |
-
border-color: #3c763d;
|
| 4920 |
-
}
|
| 4921 |
-
.list-group-item-info {
|
| 4922 |
-
color: #31708f;
|
| 4923 |
-
background-color: #d9edf7;
|
| 4924 |
-
}
|
| 4925 |
-
a.list-group-item-info {
|
| 4926 |
-
color: #31708f;
|
| 4927 |
-
}
|
| 4928 |
-
a.list-group-item-info .list-group-item-heading {
|
| 4929 |
-
color: inherit;
|
| 4930 |
-
}
|
| 4931 |
-
a.list-group-item-info:hover,
|
| 4932 |
-
a.list-group-item-info:focus {
|
| 4933 |
-
color: #31708f;
|
| 4934 |
-
background-color: #c4e3f3;
|
| 4935 |
-
}
|
| 4936 |
-
a.list-group-item-info.active,
|
| 4937 |
-
a.list-group-item-info.active:hover,
|
| 4938 |
-
a.list-group-item-info.active:focus {
|
| 4939 |
-
color: #fff;
|
| 4940 |
-
background-color: #31708f;
|
| 4941 |
-
border-color: #31708f;
|
| 4942 |
-
}
|
| 4943 |
-
.list-group-item-warning {
|
| 4944 |
-
color: #8a6d3b;
|
| 4945 |
-
background-color: #fcf8e3;
|
| 4946 |
-
}
|
| 4947 |
-
a.list-group-item-warning {
|
| 4948 |
-
color: #8a6d3b;
|
| 4949 |
-
}
|
| 4950 |
-
a.list-group-item-warning .list-group-item-heading {
|
| 4951 |
-
color: inherit;
|
| 4952 |
-
}
|
| 4953 |
-
a.list-group-item-warning:hover,
|
| 4954 |
-
a.list-group-item-warning:focus {
|
| 4955 |
-
color: #8a6d3b;
|
| 4956 |
-
background-color: #faf2cc;
|
| 4957 |
-
}
|
| 4958 |
-
a.list-group-item-warning.active,
|
| 4959 |
-
a.list-group-item-warning.active:hover,
|
| 4960 |
-
a.list-group-item-warning.active:focus {
|
| 4961 |
-
color: #fff;
|
| 4962 |
-
background-color: #8a6d3b;
|
| 4963 |
-
border-color: #8a6d3b;
|
| 4964 |
-
}
|
| 4965 |
-
.list-group-item-danger {
|
| 4966 |
-
color: #a94442;
|
| 4967 |
-
background-color: #f2dede;
|
| 4968 |
-
}
|
| 4969 |
-
a.list-group-item-danger {
|
| 4970 |
-
color: #a94442;
|
| 4971 |
-
}
|
| 4972 |
-
a.list-group-item-danger .list-group-item-heading {
|
| 4973 |
-
color: inherit;
|
| 4974 |
-
}
|
| 4975 |
-
a.list-group-item-danger:hover,
|
| 4976 |
-
a.list-group-item-danger:focus {
|
| 4977 |
-
color: #a94442;
|
| 4978 |
-
background-color: #ebcccc;
|
| 4979 |
-
}
|
| 4980 |
-
a.list-group-item-danger.active,
|
| 4981 |
-
a.list-group-item-danger.active:hover,
|
| 4982 |
-
a.list-group-item-danger.active:focus {
|
| 4983 |
-
color: #fff;
|
| 4984 |
-
background-color: #a94442;
|
| 4985 |
-
border-color: #a94442;
|
| 4986 |
-
}
|
| 4987 |
-
.list-group-item-heading {
|
| 4988 |
-
margin-top: 0;
|
| 4989 |
-
margin-bottom: 5px;
|
| 4990 |
-
}
|
| 4991 |
-
.list-group-item-text {
|
| 4992 |
-
margin-bottom: 0;
|
| 4993 |
-
line-height: 1.3;
|
| 4994 |
-
}
|
| 4995 |
-
.panel {
|
| 4996 |
-
margin-bottom: 20px;
|
| 4997 |
-
background-color: #fff;
|
| 4998 |
-
border: 1px solid transparent;
|
| 4999 |
-
border-radius: 4px;
|
| 5000 |
-
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
|
| 5001 |
-
box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
|
| 5002 |
-
}
|
| 5003 |
-
.panel-body {
|
| 5004 |
-
padding: 15px;
|
| 5005 |
-
}
|
| 5006 |
-
.panel-heading {
|
| 5007 |
-
padding: 10px 15px;
|
| 5008 |
-
border-bottom: 1px solid transparent;
|
| 5009 |
-
border-top-left-radius: 3px;
|
| 5010 |
-
border-top-right-radius: 3px;
|
| 5011 |
-
}
|
| 5012 |
-
.panel-heading > .dropdown .dropdown-toggle {
|
| 5013 |
-
color: inherit;
|
| 5014 |
-
}
|
| 5015 |
-
.panel-title {
|
| 5016 |
-
margin-top: 0;
|
| 5017 |
-
margin-bottom: 0;
|
| 5018 |
-
font-size: 16px;
|
| 5019 |
-
color: inherit;
|
| 5020 |
-
}
|
| 5021 |
-
.panel-title > a {
|
| 5022 |
-
color: inherit;
|
| 5023 |
-
}
|
| 5024 |
-
.panel-footer {
|
| 5025 |
-
padding: 10px 15px;
|
| 5026 |
-
background-color: #f5f5f5;
|
| 5027 |
-
border-top: 1px solid #ddd;
|
| 5028 |
-
border-bottom-right-radius: 3px;
|
| 5029 |
-
border-bottom-left-radius: 3px;
|
| 5030 |
-
}
|
| 5031 |
-
.panel > .list-group {
|
| 5032 |
-
margin-bottom: 0;
|
| 5033 |
-
}
|
| 5034 |
-
.panel > .list-group .list-group-item {
|
| 5035 |
-
border-width: 1px 0;
|
| 5036 |
-
border-radius: 0;
|
| 5037 |
-
}
|
| 5038 |
-
.panel > .list-group:first-child .list-group-item:first-child {
|
| 5039 |
-
border-top: 0;
|
| 5040 |
-
border-top-left-radius: 3px;
|
| 5041 |
-
border-top-right-radius: 3px;
|
| 5042 |
-
}
|
| 5043 |
-
.panel > .list-group:last-child .list-group-item:last-child {
|
| 5044 |
-
border-bottom: 0;
|
| 5045 |
-
border-bottom-right-radius: 3px;
|
| 5046 |
-
border-bottom-left-radius: 3px;
|
| 5047 |
-
}
|
| 5048 |
-
.panel-heading + .list-group .list-group-item:first-child {
|
| 5049 |
-
border-top-width: 0;
|
| 5050 |
-
}
|
| 5051 |
-
.list-group + .panel-footer {
|
| 5052 |
-
border-top-width: 0;
|
| 5053 |
-
}
|
| 5054 |
-
.panel > .table,
|
| 5055 |
-
.panel > .table-responsive > .table,
|
| 5056 |
-
.panel > .panel-collapse > .table {
|
| 5057 |
-
margin-bottom: 0;
|
| 5058 |
-
}
|
| 5059 |
-
.panel > .table:first-child,
|
| 5060 |
-
.panel > .table-responsive:first-child > .table:first-child {
|
| 5061 |
-
border-top-left-radius: 3px;
|
| 5062 |
-
border-top-right-radius: 3px;
|
| 5063 |
-
}
|
| 5064 |
-
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
| 5065 |
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
| 5066 |
-
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
| 5067 |
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
| 5068 |
-
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
| 5069 |
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
| 5070 |
-
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
|
| 5071 |
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
|
| 5072 |
-
border-top-left-radius: 3px;
|
| 5073 |
-
}
|
| 5074 |
-
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
| 5075 |
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
| 5076 |
-
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
| 5077 |
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
| 5078 |
-
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
| 5079 |
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
| 5080 |
-
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
|
| 5081 |
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
|
| 5082 |
-
border-top-right-radius: 3px;
|
| 5083 |
-
}
|
| 5084 |
-
.panel > .table:last-child,
|
| 5085 |
-
.panel > .table-responsive:last-child > .table:last-child {
|
| 5086 |
-
border-bottom-right-radius: 3px;
|
| 5087 |
-
border-bottom-left-radius: 3px;
|
| 5088 |
-
}
|
| 5089 |
-
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
| 5090 |
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
| 5091 |
-
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
| 5092 |
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
| 5093 |
-
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
| 5094 |
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
| 5095 |
-
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
|
| 5096 |
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
|
| 5097 |
-
border-bottom-left-radius: 3px;
|
| 5098 |
-
}
|
| 5099 |
-
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
| 5100 |
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
| 5101 |
-
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
| 5102 |
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
| 5103 |
-
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
| 5104 |
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
| 5105 |
-
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
|
| 5106 |
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
|
| 5107 |
-
border-bottom-right-radius: 3px;
|
| 5108 |
-
}
|
| 5109 |
-
.panel > .panel-body + .table,
|
| 5110 |
-
.panel > .panel-body + .table-responsive {
|
| 5111 |
-
border-top: 1px solid #ddd;
|
| 5112 |
-
}
|
| 5113 |
-
.panel > .table > tbody:first-child > tr:first-child th,
|
| 5114 |
-
.panel > .table > tbody:first-child > tr:first-child td {
|
| 5115 |
-
border-top: 0;
|
| 5116 |
-
}
|
| 5117 |
-
.panel > .table-bordered,
|
| 5118 |
-
.panel > .table-responsive > .table-bordered {
|
| 5119 |
-
border: 0;
|
| 5120 |
-
}
|
| 5121 |
-
.panel > .table-bordered > thead > tr > th:first-child,
|
| 5122 |
-
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
|
| 5123 |
-
.panel > .table-bordered > tbody > tr > th:first-child,
|
| 5124 |
-
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
| 5125 |
-
.panel > .table-bordered > tfoot > tr > th:first-child,
|
| 5126 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
| 5127 |
-
.panel > .table-bordered > thead > tr > td:first-child,
|
| 5128 |
-
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
|
| 5129 |
-
.panel > .table-bordered > tbody > tr > td:first-child,
|
| 5130 |
-
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
| 5131 |
-
.panel > .table-bordered > tfoot > tr > td:first-child,
|
| 5132 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
| 5133 |
-
border-left: 0;
|
| 5134 |
-
}
|
| 5135 |
-
.panel > .table-bordered > thead > tr > th:last-child,
|
| 5136 |
-
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
|
| 5137 |
-
.panel > .table-bordered > tbody > tr > th:last-child,
|
| 5138 |
-
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
| 5139 |
-
.panel > .table-bordered > tfoot > tr > th:last-child,
|
| 5140 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
| 5141 |
-
.panel > .table-bordered > thead > tr > td:last-child,
|
| 5142 |
-
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
|
| 5143 |
-
.panel > .table-bordered > tbody > tr > td:last-child,
|
| 5144 |
-
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
| 5145 |
-
.panel > .table-bordered > tfoot > tr > td:last-child,
|
| 5146 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
| 5147 |
-
border-right: 0;
|
| 5148 |
-
}
|
| 5149 |
-
.panel > .table-bordered > thead > tr:first-child > td,
|
| 5150 |
-
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
|
| 5151 |
-
.panel > .table-bordered > tbody > tr:first-child > td,
|
| 5152 |
-
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
|
| 5153 |
-
.panel > .table-bordered > thead > tr:first-child > th,
|
| 5154 |
-
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
|
| 5155 |
-
.panel > .table-bordered > tbody > tr:first-child > th,
|
| 5156 |
-
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
|
| 5157 |
-
border-bottom: 0;
|
| 5158 |
-
}
|
| 5159 |
-
.panel > .table-bordered > tbody > tr:last-child > td,
|
| 5160 |
-
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
| 5161 |
-
.panel > .table-bordered > tfoot > tr:last-child > td,
|
| 5162 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
|
| 5163 |
-
.panel > .table-bordered > tbody > tr:last-child > th,
|
| 5164 |
-
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
| 5165 |
-
.panel > .table-bordered > tfoot > tr:last-child > th,
|
| 5166 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
|
| 5167 |
-
border-bottom: 0;
|
| 5168 |
-
}
|
| 5169 |
-
.panel > .table-responsive {
|
| 5170 |
-
margin-bottom: 0;
|
| 5171 |
-
border: 0;
|
| 5172 |
-
}
|
| 5173 |
-
.panel-group {
|
| 5174 |
-
margin-bottom: 20px;
|
| 5175 |
-
}
|
| 5176 |
-
.panel-group .panel {
|
| 5177 |
-
margin-bottom: 0;
|
| 5178 |
-
border-radius: 4px;
|
| 5179 |
-
}
|
| 5180 |
-
.panel-group .panel + .panel {
|
| 5181 |
-
margin-top: 5px;
|
| 5182 |
-
}
|
| 5183 |
-
.panel-group .panel-heading {
|
| 5184 |
-
border-bottom: 0;
|
| 5185 |
-
}
|
| 5186 |
-
.panel-group .panel-heading + .panel-collapse > .panel-body {
|
| 5187 |
-
border-top: 1px solid #ddd;
|
| 5188 |
-
}
|
| 5189 |
-
.panel-group .panel-footer {
|
| 5190 |
-
border-top: 0;
|
| 5191 |
-
}
|
| 5192 |
-
.panel-group .panel-footer + .panel-collapse .panel-body {
|
| 5193 |
-
border-bottom: 1px solid #ddd;
|
| 5194 |
-
}
|
| 5195 |
-
.panel-default {
|
| 5196 |
-
border-color: #ddd;
|
| 5197 |
-
}
|
| 5198 |
-
.panel-default > .panel-heading {
|
| 5199 |
-
color: #333;
|
| 5200 |
-
background-color: #f5f5f5;
|
| 5201 |
-
border-color: #ddd;
|
| 5202 |
-
}
|
| 5203 |
-
.panel-default > .panel-heading + .panel-collapse > .panel-body {
|
| 5204 |
-
border-top-color: #ddd;
|
| 5205 |
-
}
|
| 5206 |
-
.panel-default > .panel-heading .badge {
|
| 5207 |
-
color: #f5f5f5;
|
| 5208 |
-
background-color: #333;
|
| 5209 |
-
}
|
| 5210 |
-
.panel-default > .panel-footer + .panel-collapse > .panel-body {
|
| 5211 |
-
border-bottom-color: #ddd;
|
| 5212 |
-
}
|
| 5213 |
-
.panel-primary {
|
| 5214 |
-
border-color: #428bca;
|
| 5215 |
-
}
|
| 5216 |
-
.panel-primary > .panel-heading {
|
| 5217 |
-
color: #fff;
|
| 5218 |
-
background-color: #428bca;
|
| 5219 |
-
border-color: #428bca;
|
| 5220 |
-
}
|
| 5221 |
-
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
|
| 5222 |
-
border-top-color: #428bca;
|
| 5223 |
-
}
|
| 5224 |
-
.panel-primary > .panel-heading .badge {
|
| 5225 |
-
color: #428bca;
|
| 5226 |
-
background-color: #fff;
|
| 5227 |
-
}
|
| 5228 |
-
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
|
| 5229 |
-
border-bottom-color: #428bca;
|
| 5230 |
-
}
|
| 5231 |
-
.panel-success {
|
| 5232 |
-
border-color: #d6e9c6;
|
| 5233 |
-
}
|
| 5234 |
-
.panel-success > .panel-heading {
|
| 5235 |
-
color: #3c763d;
|
| 5236 |
-
background-color: #dff0d8;
|
| 5237 |
-
border-color: #d6e9c6;
|
| 5238 |
-
}
|
| 5239 |
-
.panel-success > .panel-heading + .panel-collapse > .panel-body {
|
| 5240 |
-
border-top-color: #d6e9c6;
|
| 5241 |
-
}
|
| 5242 |
-
.panel-success > .panel-heading .badge {
|
| 5243 |
-
color: #dff0d8;
|
| 5244 |
-
background-color: #3c763d;
|
| 5245 |
-
}
|
| 5246 |
-
.panel-success > .panel-footer + .panel-collapse > .panel-body {
|
| 5247 |
-
border-bottom-color: #d6e9c6;
|
| 5248 |
-
}
|
| 5249 |
-
.panel-info {
|
| 5250 |
-
border-color: #bce8f1;
|
| 5251 |
-
}
|
| 5252 |
-
.panel-info > .panel-heading {
|
| 5253 |
-
color: #31708f;
|
| 5254 |
-
background-color: #d9edf7;
|
| 5255 |
-
border-color: #bce8f1;
|
| 5256 |
-
}
|
| 5257 |
-
.panel-info > .panel-heading + .panel-collapse > .panel-body {
|
| 5258 |
-
border-top-color: #bce8f1;
|
| 5259 |
-
}
|
| 5260 |
-
.panel-info > .panel-heading .badge {
|
| 5261 |
-
color: #d9edf7;
|
| 5262 |
-
background-color: #31708f;
|
| 5263 |
-
}
|
| 5264 |
-
.panel-info > .panel-footer + .panel-collapse > .panel-body {
|
| 5265 |
-
border-bottom-color: #bce8f1;
|
| 5266 |
-
}
|
| 5267 |
-
.panel-warning {
|
| 5268 |
-
border-color: #faebcc;
|
| 5269 |
-
}
|
| 5270 |
-
.panel-warning > .panel-heading {
|
| 5271 |
-
color: #8a6d3b;
|
| 5272 |
-
background-color: #fcf8e3;
|
| 5273 |
-
border-color: #faebcc;
|
| 5274 |
-
}
|
| 5275 |
-
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
|
| 5276 |
-
border-top-color: #faebcc;
|
| 5277 |
-
}
|
| 5278 |
-
.panel-warning > .panel-heading .badge {
|
| 5279 |
-
color: #fcf8e3;
|
| 5280 |
-
background-color: #8a6d3b;
|
| 5281 |
-
}
|
| 5282 |
-
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
|
| 5283 |
-
border-bottom-color: #faebcc;
|
| 5284 |
-
}
|
| 5285 |
-
.panel-danger {
|
| 5286 |
-
border-color: #ebccd1;
|
| 5287 |
-
}
|
| 5288 |
-
.panel-danger > .panel-heading {
|
| 5289 |
-
color: #a94442;
|
| 5290 |
-
background-color: #f2dede;
|
| 5291 |
-
border-color: #ebccd1;
|
| 5292 |
-
}
|
| 5293 |
-
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
|
| 5294 |
-
border-top-color: #ebccd1;
|
| 5295 |
-
}
|
| 5296 |
-
.panel-danger > .panel-heading .badge {
|
| 5297 |
-
color: #f2dede;
|
| 5298 |
-
background-color: #a94442;
|
| 5299 |
-
}
|
| 5300 |
-
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
|
| 5301 |
-
border-bottom-color: #ebccd1;
|
| 5302 |
-
}
|
| 5303 |
-
.embed-responsive {
|
| 5304 |
-
position: relative;
|
| 5305 |
-
display: block;
|
| 5306 |
-
height: 0;
|
| 5307 |
-
padding: 0;
|
| 5308 |
-
overflow: hidden;
|
| 5309 |
-
}
|
| 5310 |
-
.embed-responsive .embed-responsive-item,
|
| 5311 |
-
.embed-responsive iframe,
|
| 5312 |
-
.embed-responsive embed,
|
| 5313 |
-
.embed-responsive object {
|
| 5314 |
-
position: absolute;
|
| 5315 |
-
top: 0;
|
| 5316 |
-
bottom: 0;
|
| 5317 |
-
left: 0;
|
| 5318 |
-
width: 100%;
|
| 5319 |
-
height: 100%;
|
| 5320 |
-
border: 0;
|
| 5321 |
-
}
|
| 5322 |
-
.embed-responsive.embed-responsive-16by9 {
|
| 5323 |
-
padding-bottom: 56.25%;
|
| 5324 |
-
}
|
| 5325 |
-
.embed-responsive.embed-responsive-4by3 {
|
| 5326 |
-
padding-bottom: 75%;
|
| 5327 |
-
}
|
| 5328 |
-
.well {
|
| 5329 |
-
min-height: 20px;
|
| 5330 |
-
padding: 19px;
|
| 5331 |
-
margin-bottom: 20px;
|
| 5332 |
-
background-color: #f5f5f5;
|
| 5333 |
-
border: 1px solid #e3e3e3;
|
| 5334 |
-
border-radius: 4px;
|
| 5335 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
|
| 5336 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
|
| 5337 |
-
}
|
| 5338 |
-
.well blockquote {
|
| 5339 |
-
border-color: #ddd;
|
| 5340 |
-
border-color: rgba(0, 0, 0, .15);
|
| 5341 |
-
}
|
| 5342 |
-
.well-lg {
|
| 5343 |
-
padding: 24px;
|
| 5344 |
-
border-radius: 6px;
|
| 5345 |
-
}
|
| 5346 |
-
.well-sm {
|
| 5347 |
-
padding: 9px;
|
| 5348 |
-
border-radius: 3px;
|
| 5349 |
-
}
|
| 5350 |
-
.close {
|
| 5351 |
-
float: right;
|
| 5352 |
-
font-size: 21px;
|
| 5353 |
-
font-weight: bold;
|
| 5354 |
-
line-height: 1;
|
| 5355 |
-
color: #000;
|
| 5356 |
-
text-shadow: 0 1px 0 #fff;
|
| 5357 |
-
filter: alpha(opacity=20);
|
| 5358 |
-
opacity: .2;
|
| 5359 |
-
}
|
| 5360 |
-
.close:hover,
|
| 5361 |
-
.close:focus {
|
| 5362 |
-
color: #000;
|
| 5363 |
-
text-decoration: none;
|
| 5364 |
-
cursor: pointer;
|
| 5365 |
-
filter: alpha(opacity=50);
|
| 5366 |
-
opacity: .5;
|
| 5367 |
-
}
|
| 5368 |
-
button.close {
|
| 5369 |
-
-webkit-appearance: none;
|
| 5370 |
-
padding: 0;
|
| 5371 |
-
cursor: pointer;
|
| 5372 |
-
background: transparent;
|
| 5373 |
-
border: 0;
|
| 5374 |
-
}
|
| 5375 |
-
.modal-open {
|
| 5376 |
-
overflow: hidden;
|
| 5377 |
-
}
|
| 5378 |
-
.modal {
|
| 5379 |
-
position: fixed;
|
| 5380 |
-
top: 0;
|
| 5381 |
-
right: 0;
|
| 5382 |
-
bottom: 0;
|
| 5383 |
-
left: 0;
|
| 5384 |
-
z-index: 1050;
|
| 5385 |
-
display: none;
|
| 5386 |
-
overflow: hidden;
|
| 5387 |
-
-webkit-overflow-scrolling: touch;
|
| 5388 |
-
outline: 0;
|
| 5389 |
-
}
|
| 5390 |
-
.modal.fade .modal-dialog {
|
| 5391 |
-
-webkit-transition: -webkit-transform .3s ease-out;
|
| 5392 |
-
-o-transition: -o-transform .3s ease-out;
|
| 5393 |
-
transition: transform .3s ease-out;
|
| 5394 |
-
-webkit-transform: translate3d(0, -25%, 0);
|
| 5395 |
-
-o-transform: translate3d(0, -25%, 0);
|
| 5396 |
-
transform: translate3d(0, -25%, 0);
|
| 5397 |
-
}
|
| 5398 |
-
.modal.in .modal-dialog {
|
| 5399 |
-
-webkit-transform: translate3d(0, 0, 0);
|
| 5400 |
-
-o-transform: translate3d(0, 0, 0);
|
| 5401 |
-
transform: translate3d(0, 0, 0);
|
| 5402 |
-
}
|
| 5403 |
-
.modal-open .modal {
|
| 5404 |
-
overflow-x: hidden;
|
| 5405 |
-
overflow-y: auto;
|
| 5406 |
-
}
|
| 5407 |
-
.modal-dialog {
|
| 5408 |
-
position: relative;
|
| 5409 |
-
width: auto;
|
| 5410 |
-
margin: 10px;
|
| 5411 |
-
}
|
| 5412 |
-
.modal-content {
|
| 5413 |
-
position: relative;
|
| 5414 |
-
background-color: #fff;
|
| 5415 |
-
-webkit-background-clip: padding-box;
|
| 5416 |
-
background-clip: padding-box;
|
| 5417 |
-
border: 1px solid #999;
|
| 5418 |
-
border: 1px solid rgba(0, 0, 0, .2);
|
| 5419 |
-
border-radius: 6px;
|
| 5420 |
-
outline: 0;
|
| 5421 |
-
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
| 5422 |
-
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
| 5423 |
-
}
|
| 5424 |
-
.modal-backdrop {
|
| 5425 |
-
position: fixed;
|
| 5426 |
-
top: 0;
|
| 5427 |
-
right: 0;
|
| 5428 |
-
bottom: 0;
|
| 5429 |
-
left: 0;
|
| 5430 |
-
z-index: 1040;
|
| 5431 |
-
background-color: #000;
|
| 5432 |
-
}
|
| 5433 |
-
.modal-backdrop.fade {
|
| 5434 |
-
filter: alpha(opacity=0);
|
| 5435 |
-
opacity: 0;
|
| 5436 |
-
}
|
| 5437 |
-
.modal-backdrop.in {
|
| 5438 |
-
filter: alpha(opacity=50);
|
| 5439 |
-
opacity: .5;
|
| 5440 |
-
}
|
| 5441 |
-
.modal-header {
|
| 5442 |
-
min-height: 16.42857143px;
|
| 5443 |
-
padding: 15px;
|
| 5444 |
-
border-bottom: 1px solid #e5e5e5;
|
| 5445 |
-
}
|
| 5446 |
-
.modal-header .close {
|
| 5447 |
-
margin-top: -2px;
|
| 5448 |
-
}
|
| 5449 |
-
.modal-title {
|
| 5450 |
-
margin: 0;
|
| 5451 |
-
line-height: 1.42857143;
|
| 5452 |
-
}
|
| 5453 |
-
.modal-body {
|
| 5454 |
-
position: relative;
|
| 5455 |
-
padding: 15px;
|
| 5456 |
-
}
|
| 5457 |
-
.modal-footer {
|
| 5458 |
-
padding: 15px;
|
| 5459 |
-
text-align: right;
|
| 5460 |
-
border-top: 1px solid #e5e5e5;
|
| 5461 |
-
}
|
| 5462 |
-
.modal-footer .btn + .btn {
|
| 5463 |
-
margin-bottom: 0;
|
| 5464 |
-
margin-left: 5px;
|
| 5465 |
-
}
|
| 5466 |
-
.modal-footer .btn-group .btn + .btn {
|
| 5467 |
-
margin-left: -1px;
|
| 5468 |
-
}
|
| 5469 |
-
.modal-footer .btn-block + .btn-block {
|
| 5470 |
-
margin-left: 0;
|
| 5471 |
-
}
|
| 5472 |
-
.modal-scrollbar-measure {
|
| 5473 |
-
position: absolute;
|
| 5474 |
-
top: -9999px;
|
| 5475 |
-
width: 50px;
|
| 5476 |
-
height: 50px;
|
| 5477 |
-
overflow: scroll;
|
| 5478 |
-
}
|
| 5479 |
-
@media (min-width: 768px) {
|
| 5480 |
-
.modal-dialog {
|
| 5481 |
-
width: 600px;
|
| 5482 |
-
margin: 30px auto;
|
| 5483 |
}
|
| 5484 |
-
.
|
| 5485 |
-
-
|
| 5486 |
-
box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
|
| 5487 |
}
|
| 5488 |
-
.
|
| 5489 |
-
|
| 5490 |
}
|
| 5491 |
-
|
| 5492 |
-
|
| 5493 |
-
|
| 5494 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5495 |
}
|
| 5496 |
}
|
| 5497 |
-
|
| 5498 |
-
|
| 5499 |
-
|
| 5500 |
-
|
| 5501 |
-
|
| 5502 |
-
|
| 5503 |
-
|
| 5504 |
-
|
| 5505 |
-
|
| 5506 |
-
}
|
| 5507 |
-
.
|
| 5508 |
-
|
| 5509 |
-
|
| 5510 |
-
|
| 5511 |
-
|
| 5512 |
-
|
| 5513 |
-
|
| 5514 |
-
|
| 5515 |
-
|
| 5516 |
-
|
| 5517 |
-
|
| 5518 |
-
}
|
| 5519 |
-
.
|
| 5520 |
-
|
| 5521 |
-
|
| 5522 |
-
|
| 5523 |
-
.
|
| 5524 |
-
|
| 5525 |
-
|
| 5526 |
-
|
| 5527 |
-
|
| 5528 |
-
|
| 5529 |
-
|
| 5530 |
-
|
| 5531 |
-
|
| 5532 |
-
|
| 5533 |
-
|
| 5534 |
-
|
| 5535 |
-
|
| 5536 |
-
|
| 5537 |
-
|
| 5538 |
-
|
| 5539 |
-
|
| 5540 |
-
|
| 5541 |
-
|
| 5542 |
-
}
|
| 5543 |
-
.
|
| 5544 |
-
|
| 5545 |
-
|
| 5546 |
-
|
| 5547 |
-
|
| 5548 |
-
|
| 5549 |
-
|
| 5550 |
-
|
| 5551 |
-
|
| 5552 |
-
|
| 5553 |
-
|
| 5554 |
-
|
| 5555 |
-
|
| 5556 |
-
|
| 5557 |
-
|
| 5558 |
-
|
| 5559 |
-
|
| 5560 |
-
|
| 5561 |
-
|
| 5562 |
-
|
| 5563 |
-
|
| 5564 |
-
|
| 5565 |
-
|
| 5566 |
-
|
| 5567 |
-
|
| 5568 |
-
|
| 5569 |
-
|
| 5570 |
-
|
| 5571 |
-
|
| 5572 |
-
|
| 5573 |
-
|
| 5574 |
-
|
| 5575 |
-
}
|
| 5576 |
-
.
|
| 5577 |
-
|
| 5578 |
-
|
| 5579 |
-
|
| 5580 |
-
|
| 5581 |
-
|
| 5582 |
-
|
| 5583 |
-
|
| 5584 |
-
|
| 5585 |
-
|
| 5586 |
-
|
| 5587 |
-
|
| 5588 |
-
|
| 5589 |
-
|
| 5590 |
-
|
| 5591 |
-
|
| 5592 |
-
|
| 5593 |
-
|
| 5594 |
-
|
| 5595 |
-
|
| 5596 |
-
|
| 5597 |
-
|
| 5598 |
-
|
| 5599 |
-
|
| 5600 |
-
|
| 5601 |
-
|
| 5602 |
-
|
| 5603 |
-
|
| 5604 |
-
|
| 5605 |
-
|
| 5606 |
-
-
|
| 5607 |
-
|
| 5608 |
-
|
| 5609 |
-
|
| 5610 |
-
|
| 5611 |
-
|
| 5612 |
-
|
| 5613 |
-
|
| 5614 |
-
|
| 5615 |
-
|
| 5616 |
-
|
| 5617 |
-
|
| 5618 |
-
|
| 5619 |
-
|
| 5620 |
-
|
| 5621 |
-
|
| 5622 |
-
|
| 5623 |
-
|
| 5624 |
-
|
| 5625 |
-
|
| 5626 |
-
|
| 5627 |
-
|
| 5628 |
-
|
| 5629 |
-
|
| 5630 |
-
|
| 5631 |
-
|
| 5632 |
-
|
| 5633 |
-
|
| 5634 |
-
|
| 5635 |
-
}
|
| 5636 |
-
.
|
| 5637 |
-
|
| 5638 |
-
}
|
| 5639 |
-
.
|
| 5640 |
-
|
| 5641 |
-
position: absolute;
|
| 5642 |
-
display: block;
|
| 5643 |
-
width: 0;
|
| 5644 |
-
height: 0;
|
| 5645 |
-
border-color: transparent;
|
| 5646 |
-
border-style: solid;
|
| 5647 |
-
}
|
| 5648 |
-
.popover > .arrow {
|
| 5649 |
-
border-width: 11px;
|
| 5650 |
-
}
|
| 5651 |
-
.popover > .arrow:after {
|
| 5652 |
-
content: "";
|
| 5653 |
-
border-width: 10px;
|
| 5654 |
-
}
|
| 5655 |
-
.popover.top > .arrow {
|
| 5656 |
-
bottom: -11px;
|
| 5657 |
-
left: 50%;
|
| 5658 |
-
margin-left: -11px;
|
| 5659 |
-
border-top-color: #999;
|
| 5660 |
-
border-top-color: rgba(0, 0, 0, .25);
|
| 5661 |
-
border-bottom-width: 0;
|
| 5662 |
-
}
|
| 5663 |
-
.popover.top > .arrow:after {
|
| 5664 |
-
bottom: 1px;
|
| 5665 |
-
margin-left: -10px;
|
| 5666 |
-
content: " ";
|
| 5667 |
-
border-top-color: #fff;
|
| 5668 |
-
border-bottom-width: 0;
|
| 5669 |
-
}
|
| 5670 |
-
.popover.right > .arrow {
|
| 5671 |
-
top: 50%;
|
| 5672 |
-
left: -11px;
|
| 5673 |
-
margin-top: -11px;
|
| 5674 |
-
border-right-color: #999;
|
| 5675 |
-
border-right-color: rgba(0, 0, 0, .25);
|
| 5676 |
-
border-left-width: 0;
|
| 5677 |
-
}
|
| 5678 |
-
.popover.right > .arrow:after {
|
| 5679 |
-
bottom: -10px;
|
| 5680 |
-
left: 1px;
|
| 5681 |
-
content: " ";
|
| 5682 |
-
border-right-color: #fff;
|
| 5683 |
-
border-left-width: 0;
|
| 5684 |
-
}
|
| 5685 |
-
.popover.bottom > .arrow {
|
| 5686 |
-
top: -11px;
|
| 5687 |
-
left: 50%;
|
| 5688 |
-
margin-left: -11px;
|
| 5689 |
-
border-top-width: 0;
|
| 5690 |
-
border-bottom-color: #999;
|
| 5691 |
-
border-bottom-color: rgba(0, 0, 0, .25);
|
| 5692 |
-
}
|
| 5693 |
-
.popover.bottom > .arrow:after {
|
| 5694 |
-
top: 1px;
|
| 5695 |
-
margin-left: -10px;
|
| 5696 |
-
content: " ";
|
| 5697 |
-
border-top-width: 0;
|
| 5698 |
-
border-bottom-color: #fff;
|
| 5699 |
-
}
|
| 5700 |
-
.popover.left > .arrow {
|
| 5701 |
-
top: 50%;
|
| 5702 |
-
right: -11px;
|
| 5703 |
-
margin-top: -11px;
|
| 5704 |
-
border-right-width: 0;
|
| 5705 |
-
border-left-color: #999;
|
| 5706 |
-
border-left-color: rgba(0, 0, 0, .25);
|
| 5707 |
-
}
|
| 5708 |
-
.popover.left > .arrow:after {
|
| 5709 |
-
right: 1px;
|
| 5710 |
-
bottom: -10px;
|
| 5711 |
-
content: " ";
|
| 5712 |
-
border-right-width: 0;
|
| 5713 |
-
border-left-color: #fff;
|
| 5714 |
-
}
|
| 5715 |
-
.carousel {
|
| 5716 |
-
position: relative;
|
| 5717 |
-
}
|
| 5718 |
-
.carousel-inner {
|
| 5719 |
-
position: relative;
|
| 5720 |
-
width: 100%;
|
| 5721 |
-
overflow: hidden;
|
| 5722 |
-
}
|
| 5723 |
-
.carousel-inner > .item {
|
| 5724 |
-
position: relative;
|
| 5725 |
-
display: none;
|
| 5726 |
-
-webkit-transition: .6s ease-in-out left;
|
| 5727 |
-
-o-transition: .6s ease-in-out left;
|
| 5728 |
-
transition: .6s ease-in-out left;
|
| 5729 |
-
}
|
| 5730 |
-
.carousel-inner > .item > img,
|
| 5731 |
-
.carousel-inner > .item > a > img {
|
| 5732 |
-
line-height: 1;
|
| 5733 |
-
}
|
| 5734 |
-
.carousel-inner > .active,
|
| 5735 |
-
.carousel-inner > .next,
|
| 5736 |
-
.carousel-inner > .prev {
|
| 5737 |
-
display: block;
|
| 5738 |
-
}
|
| 5739 |
-
.carousel-inner > .active {
|
| 5740 |
-
left: 0;
|
| 5741 |
-
}
|
| 5742 |
-
.carousel-inner > .next,
|
| 5743 |
-
.carousel-inner > .prev {
|
| 5744 |
-
position: absolute;
|
| 5745 |
-
top: 0;
|
| 5746 |
-
width: 100%;
|
| 5747 |
-
}
|
| 5748 |
-
.carousel-inner > .next {
|
| 5749 |
-
left: 100%;
|
| 5750 |
-
}
|
| 5751 |
-
.carousel-inner > .prev {
|
| 5752 |
-
left: -100%;
|
| 5753 |
-
}
|
| 5754 |
-
.carousel-inner > .next.left,
|
| 5755 |
-
.carousel-inner > .prev.right {
|
| 5756 |
-
left: 0;
|
| 5757 |
-
}
|
| 5758 |
-
.carousel-inner > .active.left {
|
| 5759 |
-
left: -100%;
|
| 5760 |
-
}
|
| 5761 |
-
.carousel-inner > .active.right {
|
| 5762 |
-
left: 100%;
|
| 5763 |
-
}
|
| 5764 |
-
.carousel-control {
|
| 5765 |
-
position: absolute;
|
| 5766 |
-
top: 0;
|
| 5767 |
-
bottom: 0;
|
| 5768 |
-
left: 0;
|
| 5769 |
-
width: 15%;
|
| 5770 |
-
font-size: 20px;
|
| 5771 |
-
color: #fff;
|
| 5772 |
-
text-align: center;
|
| 5773 |
-
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
| 5774 |
-
filter: alpha(opacity=50);
|
| 5775 |
-
opacity: .5;
|
| 5776 |
-
}
|
| 5777 |
-
.carousel-control.left {
|
| 5778 |
-
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
|
| 5779 |
-
background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
|
| 5780 |
-
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
|
| 5781 |
-
background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
|
| 5782 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
| 5783 |
-
background-repeat: repeat-x;
|
| 5784 |
-
}
|
| 5785 |
-
.carousel-control.right {
|
| 5786 |
-
right: 0;
|
| 5787 |
-
left: auto;
|
| 5788 |
-
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
|
| 5789 |
-
background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
|
| 5790 |
-
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
|
| 5791 |
-
background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
|
| 5792 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
| 5793 |
-
background-repeat: repeat-x;
|
| 5794 |
-
}
|
| 5795 |
-
.carousel-control:hover,
|
| 5796 |
-
.carousel-control:focus {
|
| 5797 |
-
color: #fff;
|
| 5798 |
-
text-decoration: none;
|
| 5799 |
-
filter: alpha(opacity=90);
|
| 5800 |
-
outline: 0;
|
| 5801 |
-
opacity: .9;
|
| 5802 |
-
}
|
| 5803 |
-
.carousel-control .icon-prev,
|
| 5804 |
-
.carousel-control .icon-next,
|
| 5805 |
-
.carousel-control .glyphicon-chevron-left,
|
| 5806 |
-
.carousel-control .glyphicon-chevron-right {
|
| 5807 |
-
position: absolute;
|
| 5808 |
-
top: 50%;
|
| 5809 |
-
z-index: 5;
|
| 5810 |
-
display: inline-block;
|
| 5811 |
-
}
|
| 5812 |
-
.carousel-control .icon-prev,
|
| 5813 |
-
.carousel-control .glyphicon-chevron-left {
|
| 5814 |
-
left: 50%;
|
| 5815 |
-
margin-left: -10px;
|
| 5816 |
-
}
|
| 5817 |
-
.carousel-control .icon-next,
|
| 5818 |
-
.carousel-control .glyphicon-chevron-right {
|
| 5819 |
-
right: 50%;
|
| 5820 |
-
margin-right: -10px;
|
| 5821 |
-
}
|
| 5822 |
-
.carousel-control .icon-prev,
|
| 5823 |
-
.carousel-control .icon-next {
|
| 5824 |
-
width: 20px;
|
| 5825 |
-
height: 20px;
|
| 5826 |
-
margin-top: -10px;
|
| 5827 |
-
font-family: serif;
|
| 5828 |
-
}
|
| 5829 |
-
.carousel-control .icon-prev:before {
|
| 5830 |
-
content: '\2039';
|
| 5831 |
-
}
|
| 5832 |
-
.carousel-control .icon-next:before {
|
| 5833 |
-
content: '\203a';
|
| 5834 |
-
}
|
| 5835 |
-
.carousel-indicators {
|
| 5836 |
-
position: absolute;
|
| 5837 |
-
bottom: 10px;
|
| 5838 |
-
left: 50%;
|
| 5839 |
-
z-index: 15;
|
| 5840 |
-
width: 60%;
|
| 5841 |
-
padding-left: 0;
|
| 5842 |
-
margin-left: -30%;
|
| 5843 |
-
text-align: center;
|
| 5844 |
-
list-style: none;
|
| 5845 |
-
}
|
| 5846 |
-
.carousel-indicators li {
|
| 5847 |
-
display: inline-block;
|
| 5848 |
-
width: 10px;
|
| 5849 |
-
height: 10px;
|
| 5850 |
-
margin: 1px;
|
| 5851 |
-
text-indent: -999px;
|
| 5852 |
-
cursor: pointer;
|
| 5853 |
-
background-color: #000 \9;
|
| 5854 |
-
background-color: rgba(0, 0, 0, 0);
|
| 5855 |
-
border: 1px solid #fff;
|
| 5856 |
-
border-radius: 10px;
|
| 5857 |
-
}
|
| 5858 |
-
.carousel-indicators .active {
|
| 5859 |
-
width: 12px;
|
| 5860 |
-
height: 12px;
|
| 5861 |
-
margin: 0;
|
| 5862 |
-
background-color: #fff;
|
| 5863 |
-
}
|
| 5864 |
-
.carousel-caption {
|
| 5865 |
-
position: absolute;
|
| 5866 |
-
right: 15%;
|
| 5867 |
-
bottom: 20px;
|
| 5868 |
-
left: 15%;
|
| 5869 |
-
z-index: 10;
|
| 5870 |
-
padding-top: 20px;
|
| 5871 |
-
padding-bottom: 20px;
|
| 5872 |
-
color: #fff;
|
| 5873 |
-
text-align: center;
|
| 5874 |
-
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
| 5875 |
-
}
|
| 5876 |
-
.carousel-caption .btn {
|
| 5877 |
-
text-shadow: none;
|
| 5878 |
-
}
|
| 5879 |
-
@media screen and (min-width: 768px) {
|
| 5880 |
-
.carousel-control .glyphicon-chevron-left,
|
| 5881 |
-
.carousel-control .glyphicon-chevron-right,
|
| 5882 |
-
.carousel-control .icon-prev,
|
| 5883 |
-
.carousel-control .icon-next {
|
| 5884 |
-
width: 30px;
|
| 5885 |
-
height: 30px;
|
| 5886 |
-
margin-top: -15px;
|
| 5887 |
-
font-size: 30px;
|
| 5888 |
}
|
| 5889 |
-
.
|
| 5890 |
-
|
| 5891 |
-
margin-left: -15px;
|
| 5892 |
}
|
| 5893 |
-
.
|
| 5894 |
-
|
| 5895 |
-
margin-right: -15px;
|
| 5896 |
}
|
| 5897 |
-
.
|
| 5898 |
-
|
| 5899 |
-
left: 20%;
|
| 5900 |
-
padding-bottom: 30px;
|
| 5901 |
}
|
| 5902 |
-
.
|
| 5903 |
-
|
| 5904 |
}
|
| 5905 |
}
|
| 5906 |
.clearfix:before,
|
| 5907 |
.clearfix:after,
|
| 5908 |
-
.dl-horizontal dd:before,
|
| 5909 |
-
.dl-horizontal dd:after,
|
| 5910 |
.container:before,
|
| 5911 |
.container:after,
|
| 5912 |
.container-fluid:before,
|
| 5913 |
.container-fluid:after,
|
| 5914 |
.row:before,
|
| 5915 |
-
.row:after
|
| 5916 |
-
.form-horizontal .form-group:before,
|
| 5917 |
-
.form-horizontal .form-group:after,
|
| 5918 |
-
.btn-toolbar:before,
|
| 5919 |
-
.btn-toolbar:after,
|
| 5920 |
-
.btn-group-vertical > .btn-group:before,
|
| 5921 |
-
.btn-group-vertical > .btn-group:after,
|
| 5922 |
-
.nav:before,
|
| 5923 |
-
.nav:after,
|
| 5924 |
-
.navbar:before,
|
| 5925 |
-
.navbar:after,
|
| 5926 |
-
.navbar-header:before,
|
| 5927 |
-
.navbar-header:after,
|
| 5928 |
-
.navbar-collapse:before,
|
| 5929 |
-
.navbar-collapse:after,
|
| 5930 |
-
.pager:before,
|
| 5931 |
-
.pager:after,
|
| 5932 |
-
.panel-body:before,
|
| 5933 |
-
.panel-body:after,
|
| 5934 |
-
.modal-footer:before,
|
| 5935 |
-
.modal-footer:after {
|
| 5936 |
-
display: table;
|
| 5937 |
content: " ";
|
|
|
|
| 5938 |
}
|
| 5939 |
.clearfix:after,
|
| 5940 |
-
.dl-horizontal dd:after,
|
| 5941 |
.container:after,
|
| 5942 |
.container-fluid:after,
|
| 5943 |
-
.row:after
|
| 5944 |
-
.form-horizontal .form-group:after,
|
| 5945 |
-
.btn-toolbar:after,
|
| 5946 |
-
.btn-group-vertical > .btn-group:after,
|
| 5947 |
-
.nav:after,
|
| 5948 |
-
.navbar:after,
|
| 5949 |
-
.navbar-header:after,
|
| 5950 |
-
.navbar-collapse:after,
|
| 5951 |
-
.pager:after,
|
| 5952 |
-
.panel-body:after,
|
| 5953 |
-
.modal-footer:after {
|
| 5954 |
clear: both;
|
| 5955 |
}
|
| 5956 |
.center-block {
|
| 5957 |
display: block;
|
| 5958 |
-
margin-right: auto;
|
| 5959 |
margin-left: auto;
|
|
|
|
| 5960 |
}
|
| 5961 |
.pull-right {
|
| 5962 |
float: right !important;
|
|
@@ -5982,13 +1012,9 @@ button.close {
|
|
| 5982 |
}
|
| 5983 |
.hidden {
|
| 5984 |
display: none !important;
|
| 5985 |
-
visibility: hidden !important;
|
| 5986 |
}
|
| 5987 |
.affix {
|
| 5988 |
position: fixed;
|
| 5989 |
-
-webkit-transform: translate3d(0, 0, 0);
|
| 5990 |
-
-o-transform: translate3d(0, 0, 0);
|
| 5991 |
-
transform: translate3d(0, 0, 0);
|
| 5992 |
}
|
| 5993 |
@-ms-viewport {
|
| 5994 |
width: device-width;
|
|
@@ -6018,7 +1044,7 @@ button.close {
|
|
| 6018 |
display: block !important;
|
| 6019 |
}
|
| 6020 |
table.visible-xs {
|
| 6021 |
-
display: table;
|
| 6022 |
}
|
| 6023 |
tr.visible-xs {
|
| 6024 |
display: table-row !important;
|
|
@@ -6048,7 +1074,7 @@ button.close {
|
|
| 6048 |
display: block !important;
|
| 6049 |
}
|
| 6050 |
table.visible-sm {
|
| 6051 |
-
display: table;
|
| 6052 |
}
|
| 6053 |
tr.visible-sm {
|
| 6054 |
display: table-row !important;
|
|
@@ -6078,7 +1104,7 @@ button.close {
|
|
| 6078 |
display: block !important;
|
| 6079 |
}
|
| 6080 |
table.visible-md {
|
| 6081 |
-
display: table;
|
| 6082 |
}
|
| 6083 |
tr.visible-md {
|
| 6084 |
display: table-row !important;
|
|
@@ -6108,7 +1134,7 @@ button.close {
|
|
| 6108 |
display: block !important;
|
| 6109 |
}
|
| 6110 |
table.visible-lg {
|
| 6111 |
-
display: table;
|
| 6112 |
}
|
| 6113 |
tr.visible-lg {
|
| 6114 |
display: table-row !important;
|
|
@@ -6161,7 +1187,7 @@ button.close {
|
|
| 6161 |
display: block !important;
|
| 6162 |
}
|
| 6163 |
table.visible-print {
|
| 6164 |
-
display: table;
|
| 6165 |
}
|
| 6166 |
tr.visible-print {
|
| 6167 |
display: table-row !important;
|
|
@@ -6199,5 +1225,4 @@ button.close {
|
|
| 6199 |
.hidden-print {
|
| 6200 |
display: none !important;
|
| 6201 |
}
|
| 6202 |
-
}
|
| 6203 |
-
/*# sourceMappingURL=bootstrap.css.map */
|
| 1 |
/*!
|
| 2 |
+
* Bootstrap v3.3.5 (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=f62ba4b3f0a224d5f4812723c0f7f900)
|
| 9 |
+
* Config saved to config.json and https://gist.github.com/f62ba4b3f0a224d5f4812723c0f7f900
|
| 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;
|
| 31 |
header,
|
| 32 |
hgroup,
|
| 33 |
main,
|
| 34 |
+
menu,
|
| 35 |
nav,
|
| 36 |
section,
|
| 37 |
summary {
|
| 53 |
display: none;
|
| 54 |
}
|
| 55 |
a {
|
| 56 |
+
background-color: transparent;
|
| 57 |
}
|
| 58 |
a:active,
|
| 59 |
a:hover {
|
| 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;
|
| 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;
|
| 123 |
optgroup,
|
| 124 |
select,
|
| 125 |
textarea {
|
|
|
|
|
|
|
| 126 |
color: inherit;
|
| 127 |
+
font: inherit;
|
| 128 |
+
margin: 0;
|
| 129 |
}
|
| 130 |
button {
|
| 131 |
overflow: visible;
|
| 147 |
}
|
| 148 |
button::-moz-focus-inner,
|
| 149 |
input::-moz-focus-inner {
|
|
|
|
| 150 |
border: 0;
|
| 151 |
+
padding: 0;
|
| 152 |
}
|
| 153 |
input {
|
| 154 |
line-height: normal;
|
| 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;
|
| 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: #ffffff;
|
| 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: #ffffff;
|
| 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 |
.clearfix:before,
|
| 970 |
.clearfix:after,
|
|
|
|
|
|
|
| 971 |
.container:before,
|
| 972 |
.container:after,
|
| 973 |
.container-fluid:before,
|
| 974 |
.container-fluid:after,
|
| 975 |
.row:before,
|
| 976 |
+
.row:after {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 977 |
content: " ";
|
| 978 |
+
display: table;
|
| 979 |
}
|
| 980 |
.clearfix:after,
|
|
|
|
| 981 |
.container:after,
|
| 982 |
.container-fluid:after,
|
| 983 |
+
.row:after {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 984 |
clear: both;
|
| 985 |
}
|
| 986 |
.center-block {
|
| 987 |
display: block;
|
|
|
|
| 988 |
margin-left: auto;
|
| 989 |
+
margin-right: auto;
|
| 990 |
}
|
| 991 |
.pull-right {
|
| 992 |
float: right !important;
|
| 1012 |
}
|
| 1013 |
.hidden {
|
| 1014 |
display: none !important;
|
|
|
|
| 1015 |
}
|
| 1016 |
.affix {
|
| 1017 |
position: fixed;
|
|
|
|
|
|
|
|
|
|
| 1018 |
}
|
| 1019 |
@-ms-viewport {
|
| 1020 |
width: device-width;
|
| 1044 |
display: block !important;
|
| 1045 |
}
|
| 1046 |
table.visible-xs {
|
| 1047 |
+
display: table !important;
|
| 1048 |
}
|
| 1049 |
tr.visible-xs {
|
| 1050 |
display: table-row !important;
|
| 1074 |
display: block !important;
|
| 1075 |
}
|
| 1076 |
table.visible-sm {
|
| 1077 |
+
display: table !important;
|
| 1078 |
}
|
| 1079 |
tr.visible-sm {
|
| 1080 |
display: table-row !important;
|
| 1104 |
display: block !important;
|
| 1105 |
}
|
| 1106 |
table.visible-md {
|
| 1107 |
+
display: table !important;
|
| 1108 |
}
|
| 1109 |
tr.visible-md {
|
| 1110 |
display: table-row !important;
|
| 1134 |
display: block !important;
|
| 1135 |
}
|
| 1136 |
table.visible-lg {
|
| 1137 |
+
display: table !important;
|
| 1138 |
}
|
| 1139 |
tr.visible-lg {
|
| 1140 |
display: table-row !important;
|
| 1187 |
display: block !important;
|
| 1188 |
}
|
| 1189 |
table.visible-print {
|
| 1190 |
+
display: table !important;
|
| 1191 |
}
|
| 1192 |
tr.visible-print {
|
| 1193 |
display: table-row !important;
|
| 1225 |
.hidden-print {
|
| 1226 |
display: none !important;
|
| 1227 |
}
|
| 1228 |
+
}
|
|
|
skin/frontend/base/default/images/tpl_eventsmanager/close-button.svg
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
| 2 |
+
<!-- The icon can be used freely in both personal and commercial projects with no attribution required, but always appreciated.
|
| 3 |
+
You may NOT sub-license, resell, rent, redistribute or otherwise transfer the icon without express written permission from iconmonstr.com -->
|
| 4 |
+
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" width="40px" height="40px" fill="#666666" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve" id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="close-button.svg"><metadata id="metadata9"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata><defs id="defs7"/><sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="832" inkscape:window-height="602" id="namedview5" showgrid="false" inkscape:zoom="5.9" inkscape:cx="20.59322" inkscape:cy="20" inkscape:window-x="671" inkscape:window-y="171" inkscape:window-maximized="0" inkscape:current-layer="svg2"/><path id="x-mark-4-icon" d="m 512.0768,255.9232 c 0,141.38532 -114.61468,256 -256,256 -141.38532,0 -256,-114.61468 -256,-256 0,-141.38532 114.61468,-256 256,-256 141.38532,0 256,114.61468 256,256 z m -49.70874,0 c 0,-114.02563 -92.28178,-206.291262 -206.29126,-206.291262 -114.02563,0 -206.291262,92.283032 -206.291262,206.291262 0,114.02563 92.281782,206.29126 206.291262,206.29126 114.02563,0 206.29126,-92.28303 206.29126,-206.29126 z m -120.13483,132.33709 -83.66851,-83.66478 -83.67099,83.67472 -44.94167,-44.96901 83.65235,-83.66229 -83.66105,-83.65608 44.96777,-44.94167 83.64738,83.63619 83.63495,-83.64613 44.97771,44.94913 -83.64987,83.65359 83.65981,83.64738 -44.94788,44.97895 z" inkscape:connector-curvature="0"/></svg>
|
skin/frontend/base/default/images/tpl_eventsmanager/no-image-available.png
CHANGED
|
Binary file
|
