Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
30 changes: 23 additions & 7 deletions .phpcs.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@
<exclude name="WordPress.WhiteSpace.OperatorSpacing.NoSpaceBefore" />
<exclude name="Universal.Arrays.DisallowShortArraySyntax" />
<exclude name="Universal.Operators.DisallowShortTernary" />
<exclude name="Squiz.Commenting.FileComment.SpacingAfterOpen" />
<exclude name="Squiz.Commenting.FileComment.SpacingAfterComment" />
<exclude name="Squiz.Commenting.FileComment.PackageName" />
<exclude name="WordPress.WP.GlobalVariablesOverride.Prohibited" />
<exclude name="Generic.Commenting.DocComment.MissingShort" />
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<!-- Value: replace the function, class, and variable prefixes used. Separate multiple prefixes with a comma. -->
<property name="prefixes" type="array" value="wu_,wp_ultimo"/>
</properties>
</rule>
<rule ref="WordPress.WP.I18n">
<properties>
<!-- Value: replace the text domain used. -->
<property name="text_domain" type="array" value="wp-ultimo"/>
</properties>
<exclude-pattern>/views/</exclude-pattern>
</rule>
<rule ref="WordPress.WhiteSpace.ControlStructureSpacing">
<properties>
Expand All @@ -74,8 +74,24 @@
</rule>
<rule ref="Generic.WhiteSpace.ArbitraryParenthesesSpacing">
<properties>
<property name="spacing" value="0"/>
<property name="spacing" value="0"/>read_notes
<property name="ignoreNewlines" value="true"/>
</properties>
</rule>
<rule ref="WordPress.WP.Capabilities">
<properties>
<property name="custom_capabilities" type="array">
<element key="0" value="wu_edit_broadcasts"/>
<element key="1" value="wu_edit_checkout_forms"/>
<element key="2" value="wu_edit_settings"/>
<element key="3" value="wu_read_sites"/>
<element key="4" value="read_notes"/>
<element key="5" value="edit_notes"/>
<element key="6" value="delete_notes"/>
<element key="7" value="wu_edit_payments"/>
<element key="8" value="wu_edit_sites"/>
</property>
</properties>
</rule>

</ruleset>
4 changes: 2 additions & 2 deletions assets/css/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -1851,7 +1851,7 @@ a.button.wu-button-delete.wu-border-none {
border-width: 0;
}
a.button.wu-button-delete:hover {
border-width: 1 !important;
border-width: 1px !important;
color: #8b0000;
background-color: transparent;
}
Expand Down Expand Up @@ -5193,7 +5193,7 @@ td.column-id {
padding: 0;
margin: -19px 0 0 -19px;
background-image: url("../img/loader.svg");
background-repeat: none;
background-repeat: no-repeat;
background-position: center center;
width: 38px;
height: 38px;
Expand Down
2 changes: 1 addition & 1 deletion assets/css/admin.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/apexcharts.min.css

Large diffs are not rendered by default.

Loading