Version Notes
First stable release
Download this release
Release Info
Developer | Magento Core Team |
Extension | Magmodules_Feedbackcompany |
Version | 1.2.6 |
Comparing to | |
See all releases |
Code changes from version 1.2.5 to 1.2.6
- app/code/local/Magmodules/Feedbackcompany/Model/Api.php +2 -2
- app/code/local/Magmodules/Feedbackcompany/Model/Reviews.php +3 -0
- app/code/local/Magmodules/Feedbackcompany/etc/config.xml +1 -1
- app/code/local/Magmodules/Feedbackcompany/sql/feedbackcompany_setup/mysql4-upgrade-1.2.5-1.2.6.php +28 -0
- app/design/frontend/base/default/template/magmodules/feedbackcompany/index.phtml +4 -0
- package.xml +4 -4
- skin/frontend/base/default/magmodules/feedbackcompany/style.css +60 -1
app/code/local/Magmodules/Feedbackcompany/Model/Api.php
CHANGED
@@ -38,10 +38,10 @@ class Magmodules_Feedbackcompany_Model_Api extends Mage_Core_Model_Abstract {
|
|
38 |
$api_url = 'https://beoordelingen.feedbackcompany.nl/samenvoordeel/scripts/flexreview/getreviewxml.cfm?ws=' . $api_id . '&publishDetails=0&nor=0';
|
39 |
}
|
40 |
if($type == 'reviews') {
|
41 |
-
$api_url = 'https://beoordelingen.feedbackcompany.nl/samenvoordeel/scripts/flexreview/getreviewxml.cfm?ws=' . $api_id . '&publishIDs=1&nor=50&publishDetails=1&publishOnHold=0&sort=desc&emlpass=test';
|
42 |
}
|
43 |
if($type == 'history') {
|
44 |
-
$api_url = 'https://beoordelingen.feedbackcompany.nl/samenvoordeel/scripts/flexreview/getreviewxml.cfm?ws=' . $api_id . '&publishIDs=1&nor=5000&publishDetails=1&publishOnHold=0&sort=desc&emlpass=test';
|
45 |
}
|
46 |
|
47 |
if($api_id) {
|
38 |
$api_url = 'https://beoordelingen.feedbackcompany.nl/samenvoordeel/scripts/flexreview/getreviewxml.cfm?ws=' . $api_id . '&publishDetails=0&nor=0';
|
39 |
}
|
40 |
if($type == 'reviews') {
|
41 |
+
$api_url = 'https://beoordelingen.feedbackcompany.nl/samenvoordeel/scripts/flexreview/getreviewxml.cfm?ws=' . $api_id . '&publishIDs=1&nor=50&publishDetails=1&publishOnHold=0&sort=desc&emlpass=test&publishCompResponse=1';
|
42 |
}
|
43 |
if($type == 'history') {
|
44 |
+
$api_url = 'https://beoordelingen.feedbackcompany.nl/samenvoordeel/scripts/flexreview/getreviewxml.cfm?ws=' . $api_id . '&publishIDs=1&nor=5000&publishDetails=1&publishOnHold=0&sort=desc&emlpass=test&publishCompResponse=1';
|
45 |
}
|
46 |
|
47 |
if($api_id) {
|
app/code/local/Magmodules/Feedbackcompany/Model/Reviews.php
CHANGED
@@ -59,6 +59,7 @@ class Magmodules_Feedbackcompany_Model_Reviews extends Mage_Core_Model_Abstract
|
|
59 |
$purchased_products = $review->gekochtproduct;
|
60 |
$text_positive = $review->sterkepunten;
|
61 |
$text_improvements = $review->verbeterpunten;
|
|
|
62 |
$date_created = $review->createdate;
|
63 |
$date_created = substr($date_created, 0, 4) . '/' . substr($date_created, 4, 2) . '/' . substr($date_created, 6, 2);
|
64 |
$indatabase = $this->loadbyFeedbackId($feedback_id);
|
@@ -88,6 +89,7 @@ class Magmodules_Feedbackcompany_Model_Reviews extends Mage_Core_Model_Abstract
|
|
88 |
->setPurchasedProducts($purchased_products)
|
89 |
->setTextPositive($text_positive)
|
90 |
->setTextImprovements($text_improvements)
|
|
|
91 |
->setDateCreated($date_created)
|
92 |
->save();
|
93 |
$updates++;
|
@@ -117,6 +119,7 @@ class Magmodules_Feedbackcompany_Model_Reviews extends Mage_Core_Model_Abstract
|
|
117 |
->setPurchasedProducts($purchased_products)
|
118 |
->setTextPositive($text_positive)
|
119 |
->setTextImprovements($text_improvements)
|
|
|
120 |
->setDateCreated($date_created)
|
121 |
->save();
|
122 |
$new++;
|
59 |
$purchased_products = $review->gekochtproduct;
|
60 |
$text_positive = $review->sterkepunten;
|
61 |
$text_improvements = $review->verbeterpunten;
|
62 |
+
$company_response = $review->companyResponse;
|
63 |
$date_created = $review->createdate;
|
64 |
$date_created = substr($date_created, 0, 4) . '/' . substr($date_created, 4, 2) . '/' . substr($date_created, 6, 2);
|
65 |
$indatabase = $this->loadbyFeedbackId($feedback_id);
|
89 |
->setPurchasedProducts($purchased_products)
|
90 |
->setTextPositive($text_positive)
|
91 |
->setTextImprovements($text_improvements)
|
92 |
+
->setCompanyResponse($company_response)
|
93 |
->setDateCreated($date_created)
|
94 |
->save();
|
95 |
$updates++;
|
119 |
->setPurchasedProducts($purchased_products)
|
120 |
->setTextPositive($text_positive)
|
121 |
->setTextImprovements($text_improvements)
|
122 |
+
->setCompanyResponse($company_response)
|
123 |
->setDateCreated($date_created)
|
124 |
->save();
|
125 |
$new++;
|
app/code/local/Magmodules/Feedbackcompany/etc/config.xml
CHANGED
@@ -23,7 +23,7 @@
|
|
23 |
<config>
|
24 |
<modules>
|
25 |
<Magmodules_Feedbackcompany>
|
26 |
-
<version>1.2.
|
27 |
</Magmodules_Feedbackcompany>
|
28 |
</modules>
|
29 |
<global>
|
23 |
<config>
|
24 |
<modules>
|
25 |
<Magmodules_Feedbackcompany>
|
26 |
+
<version>1.2.6</version>
|
27 |
</Magmodules_Feedbackcompany>
|
28 |
</modules>
|
29 |
<global>
|
app/code/local/Magmodules/Feedbackcompany/sql/feedbackcompany_setup/mysql4-upgrade-1.2.5-1.2.6.php
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magmodules.eu - http://www.magmodules.eu
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to info@magmodules.eu so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Magmodules
|
16 |
+
* @package Magmodules_Feedbackcompany
|
17 |
+
* @author Magmodules <info@magmodules.eu)
|
18 |
+
* @copyright Copyright (c) 2015 (http://www.magmodules.eu)
|
19 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
20 |
+
*/
|
21 |
+
|
22 |
+
$installer = $this;
|
23 |
+
$installer->startSetup();
|
24 |
+
$installer->run("
|
25 |
+
ALTER TABLE {$this->getTable('feedbackcompany_reviews')} ADD `company_response` text NULL AFTER `text_improvements`;
|
26 |
+
");
|
27 |
+
|
28 |
+
$installer->endSetup();
|
app/design/frontend/base/default/template/magmodules/feedbackcompany/index.phtml
CHANGED
@@ -63,9 +63,13 @@
|
|
63 |
<?php else: ?>
|
64 |
|
65 |
<?php endif; ?>
|
|
|
|
|
|
|
66 |
</p>
|
67 |
</li>
|
68 |
</ul>
|
|
|
69 |
<ul class="summary-index">
|
70 |
<?php if($review->getScoreAftersales() > 0): ?>
|
71 |
<li>
|
63 |
<?php else: ?>
|
64 |
|
65 |
<?php endif; ?>
|
66 |
+
<?php if($response = $review->getCompanyResponse()): ?>
|
67 |
+
<div class="company_response top"><?php echo $response; ?></div>
|
68 |
+
<?php endif; ?>
|
69 |
</p>
|
70 |
</li>
|
71 |
</ul>
|
72 |
+
|
73 |
<ul class="summary-index">
|
74 |
<?php if($review->getScoreAftersales() > 0): ?>
|
75 |
<li>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magmodules_Feedbackcompany</name>
|
4 |
-
<version>1.2.
|
5 |
<stability>stable</stability>
|
6 |
<license/>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>Connect your Magento shop to The Feedback Company</description>
|
11 |
<notes>First stable release</notes>
|
12 |
<authors><author><name>Magmodules</name><user>auto-converted</user><email>info@magmodules.nl</email></author></authors>
|
13 |
-
<date>2015-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magelocal"><dir name="Magmodules"><dir name="Feedbackcompany"><dir name="Block"><dir name="Adminhtml"><dir name="Feedbacklog"><file name="Grid.php" hash="1898d4df8746111e1a5404869226b26a"/></dir><dir name="Feedbackreviews"><dir name="Renderer"><file name="Experience.php" hash="b5fd639eea45b31779747da049b66a80"/></dir><file name="Grid.php" hash="e56fee3f655371a066e9f56ce5ae914d"/></dir><dir name="Widget"><dir name="Buttons"><file name="Process.php" hash="4d2bce798a5b9c2b5d62bfe35c27d720"/><file name="Test.php" hash="040ecb43856a68dca4699a63c1e9c9f8"/></dir><dir name="Form"><file name="Heading.php" hash="8f820fe2ad56e3c4be54f7f84bc47eca"/><file name="Note.php" hash="974eaf447da64ec78001cd91f3cc3827"/></dir><dir name="Grid"><file name="Log.php" hash="ceff6fe31ea786257d1fd1c5c7a4ef82"/><file name="Seconds.php" hash="a7e6db7624fee7717cba3048f3f5638b"/><file name="Stars.php" hash="8041613a13a202b0df1d376dc38c5e76"/></dir><dir name="Info"><file name="Info.php" hash="fe80bd3c99f8cd6c814ab2ae8ad4cffe"/></dir></dir><file name="Feedbacklog.php" hash="eb36920b105077ca572137ccb4a9345c"/><file name="Feedbackreviews.php" hash="d1cf617989422aa0533d354dfde0fdf1"/></dir><file name="Custom.php" hash="de171ebe7fbc8a6d398c29da4427c0b5"/><file name="Reviews.php" hash="9393b1ffb4f9514cad46a51db24e6ab4"/><file name="Sidebar.php" hash="2cf37dc01dbde2a192f1b3a7f81c60c8"/></dir><dir name="Helper"><file name="Data.php" hash="1364831227cc724d3e8bdeca62d3451b"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="1c6f30ede26cadb9fd4c51f916cbfeb2"/></dir><dir name="Reviews"><file name="Collection.php" hash="17f3acddd0e184f923d137433aaa40ee"/></dir><dir name="Stats"><file name="Collection.php" hash="184fe402b66949e0d4fdb95fc6b4189d"/></dir><file name="Log.php" hash="542d942a56d159d5c1af65ed5c6de857"/><file name="Reviews.php" hash="5518780ad915f644ed9cc319def2da8c"/><file name="Stats.php" hash="268aed9ed09e83611b12c7bbbfca5076"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attribute.php" hash="de511d86d47ae252e3097c335302c294"/><file name="Category.php" hash="43e5e5d69b764e9c93f9089e0ec64d26"/><file name="Cronfrequency.php" hash="80f7f624a17328052b156c7fde67ff7a"/><file name="Orderstatus.php" hash="64429a1804e1bc5ec2f0ea89e7627fc8"/><file name="Position.php" hash="3c11a9fba6006528bb904036ca87f619"/><file name="Reviewlink.php" hash="87122c1414c49a24222288fe3e96216c"/><file name="Sidebarlink.php" hash="9e1a817b4253645b5632306ffd89dd03"/></dir></dir></dir><file name="Api.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magmodules_Feedbackcompany</name>
|
4 |
+
<version>1.2.6</version>
|
5 |
<stability>stable</stability>
|
6 |
<license/>
|
7 |
<channel>community</channel>
|
10 |
<description>Connect your Magento shop to The Feedback Company</description>
|
11 |
<notes>First stable release</notes>
|
12 |
<authors><author><name>Magmodules</name><user>auto-converted</user><email>info@magmodules.nl</email></author></authors>
|
13 |
+
<date>2015-09-01</date>
|
14 |
+
<time>05:50:23</time>
|
15 |
+
<contents><target name="magelocal"><dir name="Magmodules"><dir name="Feedbackcompany"><dir name="Block"><dir name="Adminhtml"><dir name="Feedbacklog"><file name="Grid.php" hash="1898d4df8746111e1a5404869226b26a"/></dir><dir name="Feedbackreviews"><dir name="Renderer"><file name="Experience.php" hash="b5fd639eea45b31779747da049b66a80"/></dir><file name="Grid.php" hash="e56fee3f655371a066e9f56ce5ae914d"/></dir><dir name="Widget"><dir name="Buttons"><file name="Process.php" hash="4d2bce798a5b9c2b5d62bfe35c27d720"/><file name="Test.php" hash="040ecb43856a68dca4699a63c1e9c9f8"/></dir><dir name="Form"><file name="Heading.php" hash="8f820fe2ad56e3c4be54f7f84bc47eca"/><file name="Note.php" hash="974eaf447da64ec78001cd91f3cc3827"/></dir><dir name="Grid"><file name="Log.php" hash="ceff6fe31ea786257d1fd1c5c7a4ef82"/><file name="Seconds.php" hash="a7e6db7624fee7717cba3048f3f5638b"/><file name="Stars.php" hash="8041613a13a202b0df1d376dc38c5e76"/></dir><dir name="Info"><file name="Info.php" hash="fe80bd3c99f8cd6c814ab2ae8ad4cffe"/></dir></dir><file name="Feedbacklog.php" hash="eb36920b105077ca572137ccb4a9345c"/><file name="Feedbackreviews.php" hash="d1cf617989422aa0533d354dfde0fdf1"/></dir><file name="Custom.php" hash="de171ebe7fbc8a6d398c29da4427c0b5"/><file name="Reviews.php" hash="9393b1ffb4f9514cad46a51db24e6ab4"/><file name="Sidebar.php" hash="2cf37dc01dbde2a192f1b3a7f81c60c8"/></dir><dir name="Helper"><file name="Data.php" hash="1364831227cc724d3e8bdeca62d3451b"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="1c6f30ede26cadb9fd4c51f916cbfeb2"/></dir><dir name="Reviews"><file name="Collection.php" hash="17f3acddd0e184f923d137433aaa40ee"/></dir><dir name="Stats"><file name="Collection.php" hash="184fe402b66949e0d4fdb95fc6b4189d"/></dir><file name="Log.php" hash="542d942a56d159d5c1af65ed5c6de857"/><file name="Reviews.php" hash="5518780ad915f644ed9cc319def2da8c"/><file name="Stats.php" hash="268aed9ed09e83611b12c7bbbfca5076"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attribute.php" hash="de511d86d47ae252e3097c335302c294"/><file name="Category.php" hash="43e5e5d69b764e9c93f9089e0ec64d26"/><file name="Cronfrequency.php" hash="80f7f624a17328052b156c7fde67ff7a"/><file name="Orderstatus.php" hash="64429a1804e1bc5ec2f0ea89e7627fc8"/><file name="Position.php" hash="3c11a9fba6006528bb904036ca87f619"/><file name="Reviewlink.php" hash="87122c1414c49a24222288fe3e96216c"/><file name="Sidebarlink.php" hash="9e1a817b4253645b5632306ffd89dd03"/></dir></dir></dir><file name="Api.php" hash="f7eb000417ed5682200c3432771cc5c6"/><file name="Log.php" hash="e64de82f87f3830914240e24ccbfb402"/><file name="Observer.php" hash="bd1fb89d488c75c70958f1eeb7ea1b02"/><file name="Reviews.php" hash="bc054b6277b5d27897b63a2db8109283"/><file name="Stats.php" hash="1acf7b22daf0e46aa1379b540ca3bfdc"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="FeedbacklogController.php" hash="1e91b35498c18a47ff5c7fe04f3a720e"/><file name="FeedbackreviewsController.php" hash="e516e42aa791c0aa53b5d125d238d4c3"/></dir><file name="IndexController.php" hash="da1707d69452f5430305c20c083cba78"/></dir><dir name="etc"><file name="adminhtml.xml" hash="8d51e2aa74e51f8de79650776cff510e"/><file name="config.xml" hash="82820af7e912b4a55a5191285006bf06"/><file name="system.xml" hash="5753449bed2b96cca92628851aaaac87"/></dir><dir name="sql"><dir name="feedbackcompany_setup"><file name="mysql4-install-0.9.0.php" hash="c86ec8f3c3a12cda7dd750cbd21dfca7"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="ef0c26c41ecfe27a20abacd5f041fae6"/><file name="mysql4-upgrade-1.2.5-1.2.6.php" hash="0b7697b895677239dd9b4378e7578b90"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="magmodules_feedbackcompany.xml" hash="e602f5a1e7028f893a598e4b171e26b8"/></dir><dir name="template"><dir name="magmodules"><dir name="feedbackcompany"><dir name="sidebar"><file name="left.phtml" hash="ce6032051f6297d0d7754e209a2fe1fd"/><file name="right.phtml" hash="0033188b9d06524aa61dfd703a3b0f0a"/></dir><dir name="widget"><file name="medium.phtml" hash="57a3a491f86331db7b97637a1bd9c45a"/><file name="sidebar.phtml" hash="a3823c23c28bb7ee701ecf73faf147d3"/><file name="small.phtml" hash="a01354bab54c15dcce78aa55482c4bce"/></dir><file name="index.phtml" hash="99be2744c97f5eadcacd3f78d9d4b784"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="magmodules_feedbackcompany.xml" hash="886af6aabcc892da5074c93ad0263006"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magmodules_Feedbackcompany.xml" hash="89e30c33efd62d035f0d231968b471a5"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Magmodules_Feedbackcompany.csv" hash="c9ee3be1fe9081310a138e6690b1dbeb"/></dir><dir name="nl_NL"><file name="Magmodules_Feedbackcompany.csv" hash="b96db18b82e1041cd6f307454b6c3121"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="magmodules"><dir name="feedbackcompany"><dir name="images"><file name="5-stars-empty.png" hash="799c499ca785331e7e69d892df52dd48"/><file name="5-stars-full.png" hash="1d06151a2c4da6bb71381538c8a903a5"/><file name="bkg_rating.gif" hash="83c843697e71cbe94ddd75bdedcbcf95"/><file name="bkg_rating2x.gif" hash="f71a52080752ca47b4c19810afd72e54"/><file name="greystar.png" hash="ab99888c7a8f47826ad7a83bcabf9130"/><file name="logo.png" hash="6c8d46ba30a7ae87dcb75db12830b33f"/><file name="small_fill.png" hash="2fa2ce516dddb74497ada0ae8be94380"/><file name="small_grey.png" hash="685735e666b7938f19ffe3b420152572"/><file name="star.png" hash="647c77f0ef881fb2a90a4f53f70d75fa"/></dir><file name="richsnippets.css" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="sidebar.css" hash="7054e114987ad6f34d590ca91a0156c6"/><file name="style.css" hash="8d8e704c557822af8df371d3ce0e6e81"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="magmodules"><dir name="feedbackcompany"><file name="grid.css" hash="ea7e85df839bf0eb7bc6882608da80b0"/><file name="star.png" hash="4beacfb62ebdd5feecd946494e895f4c"/></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
skin/frontend/base/default/magmodules/feedbackcompany/style.css
CHANGED
@@ -120,4 +120,63 @@
|
|
120 |
.review-list .rating-greystar-2 { float: left; display: block; width: 32px; height: 16px; background: url('./images/greystar.png') 0 0; margin-right: 5px; }
|
121 |
.review-list .rating-greystar-3 { float: left; display: block; width: 48px; height: 16px; background: url('./images/greystar.png') 0 0; margin-right: 5px; }
|
122 |
.review-list .rating-greystar-4 { float: left; display: block; width: 64px; height: 16px; background: url('./images/greystar.png') 0 0; margin-right: 5px; }
|
123 |
-
.review-list .rating-greystar-5 { float: left; display: block; width: 80px; height: 16px; background: url('./images/greystar.png') 0 0; margin-right: 5px; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
.review-list .rating-greystar-2 { float: left; display: block; width: 32px; height: 16px; background: url('./images/greystar.png') 0 0; margin-right: 5px; }
|
121 |
.review-list .rating-greystar-3 { float: left; display: block; width: 48px; height: 16px; background: url('./images/greystar.png') 0 0; margin-right: 5px; }
|
122 |
.review-list .rating-greystar-4 { float: left; display: block; width: 64px; height: 16px; background: url('./images/greystar.png') 0 0; margin-right: 5px; }
|
123 |
+
.review-list .rating-greystar-5 { float: left; display: block; width: 80px; height: 16px; background: url('./images/greystar.png') 0 0; margin-right: 5px; }
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
/* THE TRIANGLE
|
128 |
+
------------------------------------------------------------------------------------------------------------------------------- */
|
129 |
+
|
130 |
+
.company_response {
|
131 |
+
position:relative;
|
132 |
+
padding:15px;
|
133 |
+
margin: 25px 0 3em;
|
134 |
+
border: 3px solid #C3C3C3;
|
135 |
+
color:#333;
|
136 |
+
background:#fff;
|
137 |
+
-webkit-border-radius:10px;
|
138 |
+
-moz-border-radius:10px;
|
139 |
+
border-radius:10px;
|
140 |
+
font-style: italic;
|
141 |
+
}
|
142 |
+
|
143 |
+
.company_response:before {
|
144 |
+
content:"";
|
145 |
+
position:absolute;
|
146 |
+
bottom:-20px;
|
147 |
+
left:40px;
|
148 |
+
border-width:20px 20px 0;
|
149 |
+
border-style:solid;
|
150 |
+
border-color:#C3C3C3 transparent;
|
151 |
+
display:block;
|
152 |
+
width:0;
|
153 |
+
}
|
154 |
+
|
155 |
+
.company_response:after {
|
156 |
+
content:"";
|
157 |
+
position:absolute;
|
158 |
+
bottom:-13px;
|
159 |
+
left:47px;
|
160 |
+
border-width:13px 13px 0;
|
161 |
+
border-style:solid;
|
162 |
+
border-color:#fff transparent;
|
163 |
+
display:block;
|
164 |
+
width:0;
|
165 |
+
}
|
166 |
+
|
167 |
+
|
168 |
+
.company_response.top:before {
|
169 |
+
top: -18px;
|
170 |
+
bottom:auto;
|
171 |
+
left: 22px;
|
172 |
+
right: auto;
|
173 |
+
border-width: 0 18px 18px;
|
174 |
+
}
|
175 |
+
|
176 |
+
.company_response.top:after {
|
177 |
+
top: -13px;
|
178 |
+
bottom:auto;
|
179 |
+
left: 27px;
|
180 |
+
right: auto;
|
181 |
+
border-width: 0 13px 13px;
|
182 |
+
}
|