Commit 3ce85573 by Kyle Fiedler

Merged heads

parents 0e221693 a75ba51c
...@@ -13,4 +13,5 @@ ...@@ -13,4 +13,5 @@
@import "profile"; @import "profile";
@import "wiki/basic-html", "wiki/sidebar", "wiki/create", "wiki/wiki"; @import "wiki/basic-html", "wiki/sidebar", "wiki/create", "wiki/wiki";
@import "help"; @import "help";
@import "discussion/askbot-original", "discussion/discussion","discussion/sidebar", "discussion/questions", "discussion/tags", "discussion/question-view" , "discussion/answers", "discussion/forms", "discussion/form-wmd-toolbar", "discussion/profile";
@import "discussion/askbot-original", "discussion/discussion","discussion/sidebar", "discussion/questions", "discussion/tags", "discussion/question-view" , "discussion/answers", "discussion/forms", "discussion/form-wmd-toolbar", "discussion/modals", "discussion/profile";
...@@ -2111,44 +2111,44 @@ ins { ...@@ -2111,44 +2111,44 @@ ins {
background-color: #e6f0a2; } background-color: #e6f0a2; }
background-color: #e6f0a2; } background-color: #e6f0a2; }
.vote-notification { // .vote-notification {
z-index: 1; // z-index: 1;
cursor: pointer; // cursor: pointer;
display: none; // display: none;
position: absolute; // position: absolute;
font-family: arial; // font-family: arial;
font-size: 14px; // font-size: 14px;
font-weight: normal; // font-weight: normal;
color: white; // color: white;
background-color: #8e0000; // background-color: #8e0000;
text-align: center; // text-align: center;
padding-bottom: 10px; // padding-bottom: 10px;
-webkit-box-shadow: 0px 2px 4px #370000; // -webkit-box-shadow: 0px 2px 4px #370000;
-moz-box-shadow: 0px 2px 4px #370000; // -moz-box-shadow: 0px 2px 4px #370000;
box-shadow: 0px 2px 4px #370000; // box-shadow: 0px 2px 4px #370000;
border-radius: 4px; // border-radius: 4px;
-ms-border-radius: 4px; // -ms-border-radius: 4px;
-moz-border-radius: 4px; // -moz-border-radius: 4px;
-webkit-border-radius: 4px; // -webkit-border-radius: 4px;
-khtml-border-radius: 4px; // -khtml-border-radius: 4px;
h3 { // h3 {
background: url(../images/notification.png) repeat-x top; // background: url(../images/notification.png) repeat-x top;
padding: 10px 10px 10px 10px; // padding: 10px 10px 10px 10px;
font-size: 13px; // font-size: 13px;
margin-bottom: 5px; // margin-bottom: 5px;
border-top: #8e0000 1px solid; // border-top: #8e0000 1px solid;
color: #fff; // color: #fff;
font-weight: normal; // font-weight: normal;
border-top-right-radius: 4px; // border-top-right-radius: 4px;
border-top-left-radius: 4px; // border-top-left-radius: 4px;
-moz-border-radius-topright: 4px; // -moz-border-radius-topright: 4px;
-moz-border-radius-topleft: 4px; // -moz-border-radius-topleft: 4px;
-webkit-border-top-left-radius: 4px; // -webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px; } // -webkit-border-top-right-radius: 4px; }
a { // a {
color: #fb7321; // color: #fb7321;
text-decoration: underline; // text-decoration: underline;
font-weight: bold; } } // font-weight: bold; } }
// #ground { // #ground {
// width: 100%; // width: 100%;
......
.vote-notification {
background-color: darken($mit-red, 7%);
@include border-radius(4px);
@include box-shadow(0px 2px 9px #aaa);
color: white;
cursor: pointer;
display: none;
font-size: 14px;
font-weight: normal;
padding-bottom: 10px;
position: absolute;
text-align: center;
h3 {
background: $mit-red;
padding: 10px 10px 10px 10px;
font-size: 13px;
margin-bottom: 5px;
border-bottom: darken(#8e0000, 10%) 1px solid;
@include box-shadow(0 1px 0 lighten($mit-red, 10%));
color: #fff;
font-weight: normal;
@include border-radius(4px 4px 0 0);
}
a {
color: #fb7321;
text-decoration: underline;
font-weight: bold; } }
...@@ -295,4 +295,18 @@ div.question-header { ...@@ -295,4 +295,18 @@ div.question-header {
} }
} }
div.question-status {
background: $mit-red;
clear:both;
color: #fff;
display: block;
padding: 10px 0 10px 7.5%;
h3 {
font-weight: normal;
}
a {
color: #eee;
}
}
...@@ -86,7 +86,7 @@ ul.question-list, div#question-list { ...@@ -86,7 +86,7 @@ ul.question-list, div#question-list {
padding: 10px 0; padding: 10px 0;
&:hover { &:hover {
background: lighten(#F6EFD4, 8%); background: #fbfbfb;
} }
div { div {
...@@ -131,27 +131,31 @@ ul.question-list, div#question-list { ...@@ -131,27 +131,31 @@ ul.question-list, div#question-list {
text-align: right; text-align: right;
li { li {
@include border-radius(3px); @include linear-gradient(#fff, #f5f5f5);
border: 1px solid #eee;
display: inline-block; display: inline-block;
height:60px; height:60px;
margin-right: 10px; margin-right: 10px;
width: 60px; width: 60px;
&:hover {
span, div {
color: #555;
}
}
&.views { &.views {
background: lighten(#F6EFD4, 5%);
} }
&.answers { &.answers {
background: #F6EFD4;
} }
&.votes { &.votes {
background: darken(#F6EFD4, 5%);
} }
span, div { span, div {
@include box-sizing(border-box); @include box-sizing(border-box);
color: darken(#F6EFD4, 60%); color: #888;
display: block; display: block;
text-align: center; text-align: center;
} }
......
ul.tags { ul.tags {
list-style: none; list-style: none;
display: inline; display: inline;
li, a { li, a {
position: relative; position: relative;
} }
li { li {
@include border-radius(4px);
background: #eee; background: #eee;
@include border-radius(4px);
@include box-shadow(1px 1px 0px #bbb);
color: #555; color: #555;
display: inline-block; display: inline-block;
font-size: 12px; font-size: 12px;
margin-bottom: 5px;
margin-left: 15px; margin-left: 15px;
padding: 3px 10px 5px 5px; padding: 3px 10px 5px 5px;
margin-bottom: 5px;
&:before { &:before {
border-color:transparent #eee transparent transparent; border-color:transparent #eee transparent transparent;
...@@ -20,15 +23,15 @@ ul.tags { ...@@ -20,15 +23,15 @@ ul.tags {
border-width:12px 12px 12px 0; border-width:12px 12px 12px 0;
content:""; content:"";
height:0; height:0;
left:-11px; left:-10px;
position:absolute; position:absolute;
top:0; top:0;
width:0; width:0;
} }
span.delete-icon, div.delete-icon { span.delete-icon, div.delete-icon {
@include border-radius(0 4px 4px 0);
background: #555; background: #555;
@include border-radius(0 4px 4px 0);
clear: none; clear: none;
color: #eee; color: #eee;
cursor: pointer; cursor: pointer;
...@@ -53,11 +56,12 @@ ul.tags { ...@@ -53,11 +56,12 @@ ul.tags {
} }
span.tag-number { span.tag-number {
@include border-radius(3px); display: none;
background: #555; // @include border-radius(3px);
font-size: 10px; // background: #555;
margin: 0 3px; // font-size: 10px;
padding: 2px 5px; // margin: 0 3px;
color: #eee; // padding: 2px 5px;
opacity: 0.5; // color: #eee;
// opacity: 0.5;
} }
...@@ -10,24 +10,24 @@ ...@@ -10,24 +10,24 @@
} }
div.leanModal_box { div.leanModal_box {
background: #fff;
border: none;
@include border-radius(3px); @include border-radius(3px);
@include box-shadow(0 0 6px #000); @include box-shadow(0 0 6px #000);
@include box-sizing(border-box); @include box-sizing(border-box);
display: none; display: none;
border: none;
background: #fff;
padding: lh(2); padding: lh(2);
a.modal_close { a.modal_close {
color: #aaa;
display: block;
font-style: normal;
height: 14px;
position: absolute; position: absolute;
top: 12px;
right: 12px; right: 12px;
display: block; top: 12px;
width: 14px; width: 14px;
height: 14px;
z-index: 2; z-index: 2;
color: #aaa;
font-style: normal;
&:hover{ &:hover{
text-decoration: none; text-decoration: none;
...@@ -36,11 +36,11 @@ div.leanModal_box { ...@@ -36,11 +36,11 @@ div.leanModal_box {
} }
h1 { h1 {
border-bottom: 1px solid #eee;
font-size: 24px; font-size: 24px;
margin-bottom: lh();
margin-top: 0; margin-top: 0;
padding-bottom: lh(); padding-bottom: lh();
border-bottom: 1px solid #eee;
margin-bottom: lh();
text-align: left; text-align: left;
} }
...@@ -67,16 +67,16 @@ div.leanModal_box { ...@@ -67,16 +67,16 @@ div.leanModal_box {
&:hover { &:hover {
div.tip { div.tip {
display: block;
line-height: lh();
position: absolute;
background: #333; background: #333;
color: #fff; color: #fff;
width: 500px; display: block;
font-size: 16px;
line-height: lh();
margin: 0 0 0 -10px; margin: 0 0 0 -10px;
padding: 10px; padding: 10px;
position: absolute;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
font-size: 16px; width: 500px;
} }
} }
} }
...@@ -88,16 +88,16 @@ div.leanModal_box { ...@@ -88,16 +88,16 @@ div.leanModal_box {
div#enroll_error, div#login_error, div#pwd_error { div#enroll_error, div#login_error, div#pwd_error {
$error-color: #333; $error-color: #333;
-webkit-font-smoothing: antialiased;
background-color: $error-color; background-color: $error-color;
border: darken($error-color, 20%); border: darken($error-color, 20%);
color: #fff; color: #fff;
text-shadow: 0 1px 0 darken($error-color, 10%);
font-family: "Open sans"; font-family: "Open sans";
font-weight: bold; font-weight: bold;
letter-spacing: 1px; letter-spacing: 1px;
margin: (-(lh())) (-(lh())) lh(); margin: (-(lh())) (-(lh())) lh();
padding: lh(.5); padding: lh(.5);
text-shadow: 0 1px 0 darken($error-color, 10%);
-webkit-font-smoothing: antialiased;
&:empty { &:empty {
padding: 0; padding: 0;
...@@ -112,11 +112,11 @@ div.leanModal_box { ...@@ -112,11 +112,11 @@ div.leanModal_box {
margin-bottom: lh(.5); margin-bottom: lh(.5);
&.terms, &.remember { &.terms, &.remember {
float: none; border-top: 1px solid #eee;
width: auto;
clear: both; clear: both;
float: none;
padding-top: lh(); padding-top: lh();
border-top: 1px solid #eee; width: auto;
} }
&.honor-code { &.honor-code {
...@@ -143,11 +143,11 @@ div.leanModal_box { ...@@ -143,11 +143,11 @@ div.leanModal_box {
margin: lh(.5) 0 lh() lh(); margin: lh(.5) 0 lh() lh();
li { li {
list-style: disc outside none;
margin-bottom: lh(.5);
color: #666; color: #666;
font-size: 14px;
float: none; float: none;
font-size: 14px;
list-style: disc outside none;
margin-bottom: lh(.5);
} }
} }
} }
......
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