wearerequired / harvest-chrome

Harvest Chrome extension with Helpscout support
https://chrome.google.com/webstore/detail/required-time-tracker-for/molohbmpdeahlajdfnjppdlbbbgbbgca
Other
1 stars 2 forks source link

Improve Helpscout integration #1

Closed grappler closed 7 years ago

grappler commented 7 years ago

I have been able to get the basic integration working but I think the design still need a bit of work.

image

Any help appreciated.

This is how you load a dev chrome extension, https://developer.chrome.com/extensions/getstarted#unpacked

neverything commented 7 years ago

This is pretty cool @grappler, could something like the following be sufficient?

screenshot 2017-04-19 09 25 23

neverything commented 7 years ago
.harvest-timer.styled {
    background-color: #fafafa;
    background-image: linear-gradient(#fff, #eee);
    border: 1px solid #bbb;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    height: 14px;
    padding: 12px 13px;
    width: 12px;
    -webkit-font-smoothing: antialiased;
swissspidy commented 7 years ago

A button that looks more like the others would be nice :-)

neverything commented 7 years ago

So something like this maybe?

screenshot 2017-04-19 09 42 47

<li class="harvest-timer btn-sm styled" data-item="" data-group="" data-account="" data-listening="true">
    <i class="icon-clock-sm"></i>
</li>
.harvest-timer.styled {
    background-color: transparent;
    background-image: transparent;
    /* border: 1px solid #bbb; */
    /* border-radius: 2px; */
    cursor: pointer;
    /* display: inline-block; */
    /* height: 14px; */
    padding: 8px 14px;
    /* width: 12px; */
    /* -webkit-font-smoothing: antialiased; */
    line-height: 1;
neverything commented 7 years ago

Additional icons used by HelpScout: http://style.helpscout.com/icons/scouticons/

swissspidy commented 7 years ago

.icon-clock-sm is nice.