Skip to content

Commit

Permalink
Fix paths in gulp build
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Oct 20, 2014
1 parent d2dd222 commit beaf102
Show file tree
Hide file tree
Showing 22 changed files with 60 additions and 61 deletions.
10 changes: 5 additions & 5 deletions dist/components/divider.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

.ui.divider:not(.vertical):not(.horizontal) {
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(0, 0, 0, 0.8);
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/*--------------
Expand Down Expand Up @@ -67,7 +67,7 @@
top: 50%;
height: 0px;
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(0, 0, 0, 0.8);
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.ui.horizontal.divider:before {
margin-left: -51.5%;
Expand Down Expand Up @@ -102,7 +102,7 @@
content: '';
z-index: 3;
border-left: 1px solid rgba(0, 0, 0, 0.1);
border-right: 1px solid rgba(0, 0, 0, 0.8);
border-right: 1px solid rgba(255, 255, 255, 0.2);
width: 0%;
height: -webkit-calc(100% - 1rem );
height: calc(100% - 1rem );
Expand Down Expand Up @@ -139,7 +139,7 @@
top: 50%;
height: 0px;
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(0, 0, 0, 0.8);
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.ui.stackable.grid .ui.vertical.divider:before,
.ui.grid .stackable.row .ui.vertical.divider:before {
Expand Down Expand Up @@ -226,7 +226,7 @@
---------------*/

.ui.divider {
font-size: 1em;
font-size: 1rem;
}


Expand Down
2 changes: 1 addition & 1 deletion dist/components/divider.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/flag.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ i.flag:not(.icon) {
i.flag:not(.icon):before {
display: inline-block;
content: '';
background: url("../../themes/default/assets/images/flags.png") no-repeat 0px 0px;
background: url("../themes/default/assets/images/flags.png") no-repeat 0px 0px;
width: 16px;
height: 11px;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/components/flag.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/components/form.css
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@
content: '';
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.6) url("../../themes/default/assets/images/loader-large.gif") no-repeat 50% 50%;
background: rgba(255, 255, 255, 0.6) url("../themes/default/assets/images/loader-large.gif") no-repeat 50% 50%;
visibility: visible;
}

Expand Down Expand Up @@ -498,7 +498,7 @@
color: #ffffff;
}
.ui.inverted.form.loading:after {
background: rgba(0, 0, 0, 0.8) url("../../themes/default/assets/images/loader-large-inverted.gif") no-repeat 50% 50%;
background: rgba(0, 0, 0, 0.8) url("../themes/default/assets/images/loader-large-inverted.gif") no-repeat 50% 50%;
}

/*--------------------
Expand Down
Loading

0 comments on commit beaf102

Please sign in to comment.