mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
Remove comments CSS from blog and into comments module
Move CSS to scss
This commit is contained in:
parent
22f8901b63
commit
b173460400
@ -4,7 +4,6 @@
|
|||||||
http_path = "/"
|
http_path = "/"
|
||||||
css_dir = "css"
|
css_dir = "css"
|
||||||
sass_dir = "scss"
|
sass_dir = "scss"
|
||||||
images_dir = "images"
|
|
||||||
javascripts_dir = "javascript"
|
javascripts_dir = "javascript"
|
||||||
|
|
||||||
# You can select your preferred output style here (can be overridden via the command line):
|
# You can select your preferred output style here (can be overridden via the command line):
|
||||||
@ -14,7 +13,7 @@ javascripts_dir = "javascript"
|
|||||||
relative_assets = true
|
relative_assets = true
|
||||||
|
|
||||||
# To disable debugging comments that display the original location of your selectors. Uncomment:
|
# To disable debugging comments that display the original location of your selectors. Uncomment:
|
||||||
line_comments = true
|
line_comments = false
|
||||||
|
|
||||||
|
|
||||||
# If you prefer the indented syntax, you might want to regenerate this
|
# If you prefer the indented syntax, you might want to regenerate this
|
||||||
|
55
css/blog.css
Executable file → Normal file
55
css/blog.css
Executable file → Normal file
@ -1,43 +1,14 @@
|
|||||||
.no-sidebar .content-container.size3of4 {
|
.no-sidebar .content-container.size3of4 {
|
||||||
width: 75%;
|
width: 75%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blog-entry .post-image img {
|
.blog-entry .post-image img {
|
||||||
width: 98.75%;
|
width: 98.75%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blog-sidebar .WidgetHolder ul {
|
.blog-sidebar .WidgetHolder ul {
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
.blog-sidebar .WidgetHolder ul li {
|
.blog-sidebar .WidgetHolder ul li {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
|
||||||
|
|
||||||
#Form_CommentsForm + h4 {
|
|
||||||
clear: both;
|
|
||||||
padding-top: 35px;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.typography ul.comments-list {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.typography ul.comments-list > li {
|
|
||||||
list-style: none;
|
|
||||||
border-bottom: 1px solid #e5e5e5;
|
|
||||||
padding: 10px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.typography ul.comments-list > li .action-links {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.typography ul.comments-list > li .action-links li {
|
|
||||||
list-style: none;
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.commenting-rss-feed {
|
|
||||||
clear: both;
|
|
||||||
}
|
}
|
||||||
|
15
scss/blog.scss
Normal file
15
scss/blog.scss
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
.no-sidebar .content-container.size3of4 {
|
||||||
|
width: 75%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-entry .post-image img {
|
||||||
|
width: 98.75%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-sidebar .WidgetHolder ul {
|
||||||
|
margin-left: 0;
|
||||||
|
|
||||||
|
li {
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user