Skip to content

Instantly share code, notes, and snippets.

{
"global": {
"check_for_updates_on_startup": true,
"show_in_menu_bar": true,
"show_profile_name_in_menu_bar": false
},
"profiles": [
{
"complex_modifications": {
"parameters": {
@stan-voo
stan-voo / gist:cddb6a24a3268557f4cf33bf5d329ac6
Created February 3, 2021 17:42
Planfix planner custom CSS style
.b-task-microcard .task-microcard-row .tbl-check-list-header {
display: none !important;
}
.planner-block-list-h.colored {padding: 7px;
font-size: large;}
.planner-block-collapse-b-hor .planner-block-collapse-filter-name {padding: 7px;
font-size: large;}
.planner-item-list.dl-task-microcard-container {margin-top: 17px;}
.planner-block-list-h-head {height: 34px !important;
#sale-invoice-btn {background-color: #AE3F93!important;}
#mini-tab-content-tickets_5326 {display:none;}
#orders_price_group,#vat_method, #orders_price_group_cost, #settlement_discount, #settlement_days {display:none;}
#invoice-products > table:nth-child(3) > tbody > tr > td:nth-child(1) > div:nth-child(4) > div:nth-child(2) > div.label_fw {display:none;}
#tabs-1 > fieldset:nth-child(7) > dl > dt > label {display:none;}
#tabs-1 > fieldset:nth-child(2) > dl:nth-child(4) > dd {display:none;}
#tabs-1 > fieldset:nth-child(2) > dl:nth-child(4) > dt {display:none;}
#tabs-1 > fieldset:nth-child(2) > dl:nth-child(5) > dt {display:none;}
#tabs-1 > fieldset:nth-child(2) > dl:nth-child(5) > dd {display:none;}
#invoice-products > table:nth-child(3) > tbody > tr > td:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div.label_fw {display:none;}
@stan-voo
stan-voo / gist:9cff08b9ef2dfdba0833
Created February 28, 2016 11:22 — forked from kyleaparker/gist:6c956128048bd1a69821
[Shopify] Three level collection navigation using tags
<ul>
{% comment %}A linklist should be created called "Collections" containing each of the "top" level collections{% endcomment %}
{% for link in linklists.collections.links %}
{% assign col = link.object %}
<li class="{% if col.handle == collection.handle %}active{% endif %}">
<a href="{{ link.url }}"><span>{{ link.title }}</span></a>
{% if col.all_tags.size > 0 %}
<ul>
{% assign tag_index = 0 %}
{% assign current_tag = "" %}