Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
fix(lint): CSS alphabetize warnings (#1498)
Browse files Browse the repository at this point in the history
Fixes css lintings warnings of properties not alphabetized.
  • Loading branch information
mleanos authored Sep 10, 2016
1 parent 17772fe commit b2a5cb5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion modules/chat/client/css/chat.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
margin-left: 10px;
}
.chat-profile-image {
border-radius: 50%;
height: 28px;
width: 28px;
border-radius: 50%;
}
12 changes: 6 additions & 6 deletions modules/core/client/css/core.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,25 @@
display: none !important;
}
.header-profile-image {
opacity: 0.8;
height: 28px;
width: 28px;
border-radius: 50%;
height: 28px;
margin-right: 5px;
opacity: 0.8;
width: 28px;
}
.open .header-profile-image,
a:hover .header-profile-image {
opacity: 1;
}
.user-header-dropdown-toggle {
padding-top: 11px !important;
padding-bottom: 11px !important;
padding-top: 11px !important;
}
.user-primary-account {
font-size: 30px;
top: 10px;
right: 10px;
position: absolute;
right: 10px;
top: 10px;
}
.error-text {
display: none;
Expand Down
10 changes: 5 additions & 5 deletions modules/users/client/css/users.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@
position: relative;
}
.btn-add-remove-account {
top: 10px;
right: 10px;
position: absolute;
pointer-events: none;
position: absolute;
right: 10px;
top: 10px;
}
.user-profile-picture {
min-height: 150px;
max-height: 150px;
min-height: 150px;
}
.cropArea {
background: #E4E4E4;
width: 300px;
height: 300px;
width: 300px;
}
.social-button {
-webkit-transition-duration: 0.4s;
Expand Down

0 comments on commit b2a5cb5

Please sign in to comment.