Skip to content

Commit

Permalink
fix(css): update styles to use ux- prefix instead of ai-
Browse files Browse the repository at this point in the history
ai- is no longer used, ux- is preferred prefix.

Closes #306
  • Loading branch information
mttmccb authored and StrahilKazlachev committed Aug 11, 2018
1 parent be0e06c commit f29d8cb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions styles/input.less
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ai-dialog-overlay {
ux-dialog-overlay {
bottom: 0;
left: 0;
position: fixed;
Expand All @@ -11,7 +11,7 @@ ai-dialog-overlay {
}
}

ai-dialog-container {
ux-dialog-container {
display: block;
transition: opacity .2s linear;
opacity: 0;
Expand Down Expand Up @@ -52,7 +52,7 @@ ai-dialog-container {
}
}

ai-dialog {
ux-dialog {
width: 100%;
display: table;
box-shadow: 0 5px 15px rgba(0,0,0,.5);
Expand All @@ -74,7 +74,7 @@ ai-dialog {
border-image-repeat: initial;
background: white;

> ai-dialog-header {
> ux-dialog-header {
display: block;
padding: 16px;
border-bottom: 1px solid #e5e5e5;
Expand All @@ -94,12 +94,12 @@ ai-dialog {
}
}

> ai-dialog-body {
> ux-dialog-body {
display: block;
padding: 16px;
}

> ai-dialog-footer {
> ux-dialog-footer {
display: block;
padding: 6px;
border-top: 1px solid #e5e5e5;
Expand Down Expand Up @@ -136,6 +136,6 @@ ai-dialog {
}
}

.ai-dialog-open {
.ux-dialog-open {
overflow: hidden;
}
2 changes: 1 addition & 1 deletion styles/output.css

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

0 comments on commit f29d8cb

Please sign in to comment.