liferay / liferay-theme-tasks

A set of tasks for building and deploying Liferay Portal themes.
18 stars 24 forks source link

"Upgrade" Gulp Task: missing file headers in css.diff #44

Closed blzaugg closed 6 years ago

blzaugg commented 7 years ago

Expected to find something like:

...
Index: custom.css
===================================================================
--- custom.css      Original File
+++ _custom.scss    Updated File
...

or maybe:

...
Index: _custom.scss
===================================================================
--- custom.css      Original File
+++ _custom.scss    Updated File
...

in the below diff for _custom.scss.

Index: font_lato.css
===================================================================
--- font_lato.css   Original File
+++ font_lato.css   Updated File

===================================================================
--- custom.css  Original File
+++ _custom.scss    Updated File
@@ -1,5 +1,5 @@
-@import "compass";
+@import "bourbon";

 @import url(font_lato.css);

 /* ---------- Variables ---------- */
@@ -52,13 +52,13 @@

 #wrapper {
    background-attachment: fixed;

-   @include background-clip(border-box);
+   background-clip: border-box;

    background-position: center top;

-   @include background-size(cover);
+   background-size: cover;
    @include box-sizing(border-box);

    min-height: 100%;
    position: relative;
@@ -184,9 +184,9 @@
    bottom: 15px;
    position: absolute;
    right: 0;

-   .lfr-search-keywords .aui-field-input-text {
+   .lfr-search-keywords html {
        width: 215px;

        .ie7 & {
            width: 160px;
@@ -199,13 +199,13 @@

    .lfr-search-keywords {
        &,
        .aui-field-content,
-       .aui-field-element {
+       html {
            display: block;
        }

-       .aui-field-input-text {
+       html {
            border: none;

            @include box-sizing(border-box);

@@ -214,9 +214,9 @@
            width: 100%;
        }
    }

-   .aui-field-content {
+   html {
        margin-right: 0;
    }

    .lfr-search-button {
@@ -231,9 +231,9 @@

 #navigation {
    background-color: rgba(0, 51, 102, 0.75);

-   @include background-clip(padding-box);
+   background-clip: padding-box;

    border-bottom: solid 10px rgba(176, 135, 77, 0.75);
    font-size: 12px;
    font-weight: bold;
@@ -274,9 +274,9 @@
            display: block;
            float: left;
        }

-       .aui-combobox {
+       html {
            margin: 10px 0;
        }
    }

@@ -619,9 +619,9 @@
 .breadcrumbs-vertical .last {
    font-weight: bold;
 }

-.breadcrumbs-horizontal .last a, .aui-tree-node-selected a {
+.breadcrumbs-horizontal .last a, html {
    color: black;
 }

 /* ---------- Hidden Accessible ---------- */

Index: lato-bol-webfont.eot
===================================================================
--- lato-bol-webfont.eot    Original File
+++ lato-bol-webfont.eot    Updated File

Index: lato-bol-webfont.svg
===================================================================
--- lato-bol-webfont.svg    Original File
+++ lato-bol-webfont.svg    Updated File

Index: lato-bol-webfont.ttf
===================================================================
--- lato-bol-webfont.ttf    Original File
+++ lato-bol-webfont.ttf    Updated File

Index: lato-bol-webfont.woff
===================================================================
--- lato-bol-webfont.woff   Original File
+++ lato-bol-webfont.woff   Updated File

Index: lato-bol-webfont.woff2
===================================================================
--- lato-bol-webfont.woff2  Original File
+++ lato-bol-webfont.woff2  Updated File
jbalsas commented 6 years ago

Re-filed somehow as https://github.com/liferay/liferay-themes-sdk/issues/48 in the new repo location