various small css fixes

This commit is contained in:
Sacha Greif 2014-09-16 11:51:13 +09:00
parent ab47ffcc68
commit f9390a301d
5 changed files with 14 additions and 4 deletions

View file

@ -6,7 +6,9 @@ EpicEditorOptions={
container: 'editor',
basePath: '/editor',
clientSideStorage: false,
autogrow: true,
autogrow: {
minHeight: 100
},
theme: {
base:'/themes/base/epiceditor.css',
preview:'/themes/preview/github.css',

View file

@ -1,5 +1,5 @@
<template name="postInfo">
<div class="post-info-item">
<div class="post-meta-item">
<span class="points">{{baseScore}} <span class="unit">{{pointsUnitDisplayText}} </span></span>by <a class="post-author" href="{{profileUrl}}">{{authorName}}</a> <span class="post-time">{{ago}}</span>
{{#if can_edit}}
| <a href="/posts/{{_id}}/edit" class="edit-link goto-edit">Edit</a>

View file

@ -304,6 +304,11 @@ input[type="search"] {
color: #b3c1c6;
margin-bottom: 15px; }
/* line 167, ../scss/global/_forms.scss */
.comment-field {
margin-bottom: 10px;
border: 1px solid #B5B0B0; }
/* line 1, ../scss/global/_links.scss */
a {
text-decoration: none; }

View file

@ -163,4 +163,8 @@ input[type="search"]{
.help-block{
color: $light-text;
margin-bottom:$grid-padding;
}
.comment-field{
margin-bottom: 10px;
border: 1px solid #B5B0B0;
}

View file

@ -1,6 +1,5 @@
html {
padding:10px;
border: 1px solid #B5B0B0;
}
body {
@ -9,7 +8,7 @@ body {
font-family:monospace;
font-size:14px;
padding:10px;
line-height:1.35em;
line-height:1.5;
margin:0;
padding:0;
}