Skip to content
Snippets Groups Projects
Commit 79120843 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Box shadow for boxes

parent 3c6daec4
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -448,6 +448,7 @@ form {
margin-bottom: 25px;
@include round-borders-all(4px);
border-color: #CCC;
@include solid_shade;
 
ul {
margin:0;
Loading
Loading
@@ -538,6 +539,7 @@ form {
table.admin-table {
@extend .table-bordered;
@extend .zebra-striped;
@include solid_shade;
th {
border-color: #CCC;
border-bottom: 1px solid #bbb;
Loading
Loading
@@ -595,6 +597,8 @@ ul.breadcrumb {
@extend .prepend-top-20;
@extend .append-bottom-20;
border-width:1px;
@include solid_shade;
 
img { max-width: 100%; }
 
Loading
Loading
@@ -662,7 +666,7 @@ h3.page_title {
.file_holder {
border:1px solid #CCC;
margin-bottom:1em;
@include shade;
@include solid_shade;
 
.file_title {
border-bottom: 1px solid #bbb;
Loading
Loading
Loading
Loading
@@ -31,6 +31,12 @@ $hover: #FDF5D9;
box-shadow: 0 0 3px #ddd;
}
 
@mixin solid_shade {
-moz-box-shadow: 0 0 0 3px #eee;
-webkit-box-shadow: 0 0 0 3px #eee;
box-shadow: 0 0 0 3px #eee;
}
@mixin border-radius($radius) {
-moz-border-radius: $radius;
-webkit-border-radius: $radius;
Loading
Loading
Loading
Loading
@@ -55,7 +55,7 @@
 
 
#tree-slider {
@include shade;
@include solid_shade;
width:100%;
 
border-color:#ccc;
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment