Commit cb29e225 by Kyle Fiedler

Added more tweeks to the calendar and unit pages

parent 78f2d8b2
...@@ -269,14 +269,34 @@ section.cal { ...@@ -269,14 +269,34 @@ section.cal {
opacity: .4; opacity: .4;
@include transition(); @include transition();
> header ul {
display: none;
}
&:hover { &:hover {
opacity: 1; opacity: 1;
} }
> header {
@include transition;
overflow: hidden;
height: 55px;
ul {
display: block;
li {
border-left: 0;
margin-left: 0;
margin-bottom: 4px;
ul {
display: inline;
}
}
}
&:hover {
height: 167px;
}
}
ol { ol {
li { li {
@include box-sizing(border-box); @include box-sizing(border-box);
......
...@@ -51,41 +51,61 @@ section#unit-wrapper { ...@@ -51,41 +51,61 @@ section#unit-wrapper {
padding: 20px; padding: 20px;
section.meta { section.meta {
background: $light-blue;
border-bottom: 1px solid lighten($dark-blue, 40%);
padding: 10px 20px;
margin: -20px -20px 10px;
opacity: .7;
@include transition;
&:hover {
opacity: 1;
padding: 20px;
margin: -20px -20px 10px;
}
section { section {
&.status-settings { &.status-settings {
float: left; float: left;
margin-bottom: 10px; margin-bottom: 10px;
color: $dark-blue; color: $dark-blue;
@include clearfix;
ul { ul {
list-style: none; list-style: none;
border: 1px solid lighten($dark-blue, 40%); border: 1px solid darken($light-blue, 15%);
@include inline-block(); @include clearfix();
float: left;
li { li {
@include inline-block(); border-right: 1px solid darken($light-blue, 15%);
border-right: 1px solid lighten($dark-blue, 40%); float: left;
padding: 6px;
&:last-child { &:last-child {
border-right: 0; border-right: 0;
} }
&.current {
background: #eee;
}
a { a {
color: $dark-blue; color: $dark-blue;
padding: 6px;
display: block;
&.current {
background: darken($light-blue, 5%);
}
&:hover {
background-color: lighten($yellow, 13%);
}
} }
} }
} }
a.settings { a.settings {
@include inline-block(); float: left;
margin: 0 20px; margin: 0 20px;
padding: 6px; padding: 6px;
border: 1px solid lighten($dark-blue, 40%); border: 1px solid darken($light-blue, 15%);
color: $dark-blue; color: $dark-blue;
} }
...@@ -110,10 +130,7 @@ section#unit-wrapper { ...@@ -110,10 +130,7 @@ section#unit-wrapper {
} }
&.tags { &.tags {
background: $light-blue;
color: lighten($dark-blue, 6%); color: lighten($dark-blue, 6%);
padding: 10px;
margin: 0 0 20px;
@include clearfix(); @include clearfix();
clear: both; clear: both;
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
<textarea name="" class="edit-box" rows="8" cols="40">${data}</textarea> <textarea name="" class="edit-box" rows="8" cols="40">${data}</textarea>
<div class="preview">${data}</div> <div class="preview">${data}</div>
<div class="actions wip"> <div class="actions">
<a href="" class="save-update">Save &amp; Update</a> <a href="" class="save-update">Save &amp; Update</a>
<a href="#" class="cancel">Cancel</a> <a href="#" class="cancel">Cancel</a>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment