Skip to content

Commit

Permalink
Move sass comments to their own lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnAlbin committed Feb 15, 2013
1 parent a2826f2 commit b75167a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
7 changes: 6 additions & 1 deletion Succinct.colloquyStyle/Contents/Resources/sass/_base.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* Base HTML element rules
*/

html {
font-family: $base-font-family;
font-size: (13px / $colloquy-default-font-size) * 100%;
Expand All @@ -13,8 +17,9 @@ body {

img {
border: 0;
/* Golden ratio ~ 485/300 */
max-height: 300px;
max-width: 485px; /* Golden ratio ~ 485/300 */
max-width: 485px;
}

a:link {
Expand Down
4 changes: 4 additions & 0 deletions Succinct.colloquyStyle/Contents/Resources/sass/_debug.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* Debug styling
*/

$tab-height: ((16px * 0.8) + 10px);

#modal__overlay {
Expand Down
4 changes: 4 additions & 0 deletions Succinct.colloquyStyle/Contents/Resources/sass/_layout.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* Layout rules
*/

.table {
display: table;
width: 100%;
Expand Down
6 changes: 4 additions & 2 deletions Succinct.colloquyStyle/Contents/Resources/sass/_modules.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@
}

%content {
width: 100%; /* Force the content as wide as possible. */
/* Force the content as wide as possible. */
width: 100%;
}

%timestamp {
Expand Down Expand Up @@ -147,7 +148,8 @@
> * {
padding: 0 10px;
position: relative;
top: -4px; /* Un-do first event's bottom padding. */
/* Un-do first event's bottom padding. */
top: -4px;
}
.event__sender {
top: 0;
Expand Down

0 comments on commit b75167a

Please sign in to comment.