get rid of borders around mobile glyphs

This commit is contained in:
Jeff Atwood
2014-03-19 07:02:09 -07:00
parent e67ad58a8d
commit 42ea20b439
2 changed files with 28 additions and 44 deletions

View File

@ -65,16 +65,10 @@
list-style: none; list-style: none;
> li { > li {
float: left; float: left;
&:last-child .icon {
border-right: 1px solid $primary_border_color;
}
} }
.icon { .icon {
display: block; display: block;
border-top: 1px solid $primary_border_color; padding: 4px;
border-bottom: 1px solid $primary_border_color;
border-left: 1px solid $primary_border_color;
padding: 3px;
color: $nav-button-color; color: $nav-button-color;
text-decoration: none; text-decoration: none;
cursor: pointer; cursor: pointer;

View File

@ -43,13 +43,9 @@ span.badge-posts {
button.create { button.create {
float: right !important; float: right !important;
border: 1px solid $primary_border_color;
margin-right: 0; margin-right: 0;
color: lighten($primary_text_color, 35%); color: $primary_text_color;
padding-right: 7px; padding-right: 7px;}
}
.like {
border-right: 1px solid $primary_border_color;
} }
.create i { .create i {
@ -59,47 +55,41 @@ button.create {
button { button {
border: none; border: none;
font-size: 16px; font-size: 17px;
padding: 8px 10px; padding: 8px 12px;
vertical-align: top; vertical-align: top;
background: transparent; background: transparent;
border: 1px solid $primary_border_color;
float: left !important; float: left !important;
&:last-of-type { &.hidden {
border-right: 1px solid $primary_border_color display: none;
}
&.like, &.edit, &.flag, &.delete, &.share, &.bookmark, &.create {
float: right;
}
.read-icon {
&:before {
font-family: "FontAwesome";
content: "\f02e";
} }
&.hidden { &.unseen {
display: none; &:before {
} content: "\f097";
&.like, &.edit, &.flag, &.delete, &.share, &.bookmark, &.create {
float: right;
}
.read-icon {
&:before {
font-family: "FontAwesome";
content: "\f02e";
}
&.unseen {
&:before {
content: "\f097";
}
}
&.last-read {
color: $warning_text_color;
}
&.bookmarked {
&:before {
color: $bookmarkColor;
}
}
}
} }
} }
&.last-read {
color: $warning_text_color;
}
&.bookmarked {
&:before {
color: $bookmarkColor;
}
}
}
}
.embedded-posts { .embedded-posts {
.topic-meta-data h5 a { .topic-meta-data h5 a {
margin-left: 10px; margin-left: 10px;
} }