diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ca9444..eaf7c6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,3 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.0.22] - 2019-03-28 ### Changed - Change the default value of subdomain to `unset` to have a well-formed URL. + +## [1.0.23] - 2019-03-28 +### Added +- Add support for meistertask.com diff --git a/package.json b/package.json index b9a5101..bc063bf 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "moco-browser-extensions", "description": "Browser plugin for MOCO", - "version": "1.0.22", + "version": "1.0.23", "license": "MIT", "scripts": { "start": "yarn start:chrome", diff --git a/src/css/content.scss b/src/css/content.scss index de3b2cd..5ef29a0 100644 --- a/src/css/content.scss +++ b/src/css/content.scss @@ -4,6 +4,7 @@ #moco-bx-root { font-family: $font-family; color: $font-color; + pointer-events: all; .moco-bx-bubble { box-sizing: content-box; @@ -48,6 +49,7 @@ #moco-bx-popup-root { font-family: $font-family; color: $font-color; + pointer-events: all; iframe { border: 0; @@ -58,16 +60,15 @@ } .moco-bx-popup { - position: fixed; /* Stay in place */ - z-index: 2000; /* Sit on top */ - padding-top: 100px; /* Location of the box */ + position: fixed; + z-index: 2000; + padding-top: 100px; left: 0; top: 0; - width: 100%; /* Full width */ - height: 100%; /* Full height */ - overflow: auto; /* Enable scroll if needed */ - background-color: rgb(0, 0, 0); /* Fallback color */ - background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */ + width: 100%; + height: 100%; + overflow: auto; + background-color: rgba(0, 0, 0, 0.4); .moco-bx-popup-content { background-color: white; diff --git a/src/js/components/Bubble.js b/src/js/components/Bubble.js index 22b7f29..ed4c6e1 100644 --- a/src/js/components/Bubble.js +++ b/src/js/components/Bubble.js @@ -2,8 +2,8 @@ import React from "react" import PropTypes from "prop-types" import logoUrl from "images/logo.png" -const Bubble = ({ bookedHours, onClick }) => ( -