Skip to content

Commit

Permalink
- Added support for advanced language level for Content Quality module
Browse files Browse the repository at this point in the history
- Page slideout directive has been updated
  • Loading branch information
iNalgiev committed Oct 19, 2018
1 parent ce338d5 commit 64976c1
Show file tree
Hide file tree
Showing 8 changed files with 295 additions and 190 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 1.0.1 - 2018-10-19
### Added
- Added support for advanced language level for Content Quality module

### Changed
- Page slideout directive has been updated

## 1.0.0 - 2018-10-11
### Added
- Initial release
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "inalgiev/craft-webtexttool",
"description": "Webtexttool is the easiest way to make your website content SEO proof, resulting in higher search engine rankings and more traffic to your website. With webtexttool everyone can create great content and make sure it's SEO proof at the same time.",
"type": "craft-plugin",
"version": "1.0.0",
"version": "1.0.1",
"keywords": [
"craft",
"cms",
Expand Down
15 changes: 1 addition & 14 deletions src/Webtexttool.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class Webtexttool extends Plugin
*
* @var string
*/
public $schemaVersion = '1.0.0';
public $schemaVersion = '1.0.1';

public $hasCpSettings = false;

Expand Down Expand Up @@ -147,19 +147,6 @@ function (PluginEvent $event) {
}
);

// Add new sections to the Control Panel
/*Event::on(
Cp::class,
Cp::EVENT_REGISTER_CP_NAV_ITEMS,
function(RegisterCpNavItemsEvent $event) {
$event->navItems[] = [
'url' => 'webtexttool',
'label' => 'Webtexttool',
'icon' => '@inalgiev/webtexttool/icon.svg',
];
}
);*/

Craft::info(Craft::t('webtexttool', '{name} plugin loaded', ['name' => $this->name]),
__METHOD__
);
Expand Down
38 changes: 33 additions & 5 deletions src/resources/css/wtt-core.css
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ table {
position: absolute;
top: 0;
left: 0;
z-index: 1060;
z-index: 10000;
display: none;
max-width: 276px;
padding: 1px !important;
Expand Down Expand Up @@ -2363,7 +2363,7 @@ ul.tag-list > li.tag-item {
-moz-transition-duration: .3s;
-o-transition-duration: .3s;
transition-duration: .3s;
z-index: 999999999999;
z-index: 9999;
line-height: 22px;
height: 100%;
text-align: center;
Expand Down Expand Up @@ -2413,13 +2413,41 @@ ul.tag-list > li.tag-item {
padding: 2px;
margin: 2px 5px 5px 0;
line-height: 1;
white-space: nowrap;
text-decoration: none;
text-align: center;
border-width: 1px;
border-style: solid;
border: 1px solid transparent;
border-radius: 4px;
transition: all .15s ease-in-out;
font: 14px "Helvetica Neue",Helvetica,Arial,sans-serif;
cursor: pointer;
}

#slideout .post-tag.gender-female {
background-color: #FFDFDD;
}

#slideout .post-tag.gender-neutral {
background-color: #d3d3d3
}

#slideout .post-tag.sentiment-negative {
background-color: #FFDFDD
}

#slideout .post-tag-orange {
background-color: #fee4c5
}

div.scrollable {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: auto;
}

#slideout table {
width: 100%;
}

.badge, .wtt-btn, .wtt-btn-group, .btn-group-vertical, .caret, .checkbox-inline, .radio-inline {
Expand Down
Loading

0 comments on commit 64976c1

Please sign in to comment.